/* style/blog-top-5-games-after-login.css */

/* Variables from custom color palette */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-top-5-games-after-login {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Default text color for the page content */
    background-color: var(--color-background); /* Overall dark background */
}

.page-blog-top-5-games-after-login__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-top-5-games-after-login__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--color-deep-green);
    overflow: hidden;
}

.page-blog-top-5-games-after-login__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
}

.page-blog-top-5-games-after-login__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-top-5-games-after-login__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-blog-top-5-games-after-login__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-top-5-games-after-login__hero-description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.page-blog-top-5-games-after-login__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: #ffffff; /* White text for contrast on gradient */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-top-5-games-after-login__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-top-5-games-after-login__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: 600;
    position: relative;
}

.page-blog-top-5-games-after-login__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-blog-top-5-games-after-login__text-block {
    font-size: 1em;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-top-5-games-after-login__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-blog-top-5-games-after-login__list-item {
    background-color: var(--color-card-bg);
    border-left: 5px solid var(--color-primary);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: var(--color-text-main);
    font-size: 1.05em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-blog-top-5-games-after-login__game-card {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-border);
}

.page-blog-top-5-games-after-login__game-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--color-primary);
}

.page-blog-top-5-games-after-login__game-title {
    font-size: clamp(1.5em, 2.5vw, 2em);
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-blog-top-5-games-after-login__game-description {
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    font-size: 1em;
    text-align: justify;
}

.page-blog-top-5-games-after-login__game-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-top-5-games-after-login__game-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.page-blog-top-5-games-after-login__cta-button--bottom, .page-blog-top-5-games-after-login__cta-button--final {
    margin-top: 50px;
}

.page-blog-top-5-games-after-login__faq-list {
    margin-top: 30px;
}

.page-blog-top-5-games-after-login__faq-item {
    background-color: var(--color-card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid var(--color-border);
}

.page-blog-top-5-games-after-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    list-style: none;
    user-select: none; /* Prevent text selection on click */
}

.page-blog-top-5-games-after-55cc-login__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-top-5-games-after-login__faq-question:hover {
    background-color: var(--color-deep-green);
}

.page-blog-top-5-games-after-login__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.page-blog-top-5-games-after-login__faq-item[open] .page-blog-top-5-games-after-login__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-top-5-games-after-login__faq-answer {
    padding: 0 25px 20px;
    color: var(--color-text-secondary);
    font-size: 0.95em;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-top-5-games-after-login__container {
        padding: 0 15px;
    }

    .page-blog-top-5-games-after-login__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-top-5-games-after-login__main-title {
        font-size: 2.2em;
    }

    .page-blog-top-5-games-after-login__hero-description {
        font-size: 1em;
    }

    .page-blog-top-5-games-after-login__cta-button,
    .page-blog-top-5-games-after-login__game-button {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-top-5-games-after-login__game-card {
        padding: 20px;
    }

    .page-blog-top-5-games-after-login__game-image,
    .page-blog-top-5-games-after-login__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-top-5-games-after-login__section-title {
        font-size: 1.8em;
    }

    .page-blog-top-5-games-after-login__list-item {
        padding: 12px 15px;
        font-size: 0.95em;
    }

    .page-blog-top-5-games-after-login__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-top-5-games-after-login__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9em;
    }

    /* Ensure containers are responsive */
    .page-blog-top-5-games-after-login__hero-content,
    .page-blog-top-5-games-after-login__introduction-section .page-blog-top-5-games-after-login__container,
    .page-blog-top-5-games-after-login__criteria-section .page-blog-top-5-games-after-login__container,
    .page-blog-top-5-games-after-login__games-section .page-blog-top-5-games-after-login__container,
    .page-blog-top-5-games-after-login__enhancement-section .page-blog-top-5-games-after-login__container,
    .page-blog-top-5-games-after-login__faq-section .page-blog-top-5-games-after-login__container,
    .page-blog-top-5-games-after-login__conclusion-section .page-blog-top-5-games-after-login__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* For multiple buttons in a row, allow wrapping */
    .page-blog-top-5-games-after-login__button-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-blog-top-5-games-after-login__main-title {
        font-size: 1.8em;
    }

    .page-blog-top-5-games-after-login__section-title {
        font-size: 1.5em;
    }

    .page-blog-top-5-games-after-login__cta-button {
        font-size: 0.95em;
    }
}