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

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

.page-game-guides__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-game-guides__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.page-game-guides__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

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

.page-game-guides__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

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

.page-game-guides__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-game-guides__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-game-guides__image--fullwidth {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides__image--right {
    width: 100%;
    max-width: 500px;
    float: right;
    margin: 0 0 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides__image--left {
    width: 100%;
    max-width: 500px;
    float: left;
    margin: 0 30px 20px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides__btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-game-guides__btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-game-guides__btn--primary {
    background-color: #ffc107;
    color: #333;
}

.page-game-guides__btn--primary:hover {
    background-color: #e0a800;
    color: #000;
}

.page-game-guides__btn--secondary {
    background-color: #6c757d;
    color: #fff;
}

.page-game-guides__btn--secondary:hover {
    background-color: #5a6268;
}

.page-game-guides__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-game-guides__cta-group {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-game-guides__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-game-guides__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-game-guides__faq-answer {
    font-size: 1.1em;
    color: #555;
}

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

.page-game-guides__related-guides .page-game-guides__guide-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-guides__related-guides .page-game-guides__guide-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides__related-guides .page-game-guides__guide-title a {
    text-decoration: none;
    color: inherit;
}

.page-game-guides__related-guides .page-game-guides__guide-title a:hover {
    text-decoration: underline;
}

.page-game-guides__related-guides .page-game-guides__guide-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-game-guides__final-cta {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 80px 0;
}

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

.page-game-guides__final-cta .page-game-guides__section-title::after {
    background-color: #ffc107;
}

.page-game-guides__final-cta p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides__image--right, .page-game-guides__image--left {
        float: none;
        margin: 30px auto;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-title {
        font-size: 2.2em;
    }

    .page-game-guides__hero-subtitle,
    .page-game-guides__final-cta p {
        font-size: 1em;
    }

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

    .page-game-guides__subsection-title {
        font-size: 1.4em;
    }

    .page-game-guides__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-game-guides__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-game-guides__cta-group .page-game-guides__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-game-guides__related-guides .page-game-guides__guide-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero {
        padding: 60px 0;
    }

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

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

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

    .page-game-guides__subsection-title {
        font-size: 1.2em;
    }

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

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

    .page-game-guides__image--right, .page-game-guides__image--left {
        margin: 20px auto;
        max-width: 95%;
    }
}