/* style/blog-top-n-h-games-2024.css */

/* Custom Colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --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;
}

/* Base styles for the page content, assuming a dark body background */
.page-blog-top-n-h-games-2024 {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Light text on dark background */
    background-color: var(--color-background); /* Deep Green */
    line-height: 1.6;
    font-size: 16px;
}

.page-blog-top-n-h-games-2024__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-top-n-h-games-2024__section-title {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem); /* H1 font size handled with clamp for responsiveness */
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-blog-top-n-h-games-2024__text-block {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
    text-align: justify;
}

.page-blog-top-n-h-games-2024__highlight {
    color: var(--color-gold);
    font-weight: bold;
}

.page-blog-top-n-h-games-2024__highlight-link {
    color: var(--color-glow);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-top-n-h-games-2024__highlight-link:hover {
    text-decoration: underline;
}

/* Buttons */
.page-blog-top-n-h-games-2024__btn-primary,
.page-blog-top-n-h-games-2024__btn-secondary,
.page-blog-top-n-h-games-2024__btn-small {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-top-n-h-games-2024__btn-primary {
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    border: none;
}

.page-blog-top-n-h-games-2024__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-top-n-h-games-2024__btn-secondary {
    background: transparent;
    color: var(--color-glow);
    border: 2px solid var(--color-glow);
}

.page-blog-top-n-h-games-2024__btn-secondary:hover {
    background: var(--color-glow);
    color: var(--color-background);
}

.page-blog-top-n-h-games-2024__btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    background: var(--color-deep-green);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.page-blog-top-n-h-games-2024__btn-small:hover {
    background: var(--color-primary);
}

.page-blog-top-n-h-games-2024__btn-large {
    font-size: 1.2em;
    padding: 15px 30px;
    margin-top: 30px;
}

/* Hero Section */
.page-blog-top-n-h-games-2024__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding */
    background-color: var(--color-deep-green);
    overflow: hidden;
}

.page-blog-top-n-h-games-2024__hero-image {
    width: 100%;
    max-width: 1600px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-top-n-h-games-2024__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-blog-top-n-h-games-2024__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.page-blog-top-n-h-games-2024__hero-description {
    font-size: 1.2em;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-top-n-h-games-2024__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%; /* Ensure container fills width */
    max-width: 100%; /* Ensure container fills width */
    box-sizing: border-box;
    overflow: hidden;
}

/* Sections General */
.page-blog-top-n-h-games-2024__introduction-section,
.page-blog-top-n-h-games-2024__criteria-section,
.page-blog-top-n-h-games-2024__top-games-section,
.page-blog-top-n-h-games-2024__tips-section,
.page-blog-top-n-h-games-2024__benefits-section,
.page-blog-top-n-h-games-2024__register-section,
.page-blog-top-n-h-games-2024__faq-section,
.page-blog-top-n-h-games-2024__conclusion-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-divider);
}

.page-blog-top-n-h-games-2024__introduction-section {
    background-color: var(--color-background);
}

.page-blog-top-n-h-games-2024__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px;
}

/* Lists */
.page-blog-top-n-h-games-2024__list,
.page-blog-top-n-h-games-2024__numbered-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.page-blog-top-n-h-games-2024__list-item {
    background-color: var(--color-card-bg);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid var(--color-primary);
    color: var(--color-text-main);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-top-n-h-games-2024__numbered-list .page-blog-top-n-h-games-2024__list-item {
    counter-increment: list-counter;
    position: relative;
    padding-left: 40px;
}

.page-blog-top-n-h-games-2024__numbered-list .page-blog-top-n-h-games-2024__list-item::before {
    content: counter(list-counter);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-gold);
    color: var(--color-background);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
}

/* Game Cards Grid */
.page-blog-top-n-h-games-2024__game-cards-grid,
.page-blog-top-n-h-games-2024__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top-n-h-games-2024__game-card,
.page-blog-top-n-h-games-2024__benefit-card {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--color-border);
}

.page-blog-top-n-h-games-2024__game-card-image,
.page-blog-top-n-h-games-2024__benefit-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
}

.page-blog-top-n-h-games-2024__game-card-title,
.page-blog-top-n-h-games-2024__benefit-card-title {
    font-size: 1.3em;
    color: var(--color-gold);
    margin: 10px 15px;
    font-weight: 700;
    line-height: 1.3;
}

.page-blog-top-n-h-games-2024__game-card-title a {
    color: var(--color-gold);
    text-decoration: none;
}

.page-blog-top-n-h-games-2024__game-card-title a:hover {
    text-decoration: underline;
}

.page-blog-top-n-h-games-2024__game-card-description,
.page-blog-top-n-h-games-2024__benefit-card-description {
    color: var(--color-text-secondary);
    font-size: 0.95em;
    margin: 0 15px 15px;
    flex-grow: 1;
    text-align: justify;
}

.page-blog-top-n-h-games-2024__game-card .page-blog-top-n-h-games-2024__btn-small {
    margin-top: auto;
}

/* FAQ Section */
.page-blog-top-n-h-games-2024__faq-list {
    margin-top: 40px;
}

.page-blog-top-n-h-games-2024__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
}

.page-blog-top-n-h-games-2024__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--color-gold);
    list-style: none; /* For details/summary */
}

.page-blog-top-n-h-games-2024__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-top-n-h-games-2024__faq-qtext {
    flex-grow: 1;
}

.page-blog-top-n-h-games-2024__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-glow);
}

.page-blog-top-n-h-games-2024__faq-answer {
    padding: 0 25px 18px;
    color: var(--color-text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
}

/* Conclusion Section */
.page-blog-top-n-h-games-2024__conclusion-section {
    text-align: center;
    background-color: var(--color-deep-green);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-blog-top-n-h-games-2024 {
        font-size: 15px;
    }

    .page-blog-top-n-h-games-2024__section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .page-blog-top-n-h-games-2024__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-blog-top-n-h-games-2024__main-title {
        font-size: 2.2rem;
    }

    .page-blog-top-n-h-games-2024__hero-description {
        font-size: 1em;
    }

    .page-blog-top-n-h-games-2024__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-top-n-h-games-2024__btn-primary,
    .page-blog-top-n-h-games-2024__btn-secondary,
    .page-blog-top-n-h-games-2024__btn-small,
    .page-blog-top-n-h-games-2024__btn-large,
    .page-blog-top-n-h-games-2024 a[class*="button"],
    .page-blog-top-n-h-games-2024 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-blog-top-n-h-games-2024__cta-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-top-n-h-games-2024__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-top-n-h-games-2024 img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-top-n-h-games-2024__game-cards-grid,
    .page-blog-top-n-h-games-2024__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-top-n-h-games-2024__game-card,
    .page-blog-top-n-h-games-2024__benefit-card {
        padding-bottom: 15px;
    }

    .page-blog-top-n-h-games-2024__game-card-image,
    .page-blog-top-n-h-games-2024__benefit-card-image {
        height: 180px;
    }

    .page-blog-top-n-h-games-2024__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-blog-top-n-h-games-2024__faq-answer {
        padding: 0 20px 15px;
    }

    .page-blog-top-n-h-games-2024__section-title {
        margin-bottom: 30px;
    }
}