/* style/game-guides.css */

/* Biến CSS */
:root {
    --page-game-guides-primary-color: #0A2239; /* Deep Blue */
    --page-game-guides-secondary-color: #FFD700; /* Gold */
    --page-game-guides-text-light: #F8F8F8;
    --page-game-guides-text-dark: #333333;
    --page-game-guides-bg-dark: #0A2239;
    --page-game-guides-bg-light: #E0E0E0;
    --page-game-guides-accent-color: #FF6B6B; /* A complementary accent if needed */
}

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

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

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

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

.page-game-guides__hero-title {
    font-size: 3.5em;
    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.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-guides__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    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: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-game-guides__btn--primary {
    background-color: var(--page-game-guides-secondary-color);
    color: var(--page-game-guides-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.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--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: var(--page-game-guides-secondary-color);
    color: var(--page-game-guides-primary-color);
}

.page-game-guides__btn--small:hover {
    background-color: #e6c200;
}

.page-game-guides__section {
    padding: 60px 0;
    background-color: var(--page-game-guides-bg-light);
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-game-guides__section-title {
    font-size: 2.5em;
    color: var(--page-game-guides-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-guides__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-game-guides-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-guides__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px;
    color: #555;
}

.page-game-guides__content-block {
    margin-bottom: 40px;
}

.page-game-guides__content-block p,
.page-game-guides__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
}

.page-game-guides__content-block h3,
.page-game-guides__article h3 {
    font-size: 1.8em;
    color: var(--page-game-guides-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-game-guides-secondary-color);
    padding-left: 15px;
}

.page-game-guides__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-game-guides__list li {
    background-color: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid var(--page-game-guides-secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1em;
    color: #333;
}

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

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

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

.page-game-guides__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides__card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--page-game-guides-secondary-color);
}

.page-game-guides__card-title {
    font-size: 1.5em;
    color: var(--page-game-guides-primary-color);
    margin: 20px 15px 10px;
}

.page-game-guides__card-text {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-game-guides__article {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-game-guides__article-title {
    font-size: 2em;
    color: var(--page-game-guides-primary-color);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--page-game-guides-secondary-color);
    padding-bottom: 10px;
}

.page-game-guides__image--inline {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides__cta-section {
    background: linear-gradient(45deg, var(--page-game-guides-primary-color) 0%, #1a3a5a 100%);
    color: var(--page-game-guides-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-game-guides__cta-section .page-game-guides__section-title {
    color: var(--page-game-guides-secondary-color);
}

.page-game-guides__cta-section .page-game-guides__section-title::after {
    background-color: var(--page-game-guides-text-light);
}

.page-game-guides__cta-section .page-game-guides__section-intro {
    color: var(--page-game-guides-text-light);
    margin-bottom: 40px;
}

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

/* 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__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-section {
        padding: 80px 0;
    }

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

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

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

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

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

    .page-game-guides__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-game-guides__section-intro {
        margin-bottom: 40px;
    }

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

    .page-game-guides__content-block h3,
    .page-game-guides__article h3 {
        font-size: 1.5em;
    }
}

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

    .page-game-guides__hero-description {
        font-size: 0.9em;
    }

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

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

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

    .page-game-guides__content-block h3,
    .page-game-guides__article h3 {
        font-size: 1.3em;
    }

    .page-game-guides__card-title {
        font-size: 1.3em;
    }

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