/* style/blog-2024-cwin09-casino-top-games.css */

/* Custom colors from prompt */
:root {
    --cwin09-primary: #11A84E;
    --cwin09-secondary: #22C768;
    --cwin09-button-gradient-start: #2AD16F;
    --cwin09-button-gradient-end: #13994A;
    --cwin09-card-bg: #11271B;
    --cwin09-background: #08160F;
    --cwin09-text-main: #F2FFF6;
    --cwin09-text-secondary: #A7D9B8;
    --cwin09-border: #2E7A4E;
    --cwin09-glow: #57E38D;
    --cwin09-gold: #F2C14E;
    --cwin09-divider: #1E3A2A;
    --cwin09-deep-green: #0A4B2C;
}

/* Base styles for the page, assuming body has var(--bg) which is --cwin09-background */
.page-blog-2024-cwin09-casino-top-games {
    background-color: var(--cwin09-background); /* Explicitly set page background for consistency */
    color: var(--cwin09-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: 0; /* body padding-top handles header offset */
}

.page-blog-2024-cwin09-casino-top-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-2024-cwin09-casino-top-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-2024-cwin09-casino-top-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none; /* Ensure no filter changes image color */
}

.page-blog-2024-cwin09-casino-top-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-blog-2024-cwin09-casino-top-games__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Clamp for responsive H1 */
    color: var(--cwin09-gold);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-2024-cwin09-casino-top-games__hero-description {
    font-size: 1.1em;
    color: var(--cwin09-text-secondary);
    margin-bottom: 30px;
}

.page-blog-2024-cwin09-casino-top-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-blog-2024-cwin09-casino-top-games__btn-primary,
.page-blog-2024-cwin09-casino-top-games__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-2024-cwin09-casino-top-games__btn-primary {
    background: linear-gradient(180deg, var(--cwin09-button-gradient-start) 0%, var(--cwin09-button-gradient-end) 100%);
    color: #ffffff; /* White text for dark button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-2024-cwin09-casino-top-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-2024-cwin09-casino-top-games__btn-secondary {
    background: transparent;
    color: var(--cwin09-primary); /* Brand primary color for text */
    border: 2px solid var(--cwin09-primary);
}

.page-blog-2024-cwin09-casino-top-games__btn-secondary:hover {
    background: rgba(var(--cwin09-primary), 0.1);
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-blog-2024-cwin09-casino-top-games__cta-buttons--center {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-2024-cwin09-casino-top-games__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--cwin09-background); /* Ensure consistent background */
    color: var(--cwin09-text-main); /* Light text for dark background */
}

.page-blog-2024-cwin09-casino-top-games__section-title {
    font-size: 2.2em;
    color: var(--cwin09-gold);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.page-blog-2024-cwin09-casino-top-games h3 {
    font-size: 1.6em;
    color: var(--cwin09-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-2024-cwin09-casino-top-games p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: var(--cwin09-text-main);
}

.page-blog-2024-cwin09-casino-top-games__game-category {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--cwin09-card-bg); /* Card background color */
    border: 1px solid var(--cwin09-border);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-2024-cwin09-casino-top-games__category-title {
    color: var(--cwin09-gold);
    text-align: center;
    margin-bottom: 25px;
}

.page-blog-2024-cwin09-casino-top-games__image-wrapper {
    margin: 20px 0;
    text-align: center;
}

.page-blog-2024-cwin09-casino-top-games__category-image,
.page-blog-2024-cwin09-casino-top-games__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    filter: none; /* Ensure no filter changes image color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-2024-cwin09-casino-top-games__image-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 50%;
}

.page-blog-2024-cwin09-casino-top-games__strategy-subtitle {
    color: var(--cwin09-gold);
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-blog-2024-cwin09-casino-top-games__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-2024-cwin09-casino-top-games__benefit-item {
    background-color: var(--cwin09-card-bg); /* Card background color */
    border: 1px solid var(--cwin09-border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-blog-2024-cwin09-casino-top-games__benefit-title {
    color: var(--cwin09-primary);
    margin-top: 0;
    margin-bottom: 10px;
}

/* FAQ Section */
.page-blog-2024-cwin09-casino-top-games__faq-section {
    padding-bottom: 80px;
}

.page-blog-2024-cwin09-casino-top-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-2024-cwin09-casino-top-games__faq-item {
    background-color: var(--cwin09-card-bg); /* Card background color */
    border: 1px solid var(--cwin09-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--cwin09-text-main);
}

.page-blog-2024-cwin09-casino-top-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: var(--cwin09-gold);
    background-color: var(--cwin09-deep-green); /* Slightly darker for contrast */
    border-bottom: 1px solid var(--cwin09-divider);
}

.page-blog-2024-cwin09-casino-top-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-2024-cwin09-casino-top-games__faq-question::marker {
    display: none;
}

.page-blog-2024-cwin09-casino-top-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-2024-cwin09-casino-top-games__faq-item[open] .page-blog-2024-cwin09-casino-top-games__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form an X or minus */
}

.page-blog-2024-cwin09-casino-top-games__faq-answer {
    padding: 15px 25px 20px 25px;
    background-color: var(--cwin09-card-bg);
    color: var(--cwin09-text-secondary);
    font-size: 1em;
}

.page-blog-2024-cwin09-casino-top-games__faq-answer p {
    margin-bottom: 0;
    color: var(--cwin09-text-secondary); /* Ensure text secondary color for answers */
}


/* Conclusion Section */
.page-blog-2024-cwin09-casino-top-games__conclusion {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Clearfix for floated images */
.page-blog-2024-cwin09-casino-top-games__content-area::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-2024-cwin09-casino-top-games__image-right {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-blog-2024-cwin09-casino-top-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-2024-cwin09-casino-top-games__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-2024-cwin09-casino-top-games__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-blog-2024-cwin09-casino-top-games__hero-description {
        font-size: 1em;
    }

    .page-blog-2024-cwin09-casino-top-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to container */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}