/* style/game-guides.css */
.page-game-guides {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark backgrounds */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

.page-game-guides__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A192F 0%, #1a304e 100%);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

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

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

.page-game-guides__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-game-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f5e6d0;
}

.page-game-guides__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-game-guides__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #f5e6d0;
}

.page-game-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    font-size: 1.1em;
    text-align: center;
}

.page-game-guides__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-game-guides__btn--primary:hover {
    background-color: #e6c200;
    color: #000000;
    transform: translateY(-3px);
}

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

.page-game-guides__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-game-guides__highlight {
    color: #FFD700;
}

/* Intro Section */
.page-game-guides__intro {
    padding: 60px 0;
    background-color: #0A192F;
}

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

.page-game-guides__feature-item {
    background-color: #1a304e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border-top: 3px solid #FFD700;
}

.page-game-guides__feature-item:hover {
    transform: translateY(-10px);
}

.page-game-guides__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-guides__feature-description {
    color: #f5e6d0;
    font-size: 1em;
}

/* Categories Section */
.page-game-guides__categories {
    padding: 60px 0;
    background-color: #0A192F;
}

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

.page-game-guides__category-card {
    background-color: #1a304e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 3px solid #FFD700;
}

.page-game-guides__category-card:hover {
    transform: translateY(-10px);
}

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

.page-game-guides__category-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 20px 0 10px;
}

.page-game-guides__category-description {
    color: #f5e6d0;
    padding: 0 20px 20px;
    font-size: 1em;
}

/* Strategy Section */
.page-game-guides__strategy {
    padding: 60px 0;
    background-color: #0A192F;
    position: relative;
    overflow: hidden;
}

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

.page-game-guides__strategy-item {
    background-color: #1a304e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 3px solid #FFD700;
}

.page-game-guides__strategy-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-guides__strategy-description {
    color: #f5e6d0;
    font-size: 1em;
}

.page-game-guides__strategy-image {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.page-game-guides__strategy-image:hover {
    opacity: 1;
}

/* FAQ Section */
.page-game-guides__faq {
    padding: 60px 0;
    background-color: #0A192F;
    position: relative;
    overflow: hidden;
}

.page-game-guides__faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.page-game-guides__faq-item {
    background-color: #1a304e;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-right: 3px solid #FFD700;
}

.page-game-guides__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-guides__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-game-guides__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-guides__faq-answer {
    color: #f5e6d0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-game-guides__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-game-guides__faq-image {
    width: 100%;
    max-width: 600px;
    margin: 60px auto 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.page-game-guides__faq-image:hover {
    opacity: 1;
}

/* CTA Section */
.page-game-guides__cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A192F 0%, #1a304e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides__cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-game-guides__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-game-guides__cta-description {
    font-size: 1.2em;
    color: #f5e6d0;
    margin-bottom: 40px;
}

.page-game-guides__cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides__hero-title {
        font-size: 2.8em;
    }
    .page-game-guides__section-title {
        font-size: 2em;
    }
    .page-game-guides__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero {
        padding: 60px 20px;
    }
    .page-game-guides__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides__hero-description {
        font-size: 1em;
    }
    .page-game-guides__section-title {
        font-size: 1.8em;
    }
    .page-game-guides__text-content {
        font-size: 0.95em;
    }
    .page-game-guides__features, .page-game-guides__category-grid, .page-game-guides__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-guides__cta-title {
        font-size: 1.8em;
    }
    .page-game-guides__cta-description {
        font-size: 1em;
    }
    .page-game-guides__strategy-image, .page-game-guides__faq-image {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero {
        padding: 40px 15px;
    }
    .page-game-guides__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides__hero-description {
        font-size: 0.9em;
    }
    .page-game-guides__section-title {
        font-size: 1.5em;
    }
    .page-game-guides__text-content {
        font-size: 0.9em;
    }
    .page-game-guides__btn {
        margin: 5px;
    }
    .page-game-guides__cta-title {
        font-size: 1.5em;
    }
    .page-game-guides__cta-description {
        font-size: 0.9em;
    }
    .page-game-guides__container {
        padding: 0 15px;
    }
}