.page-game-guides {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
}

.page-game-guides__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px; /* Small top padding, body handles header offset */
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-game-guides__hero-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.page-game-guides__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2FFF6;
    letter-spacing: -0.03em;
}

.page-game-guides__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #A7D9B8;
}

.page-game-guides__button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-game-guides__button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-game-guides__category-section, 
.page-game-guides__benefits-section, 
.page-game-guides__faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-game-guides__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #F2FFF6;
    position: relative;
    padding-bottom: 10px;
}

.page-game-guides__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #22C768;
    border-radius: 2px;
}

.page-game-guides__section-description {
    font-size: 1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #A7D9B8;
    line-height: 1.6;
}

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

.page-game-guides__guide-card {
    background-color: #11271B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E;
}

.page-game-guides__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D;
}

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

.page-game-guides__card-content {
    padding: 25px;
}

.page-game-guides__card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-game-guides__card-title a {
    color: #F2FFF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__card-title a:hover {
    color: #22C768;
}

.page-game-guides__card-text {
    font-size: 0.95rem;
    color: #A7D9B8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-game-guides__card-link {
    display: inline-block;
    color: #22C768;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-guides__card-link:hover {
    color: #57E38D;
    text-decoration: underline;
}

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

.page-game-guides__benefit-item {
    background-color: #11271B;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #2E7A4E;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 10px #57E38D;
}

.page-game-guides__benefit-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
}

.page-game-guides__benefit-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #F2FFF6;
}

.page-game-guides__benefit-text {
    font-size: 1rem;
    color: #A7D9B8;
    line-height: 1.6;
}

.page-game-guides__button--cta {
    margin-top: 50px;
    font-size: 1.2rem;
    padding: 18px 35px;
}

.page-game-guides__faq-list {
    margin-top: 40px;
    border-top: 1px solid #1E3A2A;
}

.page-game-guides__faq-item {
    border-bottom: 1px solid #1E3A2A;
}

.page-game-guides__faq-question {
    background-color: transparent;
    color: #F2FFF6;
    font-size: 1.15rem;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.page-game-guides__faq-question:hover {
    color: #22C768;
}

.page-game-guides__faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #22C768;
}

.page-game-guides__faq-question[aria-expanded="true"] .page-game-guides__faq-icon {
    transform: rotate(45deg);
}

.page-game-guides__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #A7D9B8;
}

.page-game-guides__faq-answer p {
    padding: 0 0 20px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.page-game-guides__faq-question[aria-expanded="true"] + .page-game-guides__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-game-guides__hero-image-wrapper {
        height: 500px;
    }
    .page-game-guides__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-image-wrapper {
        height: 400px;
    }
    .page-game-guides__hero-content {
        margin: 30px auto;
    }
    .page-game-guides__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-game-guides__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-game-guides__button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    .page-game-guides__category-section, 
    .page-game-guides__benefits-section, 
    .page-game-guides__faq-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    .page-game-guides__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    .page-game-guides__card-image, 
    .page-game-guides__benefit-image {
        max-width: 100%;
        height: auto;
    }
    .page-game-guides__guide-card:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    .page-game-guides__benefit-item:hover {
        transform: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    /* Enforce image responsiveness for content area */
    .page-game-guides img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero-image-wrapper {
        height: 300px;
    }
    .page-game-guides__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .page-game-guides__card-title {
        font-size: 1.2rem;
    }
    .page-game-guides__benefit-title {
        font-size: 1.4rem;
    }
    .page-game-guides__faq-question {
        font-size: 1rem;
    }
}