:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --body-bg: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-game-guides {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--body-bg);
}

/* General Section Styling */
.page-game-guides__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-game-guides__text-main {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 17px;
    color: var(--text-main);
}

.page-game-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-game-guides__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main);
}

.page-game-guides__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-guides__btn-primary {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-game-guides__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--card-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-game-guides a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-game-guides a:hover {
    text-decoration: underline;
}

.page-game-guides img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

/* HERO Section */
.page-game-guides__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 */
    background-color: var(--body-bg);
    min-height: 60vh;
}

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

.page-game-guides__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-game-guides__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-game-guides__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-game-guides__hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
    line-height: 1.2;
}

.page-game-guides__hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-game-guides__introduction-section {
    padding: 80px 0;
    background-color: var(--body-bg);
}

.page-game-guides__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides__feature-item {
    text-align: center;
}

.page-game-guides__feature-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-guides__feature-item p {
    font-size: 16px;
    color: var(--text-main);
}

/* Quick Access Section */
.page-game-guides__quick-access-section {
    padding: 80px 0;
    background-color: var(--body-bg);
}

.page-game-guides__access-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.page-game-guides__access-card {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 25px 20px;
    border-radius: 8px;
}

.page-game-guides__access-title {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-game-guides__access-card p {
    font-size: 15px;
    color: var(--text-main);
}

/* Games Overview Section */
.page-game-guides__games-overview-section {
    padding: 80px 0;
    background-color: var(--body-bg);
}

.page-game-guides__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides__game-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-guides__game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-guides__game-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-game-guides__game-title a {
    color: var(--secondary-color);
}

.page-game-guides__game-title a:hover {
    text-decoration: underline;
}

.page-game-guides__game-card p {
    font-size: 16px;
    color: var(--text-main);
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Promotions Section */
.page-game-guides__promotions-section {
    padding: 80px 0;
    background-color: var(--body-bg);
}

.page-game-guides__promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides__promo-card {
    text-align: center;
}

.page-game-guides__promo-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-guides__promo-card p {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 20px;
}

/* Security and Support Section */
.page-game-guides__security-support-section {
    padding: 80px 0;
    background-color: var(--body-bg);
}

.page-game-guides__security-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides__security-item {
    text-align: center;
}

.page-game-guides__security-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-game-guides__security-item p {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 20px;
}

/* FAQ Section */
details.page-game-guides__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
}

details.page-game-guides__faq-item summary.page-game-guides__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;
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question::-webkit-details-marker {
    display: none;
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.page-game-guides__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}

.page-game-guides__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-game-guides__faq-item .page-game-guides__faq-answer {
    padding: 0 20px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 5px 5px;
    color: var(--text-main);
}

.page-game-guides__faq-answer p {
    margin-bottom: 0;
}

/* Blog Section */
.page-game-guides__blog-section {
    padding: 80px 0;
    background-color: var(--body-bg);
}

.page-game-guides__blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-guides__blog-card {
    text-align: left;
}

.page-game-guides__blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-guides__blog-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-game-guides__blog-title a {
    color: var(--secondary-color);
}

.page-game-guides__blog-title a:hover {
    text-decoration: underline;
}

.page-game-guides__blog-excerpt {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-game-guides__view-all-posts {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides__hero-content h1 {
        font-size: clamp(30px, 4.5vw, 50px);
    }
    .page-game-guides__section-title {
        font-size: clamp(26px, 3.5vw, 38px);
    }
    .page-game-guides__text-main {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-game-guides__hero-image img {
        border-radius: 4px;
    }
    .page-game-guides__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-game-guides__introduction-section,
    .page-game-guides__quick-access-section,
    .page-game-guides__games-overview-section,
    .page-game-guides__promotions-section,
    .page-game-guides__security-support-section,
    .page-game-guides__faq-section,
    .page-game-guides__blog-section {
        padding: 40px 0;
    }

    .page-game-guides__container {
        padding: 0 15px;
    }

    .page-game-guides__section-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 20px;
    }
    .page-game-guides__text-main {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .page-game-guides__features-grid,
    .page-game-guides__access-links-grid,
    .page-game-guides__game-cards-grid,
    .page-game-guides__promo-cards-grid,
    .page-game-guides__security-support-grid,
    .page-game-guides__blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .page-game-guides__feature-title,
    .page-game-guides__access-title,
    .page-game-guides__game-title,
    .page-game-guides__promo-title,
    .page-game-guides__security-title,
    .page-game-guides__blog-title {
        font-size: 20px;
    }

    .page-game-guides__card {
        padding: 20px;
    }

    .page-game-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-game-guides__section,
    .page-game-guides__card,
    .page-game-guides__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    details.page-game-guides__faq-item summary.page-game-guides__faq-question { padding: 15px; }
    .page-game-guides__faq-qtext { font-size: 16px; }
    .page-game-guides__faq-toggle { font-size: 24px; }
    details.page-game-guides__faq-item .page-game-guides__faq-answer { padding: 0 15px 15px; }

    .page-game-guides__btn-primary,
    .page-game-guides__btn-secondary,
    .page-game-guides a[class*="button"],
    .page-game-guides 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-game-guides__cta-buttons,
    .page-game-guides__button-group,
    .page-game-guides__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;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero-content h1 {
        font-size: clamp(28px, 8vw, 40px);
    }
    .page-game-guides__cta-button {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-game-guides__section-title {
        font-size: clamp(22px, 7vw, 28px);
    }
    .page-game-guides__text-main {
        font-size: 14px;
    }
    .page-game-guides__faq-qtext { font-size: 15px; }
}