/* style/resources-nhatvip-game-strategy.css */

/* Variables for color scheme */
:root {
    --page-nhatvip-primary-color: #1A2E44;
    --page-nhatvip-secondary-color: #FFD700;
    --page-nhatvip-text-dark: #1A2E44; /* Dark text for light backgrounds */
    --page-nhatvip-text-light: #FFFFFF; /* Light text for dark backgrounds */
    --page-nhatvip-background-light: #F8F9FA;
    --page-nhatvip-background-dark: #0D1B2A;
    --page-nhatvip-accent-color: #E5D1BB; /* Complementary to primary */
    --page-nhatvip-link-color: #FFD700;
    --page-nhatvip-link-hover-color: #CCAA00;
}

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

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

.page-resources-nhatvip-game-strategy__section {
    padding: 60px 0;
}

.page-resources-nhatvip-game-strategy__section:nth-of-type(even) {
    background-color: var(--page-nhatvip-background-dark);
    color: var(--page-nhatvip-text-light);
}

.page-resources-nhatvip-game-strategy__section:nth-of-type(even) .page-resources-nhatvip-game-strategy__section-title,
.page-resources-nhatvip-game-strategy__section:nth-of-type(even) .page-resources-nhatvip-game-strategy__description,
.page-resources-nhatvip-game-strategy__section:nth-of-type(even) .page-resources-nhatvip-game-strategy__game-card-title,
.page-resources-nhatvip-game-strategy__section:nth-of-type(even) .page-resources-nhatvip-game-strategy__game-card-text,
.page-resources-nhatvip-game-strategy__section:nth-of-type(even) .page-resources-nhatvip-game-strategy__article-title,
.page-resources-nhatvip-game-strategy__section:nth-of-type(even) p,
.page-resources-nhatvip-game-strategy__section:nth-of-type(even) ul,
.page-resources-nhatvip-game-strategy__section:nth-of-type(even) li,
.page-resources-nhatvip-game-strategy__section:nth-of-type(even) h4 {
    color: var(--page-nhatvip-text-light);
}

.page-resources-nhatvip-game-strategy__section:nth-of-type(even) .page-resources-nhatvip-game-strategy__btn--inline {
    color: var(--page-nhatvip-secondary-color);
}

.page-resources-nhatvip-game-strategy__section-title {
    font-size: 2.5em;
    color: var(--page-nhatvip-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-nhatvip-game-strategy__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--page-nhatvip-text-dark);
}

/* Hero Section */
.page-resources-nhatvip-game-strategy__hero-section {
    background: linear-gradient(135deg, var(--page-nhatvip-primary-color) 0%, #3A5F7D 100%);
    color: var(--page-nhatvip-text-light);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-resources-nhatvip-game-strategy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-nhatvip-game-strategy__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-nhatvip-secondary-color);
}

.page-resources-nhatvip-game-strategy__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.page-resources-nhatvip-game-strategy__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;
    white-space: nowrap;
}

.page-resources-nhatvip-game-strategy__btn--primary {
    background-color: var(--page-nhatvip-secondary-color);
    color: var(--page-nhatvip-primary-color);
    border: 2px solid var(--page-nhatvip-secondary-color);
}

.page-resources-nhatvip-game-strategy__btn--primary:hover {
    background-color: var(--page-nhatvip-link-hover-color);
    border-color: var(--page-nhatvip-link-hover-color);
    transform: translateY(-3px);
}

.page-resources-nhatvip-game-strategy__btn--secondary {
    background-color: transparent;
    color: var(--page-nhatvip-secondary-color);
    border: 2px solid var(--page-nhatvip-secondary-color);
}

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

.page-resources-nhatvip-game-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-resources-nhatvip-game-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* About NHATVIP Section */
.page-resources-nhatvip-game-strategy__about-nhatvip .page-resources-nhatvip-game-strategy__section-title {
    color: var(--page-nhatvip-primary-color);
}

.page-resources-nhatvip-game-strategy__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.page-resources-nhatvip-game-strategy__text-content {
    flex: 1;
}

.page-resources-nhatvip-game-strategy__text-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: var(--page-nhatvip-text-dark);
}

.page-resources-nhatvip-game-strategy__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-resources-nhatvip-game-strategy__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-nhatvip-game-strategy__btn--inline {
    color: var(--page-nhatvip-primary-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--page-nhatvip-primary-color);
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-resources-nhatvip-game-strategy__btn--inline:hover {
    color: var(--page-nhatvip-secondary-color);
    border-color: var(--page-nhatvip-secondary-color);
}

/* Game Types Section */
.page-resources-nhatvip-game-strategy__game-types {
    background-color: var(--page-nhatvip-background-dark);
    color: var(--page-nhatvip-text-light);
}

.page-resources-nhatvip-game-strategy__game-types .page-resources-nhatvip-game-strategy__section-title,
.page-resources-nhatvip-game-strategy__game-types .page-resources-nhatvip-game-strategy__description {
    color: var(--page-nhatvip-text-light);
}

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

.page-resources-nhatvip-game-strategy__game-card {
    background-color: #2A4058; /* Slightly lighter dark background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-nhatvip-game-strategy__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-nhatvip-game-strategy__game-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-nhatvip-game-strategy__game-card-title {
    font-size: 1.8em;
    color: var(--page-nhatvip-secondary-color);
    margin-bottom: 15px;
}

.page-resources-nhatvip-game-strategy__game-card-text {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-resources-nhatvip-game-strategy__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

/* Detailed Strategies Section */
.page-resources-nhatvip-game-strategy__detailed-strategies .page-resources-nhatvip-game-strategy__section-title {
    color: var(--page-nhatvip-primary-color);
}

.page-resources-nhatvip-game-strategy__strategy-article {
    background-color: var(--page-nhatvip-background-light);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--page-nhatvip-text-dark);
}

.page-resources-nhatvip-game-strategy__strategy-article:nth-of-type(even) {
    background-color: #f0f4f7;
}

.page-resources-nhatvip-game-strategy__strategy-article .page-resources-nhatvip-game-strategy__article-title {
    font-size: 2em;
    color: var(--page-nhatvip-primary-color);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--page-nhatvip-secondary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.page-resources-nhatvip-game-strategy__strategy-article p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05em;
}

.page-resources-nhatvip-game-strategy__strategy-article h4 {
    font-size: 1.4em;
    color: var(--page-nhatvip-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-nhatvip-game-strategy__strategy-article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-resources-nhatvip-game-strategy__strategy-article ul li {
    margin-bottom: 10px;
    font-size: 1.0em;
}

.page-resources-nhatvip-game-strategy__strategy-article strong {
    color: var(--page-nhatvip-primary-color);
}

.page-resources-nhatvip-game-strategy__article-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-resources-nhatvip-game-strategy__cta-section {
    background: linear-gradient(90deg, var(--page-nhatvip-primary-color) 0%, #3A5F7D 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--page-nhatvip-text-light);
}

.page-resources-nhatvip-game-strategy__cta-content .page-resources-nhatvip-game-strategy__section-title,
.page-resources-nhatvip-game-strategy__cta-content .page-resources-nhatvip-game-strategy__description {
    color: var(--page-nhatvip-text-light);
}

.page-resources-nhatvip-game-strategy__cta-content .page-resources-nhatvip-game-strategy__section-title {
    color: var(--page-nhatvip-secondary-color);
}

.page-resources-nhatvip-game-strategy__cta-content .page-resources-nhatvip-game-strategy__description {
    max-width: 700px;
    margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-nhatvip-game-strategy__main-title {
        font-size: 2.8em;
    }
    .page-resources-nhatvip-game-strategy__subtitle {
        font-size: 1.2em;
    }
    .page-resources-nhatvip-game-strategy__section-title {
        font-size: 2em;
    }
    .page-resources-nhatvip-game-strategy__content-grid {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-nhatvip-game-strategy__text-content {
        order: 2;
    }
    .page-resources-nhatvip-game-strategy__image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-resources-nhatvip-game-strategy__hero-section {
        padding: 80px 0;
    }
    .page-resources-nhatvip-game-strategy__main-title {
        font-size: 2.2em;
    }
    .page-resources-nhatvip-game-strategy__subtitle {
        font-size: 1em;
    }
    .page-resources-nhatvip-game-strategy__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-nhatvip-game-strategy__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-resources-nhatvip-game-strategy__section {
        padding: 40px 0;
    }
    .page-resources-nhatvip-game-strategy__game-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-nhatvip-game-strategy__strategy-article {
        padding: 30px;
    }
    .page-resources-nhatvip-game-strategy__strategy-article .page-resources-nhatvip-game-strategy__article-title {
        font-size: 1.8em;
    }
    .page-resources-nhatvip-game-strategy__cta-section {
        padding: 60px 0;
    }
    .page-resources-nhatvip-game-strategy__btn--large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-resources-nhatvip-game-strategy__main-title {
        font-size: 1.8em;
    }
    .page-resources-nhatvip-game-strategy__section-title {
        font-size: 1.7em;
    }
    .page-resources-nhatvip-game-strategy__description {
        font-size: 0.95em;
    }
    .page-resources-nhatvip-game-strategy__game-card-title {
        font-size: 1.5em;
    }
    .page-resources-nhatvip-game-strategy__strategy-article .page-resources-nhatvip-game-strategy__article-title {
        font-size: 1.5em;
    }
    .page-resources-nhatvip-game-strategy__strategy-article h4 {
        font-size: 1.2em;
    }
}