.page-game-guides {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
}

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

/* Hero Section */
.page-game-guides__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-game-guides__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-game-guides__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability, not color change */
}

.page-game-guides__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(17, 17, 17, 0.7); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #3A2A12; /* Border */
}

.page-game-guides__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* H1 font size with clamp */
    color: #FFD36B; /* Glow */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.7);
}

.page-game-guides__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF6D6; /* Text Main */
}

.page-game-guides__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-game-guides__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-game-guides__btn-primary:hover {
    background: linear-gradient(180deg, #FFE699 0%, #E6B33D 100%);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
    transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
    background: #111111; /* Card BG */
    color: #FFD36B; /* Glow */
    border: 2px solid #FFD36B; /* Glow */
}

.page-game-guides__btn-secondary:hover {
    background: #FFD36B; /* Glow */
    color: #111111; /* Card BG */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-game-guides__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(58, 42, 18, 0.5); /* Border with transparency */
}

.page-game-guides__section:last-of-type {
    border-bottom: none;
}

.page-game-guides__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.5);
}

.page-game-guides__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #FFF6D6; /* Text Main */
}

/* About Guides Section */
.page-game-guides__about-guides {
    padding-top: 40px; /* Adjust top padding for subsequent sections */
}

/* Game Categories Grid */
.page-game-guides__categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides__category-card {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #FFF6D6; /* Text Main */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-guides__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-game-guides__category-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #FFD36B); /* Glow effect on icon */
}

.page-game-guides__category-title {
    font-size: 1.4em;
    color: #FFD36B; /* Glow */
    margin-bottom: 10px;
}

.page-game-guides__category-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #FFF6D6; /* Text Main */
}

/* Deep Dive Sections */
.page-game-guides__deep-dive-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-game-guides__deep-dive-content.page-game-guides__reverse-layout {
    flex-direction: row-reverse;
}

.page-game-guides__deep-dive-image-wrapper {
    flex: 1;
    min-width: 400px; /* Ensure image has enough space */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
}

.page-game-guides__deep-dive-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-game-guides__deep-dive-text {
    flex: 2;
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__sub-title {
    font-size: 1.8em;
    color: #F2C14E; /* Main color */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-game-guides__deep-dive-text p {
    margin-bottom: 20px;
    color: #FFF6D6; /* Text Main */
}

/* Responsible Gaming Section */
.page-game-guides__responsible-gaming-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides__feature-card {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__feature-title {
    font-size: 1.5em;
    color: #FFD36B; /* Glow */
    margin-bottom: 10px;
}

.page-game-guides__feature-description {
    font-size: 1em;
    color: #FFF6D6; /* Text Main */
}

.page-game-guides__cta-buttons--centered {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* FAQ Section */
.page-game-guides__faq-list {
    margin-top: 40px;
}

.page-game-guides__faq-item {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #1a1a1a; /* Slightly darker than card bg */
    transition: background 0.3s ease;
}

.page-game-guides__faq-question:hover {
    background: #222222;
}

.page-game-guides__faq-title {
    font-size: 1.25em;
    color: #F2C14E; /* Main color */
    margin: 0;
}

.page-game-guides__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFD36B; /* Glow */
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.page-game-guides__faq-item.active .page-game-guides__faq-toggle {
    transform: rotate(45deg);
}

.page-game-guides__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6; /* Text Main */
}

.page-game-guides__faq-item.active .page-game-guides__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 15px 25px 25px 25px; /* Adjust padding for expanded state */
}

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

/* Footer (Placeholder styling for context, actual footer is placeholder) */
.page-game-guides__footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #0A0A0A; /* Background */
    color: #FFF6D6; /* Text Main */
    font-size: 0.9em;
    border-top: 1px solid #3A2A12; /* Border */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-game-guides__deep-dive-content {
        flex-direction: column;
        align-items: center;
    }
    .page-game-guides__deep-dive-content.page-game-guides__reverse-layout {
        flex-direction: column; /* Stack vertically for reverse layout too */
    }
    .page-game-guides__deep-dive-image-wrapper {
        min-width: unset;
        width: 100%;
        margin-bottom: 30px;
    }
    .page-game-guides__hero-content {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header spacing */
        padding-bottom: 40px;
    }

    .page-game-guides__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-game-guides__intro-text {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-game-guides__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px; /* Add padding to button container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-game-guides__btn-primary,
    .page-game-guides__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-game-guides__section {
        padding: 40px 0;
    }

    .page-game-guides__section-title {
        font-size: 2em;
        padding: 0 15px;
    }

    .page-game-guides__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .page-game-guides__categories-grid,
    .page-game-guides__responsible-gaming-features {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .page-game-guides__category-card,
    .page-game-guides__feature-card {
        padding: 20px;
    }

    .page-game-guides__deep-dive-text {
        padding: 20px;
    }

    .page-game-guides__sub-title {
        font-size: 1.5em;
    }

    .page-game-guides__faq-question {
        padding: 15px 20px;
    }

    .page-game-guides__faq-title {
        font-size: 1.1em;
    }

    .page-game-guides__faq-answer {
        padding: 0 20px;
    }

    .page-game-guides__faq-item.active .page-game-guides__faq-answer {
        padding: 10px 20px 20px 20px;
    }

    /* Images responsiveness */
    .page-game-guides img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-game-guides__hero-image-wrapper,
    .page-game-guides__deep-dive-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    .page-game-guides__container,
    .page-game-guides__section,
    .page-game-guides__category-card,
    .page-game-guides__feature-card,
    .page-game-guides__deep-dive-text,
    .page-game-guides__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-game-guides__cta-buttons--centered {
        flex-direction: column;
        gap: 10px;
    }
}