/* style/resources-casino-88-best-games-guide.css */

/* Base styles for the page content wrapper */
.page-resources-casino-88-best-games-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css (#000000) */
}

/* Hero Section */
.page-resources-casino-88-best-games-guide__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #000000; /* Dark background for hero, consistent with body */
    position: relative;
    overflow: hidden;
}

.page-resources-casino-88-best-games-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-resources-casino-88-best-games-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay to make text readable */
}

.page-resources-casino-88-best-games-guide__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
    border-radius: 10px;
}

.page-resources-casino-88-best-games-guide__main-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-casino-88-best-games-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

/* General Section Styling */
.page-resources-casino-88-best-games-guide__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}

.page-resources-casino-88-best-games-guide__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for section titles */
    text-align: center;
}

.page-resources-casino-88-best-games-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ffffff; /* Default text color for content */
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styling */
.page-resources-casino-88-best-games-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-resources-casino-88-best-games-guide__btn-primary,
.page-resources-casino-88-best-games-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow on mobile */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-resources-casino-88-best-games-guide__btn-primary {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-casino-88-best-games-guide__btn-primary:hover {
    background-color: #1a7fb0;
    border-color: #1a7fb0;
}

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

.page-resources-casino-88-best-games-guide__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Game Categories Section */
.page-resources-casino-88-best-games-guide__game-categories {
    background-color: #1a1a1a; /* Slightly lighter dark background */
    padding-bottom: 80px;
}

.page-resources-casino-88-best-games-guide__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-casino-88-best-games-guide__game-card {
    background-color: #0d0d0d; /* Darker card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-casino-88-best-games-guide__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
}

.page-resources-casino-88-best-games-guide__card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #26A9E0;
    padding: 0 15px;
}

.page-resources-casino-88-best-games-guide__card-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-casino-88-best-games-guide__card-title a:hover {
    color: #ffffff;
}

.page-resources-casino-88-best-games-guide__card-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px;
    text-align: center;
}

/* Promotion Section */
.page-resources-casino-88-best-games-guide__promotion-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    background-color: #0d0d0d; /* Dark background */
    text-align: left;
}

.page-resources-casino-88-best-games-guide__promotion-content {
    flex: 1;
}

.page-resources-casino-88-best-games-guide__promotion-image {
    flex-shrink: 0;
    width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Safety Section */
.page-resources-casino-88-best-games-guide__safety-section {
    display: flex;
    flex-direction: row-reverse; /* Image on right */
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    background-color: #000000;
    text-align: left;
}

.page-resources-casino-88-best-games-guide__safety-content {
    flex: 1;
}

.page-resources-casino-88-best-games-guide__safety-image {
    flex-shrink: 0;
    width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-resources-casino-88-best-games-guide__faq-section {
    background-color: #1a1a1a;
    padding-bottom: 80px;
}

.page-resources-casino-88-best-games-guide__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-resources-casino-88-best-games-guide__faq-item {
    background-color: #0d0d0d;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-casino-88-best-games-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #26A9E0; /* Brand color for question background */
    color: #ffffff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-casino-88-best-games-guide__faq-question:hover {
    background-color: #1a7fb0;
}

.page-resources-casino-88-best-games-guide__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #ffffff;
}

.page-resources-casino-88-best-games-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-resources-casino-88-best-games-guide__faq-item.active .page-resources-casino-88-best-games-guide__faq-toggle {
    transform: rotate(45deg); /* Plus to X (minus) */
}

.page-resources-casino-88-best-games-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #0d0d0d;
    color: #cccccc;
}

.page-resources-casino-88-best-games-guide__faq-item.active .page-resources-casino-88-best-games-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 20px;
}

.page-resources-casino-88-best-games-guide__faq-answer p {
    margin: 0;
    color: #cccccc;
}

/* Bottom CTA Section */
.page-resources-casino-88-best-games-guide__cta-bottom {
    padding: 80px 20px;
    background-color: #000000;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-casino-88-best-games-guide__main-title {
        font-size: 2.5em;
    }

    .page-resources-casino-88-best-games-guide__section-title {
        font-size: 2em;
    }

    .page-resources-casino-88-best-games-guide__promotion-section,
    .page-resources-casino-88-best-games-guide__safety-section {
        flex-direction: column;
        text-align: center;
    }

    .page-resources-casino-88-best-games-guide__promotion-image,
    .page-resources-casino-88-best-games-guide__safety-image {
        width: 80%;
        margin-top: 30px;
    }

    .page-resources-casino-88-best-games-guide__paragraph {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-resources-casino-88-best-games-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-casino-88-best-games-guide__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }

    .page-resources-casino-88-best-games-guide__hero-content {
        padding: 15px;
    }

    .page-resources-casino-88-best-games-guide__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-resources-casino-88-best-games-guide__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-resources-casino-88-best-games-guide__section {
        padding: 40px 15px;
    }

    .page-resources-casino-88-best-games-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-resources-casino-88-best-games-guide__paragraph {
        font-size: 1em;
        text-align: center;
    }

    .page-resources-casino-88-best-games-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile specific button styles */
    .page-resources-casino-88-best-games-guide__btn-primary,
    .page-resources-casino-88-best-games-guide__btn-secondary,
    .page-resources-casino-88-best-games-guide a[class*="button"],
    .page-resources-casino-88-best-games-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;
    }

    .page-resources-casino-88-best-games-guide__cta-buttons,
    .page-resources-casino-88-best-games-guide__button-group,
    .page-resources-casino-88-best-games-guide__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-resources-casino-88-best-games-guide__game-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile image responsiveness */
    .page-resources-casino-88-best-games-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure image containers also adapt */
    .page-resources-casino-88-best-games-guide__section,
    .page-resources-casino-88-best-games-guide__card,
    .page-resources-casino-88-best-games-guide__container,
    .page-resources-casino-88-best-games-guide__game-card,
    .page-resources-casino-88-best-games-guide__promotion-section,
    .page-resources-casino-88-best-games-guide__safety-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-resources-casino-88-best-games-guide__promotion-image,
    .page-resources-casino-88-best-games-guide__safety-image {
        width: 100%;
    }

    .page-resources-casino-88-best-games-guide__faq-question {
        padding: 15px;
    }

    .page-resources-casino-88-best-games-guide__faq-question h3 {
        font-size: 1em;
    }

    .page-resources-casino-88-best-games-guide__faq-answer {
        padding: 0 15px;
    }

    .page-resources-casino-88-best-games-guide__faq-item.active .page-resources-casino-88-best-games-guide__faq-answer {
        padding: 15px;
    }
}

/* Color Contrast Safeguards */
.page-resources-casino-88-best-games-guide__dark-bg {
    background-color: #0d0d0d; /* Dark background */
    color: #ffffff; /* Light text */
}

/* Ensure all links in content are readable */
.page-resources-casino-88-best-games-guide a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-resources-casino-88-best-games-guide a:hover {
    color: #1a7fb0;
}

/* Specific overrides for text within dark backgrounds to ensure contrast */
.page-resources-casino-88-best-games-guide__hero-content p,
.page-resources-casino-88-best-games-guide__promotion-section p,
.page-resources-casino-88-best-games-guide__safety-section p,
.page-resources-casino-88-best-games-guide__faq-item p,
.page-resources-casino-88-best-games-guide__cta-bottom p {
    color: #ffffff;
}

.page-resources-casino-88-best-games-guide__game-card .page-resources-casino-88-best-games-guide__card-description {
    color: #cccccc; /* Slightly lighter for descriptions on dark cards */
}