/* style/index-nhatvip-game-portfolio.css */
.page-index-nhatvip-game-portfolio {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #000000;
    line-height: 1.6;
}

.page-index-nhatvip-game-portfolio .highlight {
    color: #FFD700;
}

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

/* Hero Section */
.page-index-nhatvip-game-portfolio__hero-section {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-index-nhatvip-game-portfolio__hero-content {
    max-width: 800px;
    z-index: 1;
    margin-bottom: 30px;
}

.page-index-nhatvip-game-portfolio__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-index-nhatvip-game-portfolio__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-index-nhatvip-game-portfolio__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.page-index-nhatvip-game-portfolio__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

/* General Section Styling */
.page-index-nhatvip-game-portfolio__section {
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.page-index-nhatvip-game-portfolio__section:last-of-type {
    border-bottom: none;
}

.page-index-nhatvip-game-portfolio__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-nhatvip-game-portfolio__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-nhatvip-game-portfolio__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-nhatvip-game-portfolio__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-index-nhatvip-game-portfolio__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-nhatvip-game-portfolio__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.98"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left 8px;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #E0E0E0;
}

/* Game Category Sections */
.page-index-nhatvip-game-portfolio__section--game-category .page-index-nhatvip-game-portfolio__container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-index-nhatvip-game-portfolio__section--game-category .page-index-nhatvip-game-portfolio__container--reverse {
    flex-direction: row-reverse;
}

.page-index-nhatvip-game-portfolio__content-wrapper,
.page-index-nhatvip-game-portfolio__image-wrapper {
    flex: 1;
}

.page-index-nhatvip-game-portfolio__category-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-nhatvip-game-portfolio__category-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
}

.page-index-nhatvip-game-portfolio__image-wrapper--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-index-nhatvip-game-portfolio__category-image--half {
    height: 250px;
    object-fit: cover;
}

/* Why Choose Section */
.page-index-nhatvip-game-portfolio__section--why-choose {
    background-color: #0A0A0A;
    text-align: center;
}

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

.page-index-nhatvip-game-portfolio__feature-item {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-nhatvip-game-portfolio__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index-nhatvip-game-portfolio__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #FFD700);
}

.page-index-nhatvip-game-portfolio__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-nhatvip-game-portfolio__feature-description {
    font-size: 1em;
    color: #B0B0B0;
}

/* Call to Action Section */
.page-index-nhatvip-game-portfolio__cta-section {
    background: linear-gradient(90deg, #000000, #333333);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-index-nhatvip-game-portfolio__cta-title {
    font-size: 3em;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.page-index-nhatvip-game-portfolio__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-index-nhatvip-game-portfolio__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-index-nhatvip-game-portfolio__btn--primary {
    background-color: #FFD700;
    color: #000000;
}

.page-index-nhatvip-game-portfolio__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.page-index-nhatvip-game-portfolio__btn--secondary {
    background-color: #333333;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-nhatvip-game-portfolio__btn--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-nhatvip-game-portfolio__main-title {
        font-size: 2.8em;
    }
    .page-index-nhatvip-game-portfolio__hero-description,
    .page-index-nhatvip-game-portfolio__text-content {
        font-size: 1em;
    }
    .page-index-nhatvip-game-portfolio__section-title {
        font-size: 2em;
    }
    .page-index-nhatvip-game-portfolio__sub-title {
        font-size: 1.5em;
    }
    .page-index-nhatvip-game-portfolio__section--game-category .page-index-nhatvip-game-portfolio__container {
        flex-direction: column;
        text-align: center;
    }
    .page-index-nhatvip-game-portfolio__section--game-category .page-index-nhatvip-game-portfolio__container--reverse {
        flex-direction: column;
    }
    .page-index-nhatvip-game-portfolio__image-wrapper--grid {
        grid-template-columns: 1fr;
    }
    .page-index-nhatvip-game-portfolio__category-image--half {
        height: auto;
    }
    .page-index-nhatvip-game-portfolio__cta-title {
        font-size: 2.5em;
    }
    .page-index-nhatvip-game-portfolio__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-nhatvip-game-portfolio__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-index-nhatvip-game-portfolio__hero-section {
        padding: 60px 0;
    }
    .page-index-nhatvip-game-portfolio__main-title {
        font-size: 2.2em;
    }
    .page-index-nhatvip-game-portfolio__hero-description {
        font-size: 0.9em;
    }
    .page-index-nhatvip-game-portfolio__section {
        padding: 40px 0;
    }
    .page-index-nhatvip-game-portfolio__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-nhatvip-game-portfolio__sub-title {
        font-size: 1.3em;
    }
    .page-index-nhatvip-game-portfolio__feature-item {
        padding: 25px;
    }
    .page-index-nhatvip-game-portfolio__cta-section {
        padding: 60px 0;
    }
    .page-index-nhatvip-game-portfolio__cta-title {
        font-size: 2em;
    }
    .page-index-nhatvip-game-portfolio__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-nhatvip-game-portfolio__main-title {
        font-size: 1.8em;
    }
    .page-index-nhatvip-game-portfolio__hero-description {
        font-size: 0.85em;
    }
    .page-index-nhatvip-game-portfolio__section-title {
        font-size: 1.5em;
    }
    .page-index-nhatvip-game-portfolio__sub-title {
        font-size: 1.2em;
    }
    .page-index-nhatvip-game-portfolio__list li {
        font-size: 0.9em;
    }
    .page-index-nhatvip-game-portfolio__cta-title {
        font-size: 1.8em;
    }
    .page-index-nhatvip-game-portfolio__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}