/* style/game-guides.css */
.page-game-guides {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark backgrounds */
    background-color: #1A202C; /* Auxiliary color as main background */
    line-height: 1.6;
}

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

.page-game-guides__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-guides__section:nth-of-type(even) {
    background-color: #2A303C; /* Slightly lighter dark background for contrast */
}

.page-game-guides__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Main color for titles */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides__section-description,
.page-game-guides__sub-title {
    font-size: 1.2em;
    color: #B0B0B0; /* Slightly darker grey for descriptions */
    margin-bottom: 30px;
}

.page-game-guides__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3A404C 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

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

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

.page-game-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-guides__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
}

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

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

.page-game-guides__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

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

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

.page-game-guides__feature-item {
    background-color: #2A303C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.page-game-guides__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

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

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

.page-game-guides__game-card {
    background-color: #2A303C;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.page-game-guides__game-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-game-guides__game-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-game-guides__game-card-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    min-height: 50px;
}

.page-game-guides__game-card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__game-card-title a:hover {
    color: #E6C200;
}

.page-game-guides__game-card-description {
    font-size: 0.95em;
    color: #C0C0C0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-guides__community-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.page-game-guides__community-text {
    flex: 1;
    min-width: 300px;
}

.page-game-guides__community-img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-game-guides__sub-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 25px;
    margin-bottom: 15px;
    text-align: left;
}

.page-game-guides__responsibility-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 800px;
    text-align: left;
}

.page-game-guides__responsibility-list li {
    background-color: #2A303C;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-game-guides__list-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-game-guides__responsibility-note {
    margin-top: 30px;
    font-style: italic;
    color: #B0B0B0;
}

.page-game-guides__faq-item {
    background-color: #2A303C;
    margin: 20px auto;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    text-align: left;
}

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

.page-game-guides__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
}

.page-game-guides__cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: linear-gradient(90deg, #FFD700 0%, #E6C200 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    color: #1A202C;
    text-align: left;
}

.page-game-guides__cta-img {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides__cta-text {
    flex: 2;
    min-width: 300px;
}

.page-game-guides__cta-text .page-game-guides__section-title {
    color: #1A202C;
    text-shadow: none;
}

.page-game-guides__cta-text .page-game-guides__section-description {
    color: #3A404C;
    margin-bottom: 30px;
}

.page-game-guides__cta-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.page-game-guides__cta-actions .page-game-guides__btn--primary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #1A202C;
}

.page-game-guides__cta-actions .page-game-guides__btn--primary:hover {
    background-color: #3A404C;
    color: #FFD700;
}

.page-game-guides__cta-actions .page-game-guides__btn--secondary {
    background-color: transparent;
    color: #1A202C;
    border: 2px solid #1A202C;
}

.page-game-guides__cta-actions .page-game-guides__btn--secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
}

.page-game-guides .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-guides__hero-title {
        font-size: 3em;
    }

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

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

    .page-game-guides__community-content, .page-game-guides__cta-content {
        flex-direction: column;
        text-align: center;
    }

    .page-game-guides__community-text, .page-game-guides__cta-text {
        text-align: center;
    }

    .page-game-guides__community-img, .page-game-guides__cta-img {
        max-width: 100%;
    }

    .page-game-guides__cta-actions {
        justify-content: center;
    }
}

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

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

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

    .page-game-guides__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-game-guides__features, .page-game-guides__game-grid {
        grid-template-columns: 1fr;
    }

    .page-game-guides__game-card-img {
        height: 180px;
    }

    .page-game-guides__cta-content {
        padding: 30px;
    }

    .page-game-guides__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
}

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

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

    .page-game-guides__btn {
        width: 90%;
    }

    .page-game-guides__faq-question {
        font-size: 1.2em;
    }
    .page-game-guides__section {
        padding: 40px 0;
    }
}