:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-color: #0D0E12;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;
}

.page-blog-90ok-homepage-popular-game-guide {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-main-color);
    line-height: 1.6;
}

.page-blog-90ok-homepage-popular-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-90ok-homepage-popular-game-guide h1,
.page-blog-90ok-homepage-popular-game-guide h2,
.page-blog-90ok-homepage-popular-game-guide h3 {
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 25px;
}

.page-blog-90ok-homepage-popular-game-guide h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-90ok-homepage-popular-game-guide h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
}

.page-blog-90ok-homepage-popular-game-guide h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
}

.page-blog-90ok-homepage-popular-game-guide p {
    text-align: center;
    margin-bottom: 20px;
}

/* HERO Section */
.page-blog-90ok-homepage-popular-game-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
}

.page-blog-90ok-homepage-popular-game-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-blog-90ok-homepage-popular-game-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-90ok-homepage-popular-game-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-90ok-homepage-popular-game-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-90ok-homepage-popular-game-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-90ok-homepage-popular-game-guide__cta-button:hover {
    background: var(--glow-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-blog-90ok-homepage-popular-game-guide__introduction-section {
    padding: 60px 0;
}

.page-blog-90ok-homepage-popular-game-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-90ok-homepage-popular-game-guide__feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-90ok-homepage-popular-game-guide__feature-item img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-90ok-homepage-popular-game-guide__feature-item h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-blog-90ok-homepage-popular-game-guide__feature-item p {
    color: var(--text-main-color);
    text-align: center;
}

/* Game Section */
.page-blog-90ok-homepage-popular-game-guide__game-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.page-blog-90ok-homepage-popular-game-guide__game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.page-blog-90ok-homepage-popular-game-guide__game-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 25px;
    max-width: 100%;
    display: block;
}

.page-blog-90ok-homepage-popular-game-guide__game-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
    padding: 0 20px;
    text-align: left;
}

.page-blog-90ok-homepage-popular-game-guide__game-card p {
    color: var(--text-main-color);
    text-align: left;
    padding: 0 20px;
    margin-bottom: 25px;
}

.page-blog-90ok-homepage-popular-game-guide__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    margin-left: 20px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-90ok-homepage-popular-game-guide__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* CTA Section */
.page-blog-90ok-homepage-popular-game-guide__cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-90ok-homepage-popular-game-guide__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-90ok-homepage-popular-game-guide__btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-90ok-homepage-popular-game-guide__btn-primary:hover {
    background: var(--glow-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-90ok-homepage-popular-game-guide__faq-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.03);
}

.page-blog-90ok-homepage-popular-game-guide__faq-list {
    margin-top: 30px;
}

details.page-blog-90ok-homepage-popular-game-guide__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

details.page-blog-90ok-homepage-popular-game-guide__faq-item summary.page-blog-90ok-homepage-popular-game-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main-color);
}

details.page-blog-90ok-homepage-popular-game-guide__faq-item summary.page-blog-90ok-homepage-popular-game-guide__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-90ok-homepage-popular-game-guide__faq-item summary.page-blog-90ok-homepage-popular-game-guide__faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-blog-90ok-homepage-popular-game-guide__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

.page-blog-90ok-homepage-popular-game-guide__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-blog-90ok-homepage-popular-game-guide__faq-item .page-blog-90ok-homepage-popular-game-guide__faq-answer {
    padding: 0 20px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 5px 5px;
    color: var(--text-main-color);
}

/* General Image and Button Responsiveness */
.page-blog-90ok-homepage-popular-game-guide img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-blog-90ok-homepage-popular-game-guide__section,
.page-blog-90ok-homepage-popular-game-guide__card,
.page-blog-90ok-homepage-popular-game-guide__container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-90ok-homepage-popular-game-guide__cta-button,
.page-blog-90ok-homepage-popular-game-guide__btn-primary,
.page-blog-90ok-homepage-popular-game-guide__btn-secondary,
.page-blog-90ok-homepage-popular-game-guide a[class*="button"],
.page-blog-90ok-homepage-popular-game-guide a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-90ok-homepage-popular-game-guide__cta-buttons,
.page-blog-90ok-homepage-popular-game-guide__button-group,
.page-blog-90ok-homepage-popular-game-guide__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-blog-90ok-homepage-popular-game-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-90ok-homepage-popular-game-guide__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-90ok-homepage-popular-game-guide__hero-image img {
        border-radius: 4px;
    }

    .page-blog-90ok-homepage-popular-game-guide__hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-90ok-homepage-popular-game-guide__hero-content p {
        padding: 0 10px;
    }

    .page-blog-90ok-homepage-popular-game-guide__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        width: calc(100% - 30px) !important;
    }

    .page-blog-90ok-homepage-popular-game-guide__introduction-section,
    .page-blog-90ok-homepage-popular-game-guide__game-section,
    .page-blog-90ok-homepage-popular-game-guide__cta-section,
    .page-blog-90ok-homepage-popular-game-guide__faq-section {
        padding: 30px 0;
    }

    .page-blog-90ok-homepage-popular-game-guide__container {
        padding: 0 15px;
    }

    .page-blog-90ok-homepage-popular-game-guide h1,
    .page-blog-90ok-homepage-popular-game-guide h2,
    .page-blog-90ok-homepage-popular-game-guide h3 {
        margin-bottom: 15px;
    }

    .page-blog-90ok-homepage-popular-game-guide__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-90ok-homepage-popular-game-guide__feature-item,
    .page-blog-90ok-homepage-popular-game-guide__game-card {
        padding: 20px;
    }

    .page-blog-90ok-homepage-popular-game-guide__game-card h3,
    .page-blog-90ok-homepage-popular-game-guide__game-card p {
        padding: 0;
        text-align: center;
    }

    .page-blog-90ok-homepage-popular-game-guide__btn-secondary {
        margin-left: 0;
        width: calc(100% - 40px);
        display: block;
        margin: 0 auto;
    }

    .page-blog-90ok-homepage-popular-game-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-90ok-homepage-popular-game-guide__btn-primary,
    .page-blog-90ok-homepage-popular-game-guide__btn-secondary,
    .page-blog-90ok-homepage-popular-game-guide a[class*="button"],
    .page-blog-90ok-homepage-popular-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;
    }

    .page-blog-90ok-homepage-popular-game-guide__faq-item summary.page-blog-90ok-homepage-popular-game-guide__faq-question {
        padding: 15px;
    }

    .page-blog-90ok-homepage-popular-game-guide__faq-qtext {
        font-size: 15px;
    }

    details.page-blog-90ok-homepage-popular-game-guide__faq-item .page-blog-90ok-homepage-popular-game-guide__faq-answer {
        padding: 0 15px 15px;
    }

    .page-blog-90ok-homepage-popular-game-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-90ok-homepage-popular-game-guide__section,
    .page-blog-90ok-homepage-popular-game-guide__card,
    .page-blog-90ok-homepage-popular-game-guide__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-90ok-homepage-popular-game-guide__hero-section {
        padding-top: 10px !important;
    }
}