.page-game-guides {
    color: #ffffff; /* Body background is #000000 (dark), so use light text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Inherit from body, which is #000000 from shared.css */
}

.page-game-guides__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image then text */
    align-items: center;
    padding: 10px 0 60px; /* Small top padding, more bottom padding */
    background-color: #000000; /* Ensure this section has a dark background */
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px; /* Space between image and text */
}

.page-game-guides__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-game-guides__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-game-guides__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #26A9E0; /* Brand color for title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(38, 169, 224, 0.5); /* Subtle glow */
}

.page-game-guides__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Light grey for body text */
}

.page-game-guides__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
}

.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;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for button responsiveness */
    text-align: center;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    min-width: 180px; /* Ensure buttons are not too small */
}

.page-game-guides__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

.page-game-guides__btn-primary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
}

.page-game-guides__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-game-guides__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-game-guides__section {
    padding: 60px 0;
    background-color: #0d0d0d; /* Slightly lighter dark background for content sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
}

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

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

.page-game-guides__section-title {
    font-size: 2.2em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-guides__sub-title {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-game-guides__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-game-guides__list li {
    margin-bottom: 8px;
    color: #f0f0f0;
}

.page-game-guides__image-block {
    margin: 30px 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-game-guides__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* FAQ styles */
.page-game-guides__faq {
    background-color: #000000;
}

.page-game-guides__faq-list {
    margin-top: 30px;
}

.page-game-guides__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.page-game-guides__faq-item[open] {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-game-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    color: #26A9E0;
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-game-guides__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-game-guides__faq-qtext {
    flex-grow: 1;
}

.page-game-guides__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

.page-game-guides__faq-answer {
    padding: 0 20px 20px;
    font-size: 0.95em;
    color: #cccccc;
}

/* Responsive design */
@media (max-width: 992px) {
    .page-game-guides__main-title {
        font-size: 2.5em;
    }
    .page-game-guides__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-section {
        padding: 10px 0 40px;
    }
    .page-game-guides__hero-content {
        padding: 0 15px;
    }
    .page-game-guides__main-title {
        font-size: 1.8em; /* Responsive font size */
        margin-bottom: 15px;
    }
    .page-game-guides__description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-game-guides__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%; /* Ensure container takes full width */
        padding: 0 15px; /* Add padding to container */
        box-sizing: border-box;
    }
    .page-game-guides__btn-primary,
    .page-game-guides__btn-secondary {
        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__section {
        padding: 40px 0;
    }
    .page-game-guides__container {
        padding: 0 15px;
    }
    .page-game-guides__section-title {
        font-size: 1.7em;
        margin-bottom: 30px;
    }
    .page-game-guides__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
    }
    .page-game-guides p,
    .page-game-guides__list li {
        font-size: 0.95em;
    }

    /* Mobile image responsiveness */
    .page-game-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-game-guides__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 0 15px; /* Ensure images don't touch edges */
    }

    /* Mobile video responsiveness (if any, though none currently in HTML) */
    .page-game-guides video,
    .page-game-guides__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-game-guides__video-section,
    .page-game-guides__video-container,
    .page-game-guides__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-game-guides__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
}

@media (max-width: 480px) {
    .page-game-guides__main-title {
        font-size: 1.5em;
    }
    .page-game-guides__section-title {
        font-size: 1.5em;
    }
    .page-game-guides__sub-title {
        font-size: 1.1em;
    }
    .page-game-guides__faq-question {
        font-size: 1em;
    }
}