/* style/game-guides.css */
.page-game-guides {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #F8F8F8;
}

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

/* Hero Section */
.page-game-guides__hero {
    background: linear-gradient(135deg, #0A2342, #1A3A60);
    color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.page-game-guides__hero-content {
    max-width: 600px;
    z-index: 1;
    padding-left: 20px;
}

.page-game-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
    font-weight: bold;
}

.page-game-guides__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-guides__hero-actions {
    display: flex;
    gap: 15px;
}

.page-game-guides__hero-image-wrapper {
    flex-shrink: 0;
    width: 40%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.page-game-guides__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-game-guides__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides__section:nth-of-type(even) {
    background-color: #F0F2F5;
}

.page-game-guides__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 40px;
    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: #FFD700;
    border-radius: 2px;
}

.page-game-guides__intro p {
    font-size: 1.1em;
    color: #444;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

/* Buttons */
.page-game-guides__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

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

.page-game-guides__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

.page-game-guides__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

.page-game-guides__category-item {
    background-color: #0A2342;
    color: #E0E0E0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides__category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-game-guides__category-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-guides__category-item p {
    font-size: 0.95em;
    color: #C0C0C0;
}

/* Detail Guides */
.page-game-guides__detail-guides .page-game-guides__guides-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-game-guides__guide-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #F8F8F8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides__guide-thumbnail-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.page-game-guides__guide-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-game-guides__guide-content h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-game-guides__guide-content h3 a {
    color: #0A2342;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__guide-content h3 a:hover {
    color: #FFD700;
}

.page-game-guides__guide-content p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1em;
}

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

.page-game-guides__strategy-card {
    background-color: #0A2342;
    color: #E0E0E0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides__strategy-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-game-guides__strategy-card p {
    font-size: 1em;
    color: #C0C0C0;
}

/* CTA App Section */
.page-game-guides__cta-app {
    background: linear-gradient(90deg, #0A2342, #1A3A60);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-game-guides__cta-app-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.page-game-guides__cta-app-text {
    max-width: 50%;
}

.page-game-guides__cta-app-text .page-game-guides__section-title {
    color: #FFD700;
    text-align: left;
}

.page-game-guides__cta-app-text .page-game-guides__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page-game-guides__cta-app-text p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-game-guides__cta-app-image {
    flex-shrink: 0;
    width: 300px;
}

.page-game-guides__app-mockup {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Register Login Section */
.page-game-guides__register-login {
    background-color: #F0F2F5;
    text-align: center;
    padding: 80px 0;
}

.page-game-guides__register-login .page-game-guides__section-title {
    color: #0A2342;
}

.page-game-guides__register-login p {
    font-size: 1.1em;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-game-guides__register-login-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-game-guides__register-login-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-game-guides__faq {
    background-color: #FFFFFF;
}

.page-game-guides__faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 20px;
}

.page-game-guides__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.page-game-guides__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.page-game-guides__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

/* Final CTA Section */
.page-game-guides__final-cta {
    background: linear-gradient(135deg, #1A3A60, #0A2342);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-game-guides__final-cta .page-game-guides__section-title {
    color: #FFD700;
}

.page-game-guides__final-cta p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-game-guides__final-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-game-guides__hero-content {
        padding-left: 0;
        max-width: 100%;
    }

    .page-game-guides__hero-title {
        font-size: 2.8em;
    }

    .page-game-guides__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-guides__hero-image-wrapper {
        width: 80%;
        margin-top: 40px;
    }

    .page-game-guides__section-title {
        font-size: 2em;
    }

    .page-game-guides__categories-grid,
    .page-game-guides__strategies .page-game-guides__strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .page-game-guides__detail-guides .page-game-guides__guides-list {
        gap: 30px;
    }

    .page-game-guides__guide-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .page-game-guides__guide-thumbnail-wrapper {
        width: 100%;
        height: 180px;
        margin-bottom: 20px;
    }

    .page-game-guides__cta-app-inner {
        flex-direction: column;
        text-align: center;
    }

    .page-game-guides__cta-app-text {
        max-width: 100%;
    }

    .page-game-guides__cta-app-text .page-game-guides__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero {
        padding: 40px 15px;
    }

    .page-game-guides__hero-title {
        font-size: 2.2em;
    }

    .page-game-guides__hero-subtitle {
        font-size: 1em;
    }

    .page-game-guides__hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-game-guides__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

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

    .page-game-guides__section-title {
        font-size: 1.8em;
    }

    .page-game-guides__categories-grid,
    .page-game-guides__strategies .page-game-guides__strategy-grid {
        grid-template-columns: 1fr;
    }

    .page-game-guides__register-login-actions,
    .page-game-guides__final-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-game-guides__faq-question {
        font-size: 1.2em;
    }

    .page-game-guides__faq-answer {
        font-size: 0.95em;
    }
}