/* style/resources-wm-casino-game-guide.css */

/* Base styles for the page content */
.page-resources-wm-casino-game-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--dark-bg-1); /* Inherit from shared.css */
}

/* Fixed Header Spacing */
.page-resources-wm-casino-game-guide__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not covered by fixed header */
}

/* Hero Section */
.page-resources-wm-casino-game-guide__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Or adjust based on image aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-resources-wm-casino-game-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-wm-casino-game-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-wm-casino-game-guide__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-resources-wm-casino-game-guide__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-wm-casino-game-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Content Area */
.page-resources-wm-casino-game-guide__content-area {
    padding: 60px 20px;
}

.page-resources-wm-casino-game-guide__dark-bg {
    background-color: var(--dark-bg-1); /* Ensure consistency with body */
    color: #ffffff; /* Light text on dark background */
}

.page-resources-wm-casino-game-guide__light-bg {
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark text on light background */
}

.page-resources-wm-casino-game-guide__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-resources-wm-casino-game-guide__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #26A9E0; /* Brand color for titles */
}

.page-resources-wm-casino-game-guide__sub-section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for sub-titles */
}

.page-resources-wm-casino-game-guide__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-wm-casino-game-guide__list {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-resources-wm-casino-game-guide__list-item {
    margin-bottom: 10px;
}

.page-resources-wm-casino-game-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-wm-casino-game-guide__image-wrapper {
    text-align: center;
}

/* Buttons */
.page-resources-wm-casino-game-guide__btn-primary,
.page-resources-wm-casino-game-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-resources-wm-casino-game-guide__btn-primary {
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
    margin-right: 15px;
}

.page-resources-wm-casino-game-guide__btn-primary:hover {
    background-color: #1a8ac7;
    border-color: #1a8ac7;
}

.page-resources-wm-casino-game-guide__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-resources-wm-casino-game-guide__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources-wm-casino-game-guide__btn-large {
    font-size: 1.2em;
    padding: 18px 35px;
    margin-top: 30px;
}

.page-resources-wm-casino-game-guide__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Links within content */
.page-resources-wm-casino-game-guide__paragraph a,
.page-resources-wm-casino-game-guide__list-item a {
    color: #26A9E0; /* Brand color for links */
    text-decoration: underline;
}

.page-resources-wm-casino-game-guide__paragraph a:hover,
.page-resources-wm-casino-game-guide__list-item a:hover {
    color: #1a8ac7;
}

/* FAQ Section */
.page-resources-wm-casino-game-guide__faq-list {
    margin-top: 40px;
}

.page-resources-wm-casino-game-guide__faq-item {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-resources-wm-casino-game-guide__faq-item.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-wm-casino-game-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly darker on hover */
    transition: background-color 0.3s ease;
}

.page-resources-wm-casino-game-guide__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-wm-casino-game-guide__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: #ffffff;
}

.page-resources-wm-casino-game-guide__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-resources-wm-casino-game-guide__faq-item.active .page-resources-wm-casino-game-guide__faq-toggle {
    transform: rotate(45deg); /* Visually indicate open state */
}

.page-resources-wm-casino-game-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
}

.page-resources-wm-casino-game-guide__faq-item.active .page-resources-wm-casino-game-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content, important for override */
    padding: 20px;
    padding-top: 0; /* Adjust padding for visual flow */
}

/* Conclusion Section */
.page-resources-wm-casino-game-guide__conclusion-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--dark-bg-1);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-wm-casino-game-guide__hero-section {
        height: 450px;
    }

    .page-resources-wm-casino-game-guide__hero-title {
        font-size: 2em;
    }

    .page-resources-wm-casino-game-guide__hero-description {
        font-size: 1em;
    }

    .page-resources-wm-casino-game-guide__section-title {
        font-size: 2em;
    }

    .page-resources-wm-casino-game-guide__sub-section-title {
        font-size: 1.5em;
    }

    .page-resources-wm-casino-game-guide__btn-primary,
    .page-resources-wm-casino-game-guide__btn-secondary,
    .page-resources-wm-casino-game-guide a[class*="button"],
    .page-resources-wm-casino-game-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0; /* Remove right margin for stacking */
        margin-bottom: 15px; /* Add bottom margin for stacking */
    }

    .page-resources-wm-casino-game-guide__cta-wrapper {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Space between stacked buttons */
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    .page-resources-wm-casino-game-guide__container,
    .page-resources-wm-casino-game-guide__content-area,
    .page-resources-wm-casino-game-guide__hero-content,
    .page-resources-wm-casino-game-guide__conclusion-section {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    /* Images and Videos responsiveness */
    .page-resources-wm-casino-game-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-wm-casino-game-guide video,
    .page-resources-wm-casino-game-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-wm-casino-game-guide__video-section,
    .page-resources-wm-casino-game-guide__video-container,
    .page-resources-wm-casino-game-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}