/* style/games-card-games-guide.css */

/* Biến CSS */
:root {
    --page-games-card-games-guide-primary-color: #1A2C50;
    --page-games-card-games-guide-secondary-color: #FFD700;
    --page-games-card-games-guide-text-light: #F0F2F5;
    --page-games-card-games-guide-text-dark: #333333;
    --page-games-card-games-guide-background-light: #FFFFFF;
    --page-games-card-games-guide-background-dark: #2A3E60;
    --page-games-card-games-guide-border-color: #4A5C7E;
}

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

.page-games-card-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-card-games-guide__hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--page-games-card-games-guide-primary-color) 0%, #000000 100%);
    color: var(--page-games-card-games-guide-text-light);
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-games-card-games-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-games-card-games-guide__hero-section .page-games-card-games-guide__container {
    position: relative;
    z-index: 2;
}

.page-games-card-games-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-games-card-games-guide-secondary-color);
}

.page-games-card-games-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-card-games-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px;
    font-size: 1.1em;
    cursor: pointer;
}

.page-games-card-games-guide__btn--primary {
    background-color: var(--page-games-card-games-guide-secondary-color);
    color: var(--page-games-card-games-guide-primary-color);
    border: 2px solid var(--page-games-card-games-guide-secondary-color);
}

.page-games-card-games-guide__btn--primary:hover {
    background-color: transparent;
    color: var(--page-games-card-games-guide-secondary-color);
}

.page-games-card-games-guide__btn--secondary {
    background-color: var(--page-games-card-games-guide-primary-color);
    color: var(--page-games-card-games-guide-secondary-color);
    border: 2px solid var(--page-games-card-games-guide-secondary-color);
}

.page-games-card-games-guide__btn--secondary:hover {
    background-color: var(--page-games-card-games-guide-secondary-color);
    color: var(--page-games-card-games-guide-primary-color);
}

.page-games-card-games-guide__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-games-card-games-guide__section-title {
    font-size: 2.5em;
    color: var(--page-games-card-games-guide-primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-games-card-games-guide__section-title .highlight {
    color: var(--page-games-card-games-guide-secondary-color);
}

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

.page-games-card-games-guide__intro-section,
.page-games-card-games-guide__games-section,
.page-games-card-games-guide__features-section,
.page-games-card-games-guide__strategy-section,
.page-games-card-games-guide__cta-section,
.page-games-card-games-guide__faq-section {
    padding: 80px 0;
    background-color: var(--page-games-card-games-guide-background-light);
}

.page-games-card-games-guide__intro-section {
    background-color: var(--page-games-card-games-guide-background-dark);
    color: var(--page-games-card-games-guide-text-light);
}

.page-games-card-games-guide__intro-section .page-games-card-games-guide__section-title {
    color: var(--page-games-card-games-guide-text-light);
}

.page-games-card-games-guide__intro-section .page-games-card-games-guide__section-title::after {
    background-color: var(--page-games-card-games-guide-secondary-color);
}

.page-games-card-games-guide__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: inherit;
}

.page-games-card-games-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.page-games-card-games-guide__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-games-card-games-guide__image--wide {
    width: 100%;
    object-fit: cover;
    height: 400px;
}

.page-games-card-games-guide__game-card {
    display: flex;
    flex-direction: column;
    background-color: var(--page-games-card-games-guide-background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    overflow: hidden;
}

.page-games-card-games-guide__game-card:nth-child(odd) {
    background-color: var(--page-games-card-games-guide-background-light);
}

.page-games-card-games-guide__game-card:nth-child(even) {
    background-color: #f8f8f8;
}

.page-games-card-games-guide__game-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid var(--page-games-card-games-guide-border-color);
}

.page-games-card-games-guide__game-content {
    padding: 30px;
}

.page-games-card-games-guide__game-title {
    font-size: 2em;
    color: var(--page-games-card-games-guide-primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-games-card-games-guide__game-subtitle {
    font-size: 1.4em;
    color: var(--page-games-card-games-guide-secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-games-card-games-guide__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--page-games-card-games-guide-text-dark);
}

.page-games-card-games-guide__list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-games-card-games-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-games-card-games-guide__feature-item {
    background-color: var(--page-games-card-games-guide-background-dark);
    color: var(--page-games-card-games-guide-text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-games-card-games-guide__feature-item:hover {
    transform: translateY(-10px);
}

.page-games-card-games-guide__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-games-card-games-guide__feature-title {
    font-size: 1.8em;
    color: var(--page-games-card-games-guide-secondary-color);
    margin-bottom: 15px;
}

.page-games-card-games-guide__feature-description {
    font-size: 1em;
    color: var(--page-games-card-games-guide-text-light);
}

.page-games-card-games-guide__strategy-section {
    background-color: #f8f8f8;
}

.page-games-card-games-guide__strategy-list {
    list-style-type: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-games-card-games-guide__strategy-list li {
    background-color: var(--page-games-card-games-guide-background-light);
    border-left: 5px solid var(--page-games-card-games-guide-secondary-color);
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    color: var(--page-games-card-games-guide-text-dark);
    transition: all 0.3s ease;
}

.page-games-card-games-guide__strategy-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-games-card-games-guide__cta-section {
    background: linear-gradient(45deg, var(--page-games-card-games-guide-primary-color) 0%, var(--page-games-card-games-guide-background-dark) 100%);
    color: var(--page-games-card-games-guide-text-light);
    text-align: center;
    padding: 100px 0;
}

.page-games-card-games-guide__cta-section .page-games-card-games-guide__section-title {
    color: var(--page-games-card-games-guide-text-light);
}

.page-games-card-games-guide__cta-section .page-games-card-games-guide__section-title::after {
    background-color: var(--page-games-card-games-guide-secondary-color);
}

.page-games-card-games-guide__faq-section {
    background-color: var(--page-games-card-games-guide-background-light);
}

.page-games-card-games-guide__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-games-card-games-guide__faq-question {
    font-size: 1.3em;
    color: var(--page-games-card-games-guide-primary-color);
    margin-bottom: 10px;
}

.page-games-card-games-guide__faq-answer {
    font-size: 1.0em;
    color: var(--page-games-card-games-guide-text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-card-games-guide__hero-title {
        font-size: 2.8em;
    }

    .page-games-card-games-guide__hero-subtitle {
        font-size: 1.3em;
    }

    .page-games-card-games-guide__section-title {
        font-size: 2em;
    }

    .page-games-card-games-guide__game-card {
        flex-direction: column;
    }

    .page-games-card-games-guide__game-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-games-card-games-guide__hero-section {
        padding: 80px 0 60px;
    }

    .page-games-card-games-guide__hero-title {
        font-size: 2.2em;
    }

    .page-games-card-games-guide__hero-subtitle {
        font-size: 1.1em;
    }

    .page-games-card-games-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-games-card-games-guide__section-title {
        font-size: 1.8em;
    }

    .page-games-card-games-guide__intro-section,
    .page-games-card-games-guide__games-section,
    .page-games-card-games-guide__features-section,
    .page-games-card-games-guide__strategy-section,
    .page-games-card-games-guide__cta-section,
    .page-games-card-games-guide__faq-section {
        padding: 60px 0;
    }

    .page-games-card-games-guide__game-content {
        padding: 20px;
    }

    .page-games-card-games-guide__game-title {
        font-size: 1.8em;
    }

    .page-games-card-games-guide__game-subtitle {
        font-size: 1.2em;
    }

    .page-games-card-games-guide__list {
        margin-left: 20px;
    }

    .page-games-card-games-guide__features-grid {
        grid-template-columns: 1fr;
    }

    .page-games-card-games-guide__feature-icon {
        width: 60px;
        height: 60px;
    }

    .page-games-card-games-guide__feature-title {
        font-size: 1.5em;
    }

    .page-games-card-games-guide__strategy-list li {
        font-size: 0.95em;
        padding: 15px 20px;
    }

    .page-games-card-games-guide__image--wide {
        height: 250px;
    }

    .page-games-card-games-guide__faq-question {
        font-size: 1.1em;
    }

    .page-games-card-games-guide__faq-answer {
        font-size: 0.9em;
    }
}

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

    .page-games-card-games-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-games-card-games-guide__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }

    .page-games-card-games-guide__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-games-card-games-guide__section-title {
        font-size: 1.5em;
    }

    .page-games-card-games-guide__text-block {
        font-size: 0.95em;
    }

    .page-games-card-games-guide__game-title {
        font-size: 1.5em;
    }

    .page-games-card-games-guide__game-subtitle {
        font-size: 1.1em;
    }

    .page-games-card-games-guide__game-image {
        height: 200px;
    }

    .page-games-card-games-guide__feature-title {
        font-size: 1.3em;
    }

    .page-games-card-games-guide__image--wide {
        height: 200px;
    }
}