/* style/game-guides.css */

/* Biến CSS */
:root {
    --page-game-guides-primary-color: #0A192F;
    --page-game-guides-secondary-color: #FFD700;
    --page-game-guides-text-light: #F8F8F8;
    --page-game-guides-text-dark: #333333;
    --page-game-guides-background-dark: #1a1a1a;
    --page-game-guides-card-background: #1e2a3a;
    --page-game-guides-border-color: #334455;
}

.page-game-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-game-guides-text-light);
    background-color: var(--page-game-guides-background-dark);
}

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

.page-game-guides__hero-section {
    background: linear-gradient(135deg, var(--page-game-guides-primary-color) 0%, #1e3a5f 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--page-game-guides-text-light);
    position: relative;
    overflow: hidden;
}

.page-game-guides__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-guides__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-game-guides-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-game-guides__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.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, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-game-guides__btn--primary {
    background-color: var(--page-game-guides-secondary-color);
    color: var(--page-game-guides-primary-color);
    border: 2px solid var(--page-game-guides-secondary-color);
}

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

.page-game-guides__btn--secondary {
    background-color: transparent;
    color: var(--page-game-guides-secondary-color);
    border: 2px solid var(--page-game-guides-secondary-color);
}

.page-game-guides__btn--secondary:hover {
    background-color: var(--page-game-guides-secondary-color);
    color: var(--page-game-guides-primary-color);
    transform: translateY(-3px);
}

.page-game-guides__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

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

.page-game-guides__content-section {
    padding: 60px 0;
    background-color: var(--page-game-guides-background-dark);
    color: var(--page-game-guides-text-light);
}

.page-game-guides__article {
    background-color: var(--page-game-guides-primary-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-game-guides__section-title {
    font-size: 2.5em;
    color: var(--page-game-guides-secondary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--page-game-guides-secondary-color);
    padding-bottom: 10px;
}

.page-game-guides__sub-section-title {
    font-size: 1.8em;
    color: var(--page-game-guides-text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-guides__article p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.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.05em;
}

.page-game-guides__list li strong {
    color: var(--page-game-guides-secondary-color);
}

.page-game-guides__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides__card {
    background-color: var(--page-game-guides-card-background);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--page-game-guides-border-color);
    transition: transform 0.3s ease;
}

.page-game-guides__card:hover {
    transform: translateY(-5px);
}

.page-game-guides__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-game-guides__card-title a {
    color: var(--page-game-guides-secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__card-title a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.page-game-guides__card-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-guides__cta-buttons {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-game-guides__faq-container {
    margin-top: 40px;
}

.page-game-guides__faq-item {
    background-color: var(--page-game-guides-card-background);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--page-game-guides-border-color);
}

.page-game-guides__faq-question {
    font-size: 1.3em;
    color: var(--page-game-guides-secondary-color);
    margin-bottom: 10px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides__hero-title {
        font-size: 2.8em;
    }
    .page-game-guides__hero-description {
        font-size: 1.1em;
    }
    .page-game-guides__section-title {
        font-size: 2em;
    }
    .page-game-guides__sub-section-title {
        font-size: 1.6em;
    }
    .page-game-guides__article {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides__hero-description {
        font-size: 1em;
    }
    .page-game-guides__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }
    .page-game-guides__section-title {
        font-size: 1.8em;
    }
    .page-game-guides__sub-section-title {
        font-size: 1.4em;
    }
    .page-game-guides__article p,
    .page-game-guides__list li,
    .page-game-guides__card-description,
    .page-game-guides__faq-answer {
        font-size: 0.95em;
    }
    .page-game-guides__card-title {
        font-size: 1.3em;
    }
    .page-game-guides__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .page-game-guides__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides__hero-description {
        font-size: 0.9em;
    }
    .page-game-guides__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-game-guides__article {
        padding: 20px;
    }
    .page-game-guides__section-title {
        font-size: 1.5em;
    }
    .page-game-guides__sub-section-title {
        font-size: 1.2em;
    }
    .page-game-guides__detail-pages-list {
        grid-template-columns: 1fr;
    }
}