/* style/no-hu.css */
/* Biến CSS cho màu sắc dễ quản lý */
:root {
    --primary-color: #1A2B4C; /* Deep Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f4f7f6;
    --background-dark: #121e33; /* Slightly darker than primary for contrast */
    --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-no-hu {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Hero Section */
.page-no-hu .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3d60 100%); /* Gradient with primary color */
    color: var(--text-light);
    overflow: hidden;
}

.page-no-hu .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-no-hu .hero-image {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.page-no-hu .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-no-hu .hero-image img:hover {
    transform: scale(1.03);
}

.page-no-hu .hero-content {
    text-align: center;
    width: 100%;
}

.page-no-hu .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Gold title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.page-no-hu .hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-no-hu .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--primary-color); /* Dark blue text on gold button */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-no-hu .cta-button:hover {
    background: #ffdb4d; /* Slightly lighter gold on hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-no-hu .cta-button.secondary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-no-hu .cta-button.secondary:hover {
    background: var(--background-dark);
    color: #ffffff;
    border-color: #ffffff;
}

.page-no-hu .cta-button.small {
    padding: 10px 25px;
    font-size: 1em;
}

.page-no-hu .cta-button.large {
    padding: 22px 55px;
    font-size: 1.4em;
}

/* General Section Styling */
.page-no-hu section {
    padding: 80px 0;
    text-align: center;
}

.page-no-hu section:nth-of-type(even) {
    background-color: #e9ecef; /* Light gray for alternating sections */
}

.page-no-hu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-no-hu .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-no-hu .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-no-hu p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu .call-to-action-text {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 30px;
}

/* Game Categories Section */
.page-no-hu .game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-no-hu .game-category-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.page-no-hu .game-category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu .game-category-item .category-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-no-hu .game-category-item p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 0;
}

.page-no-hu .image-gallery {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-no-hu .image-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Advantages Grid */
.page-no-hu .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-no-hu .advantage-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-top: 5px solid var(--secondary-color);
}

.page-no-hu .advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu .advantage-item .advantage-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-no-hu .advantage-item p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Guide List */
.page-no-hu .guide-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-no-hu .guide-list li {
    background-color: #ffffff;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-no-hu .guide-list li h3 {
    font-size: 1.7em;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.page-no-hu .guide-list li h3::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
}

.page-no-hu .guide-list li p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-left: 40px; /* Align with h3 content */
}

.page-no-hu .guide-list {
    counter-reset: step-counter;
}

/* Strategy List */
.page-no-hu .strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-no-hu .strategy-list li {
    background-color: #ffffff;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.page-no-hu .strategy-list li h3 {
    font-size: 1.7em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-no-hu .strategy-list li p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Promotions Grid */
.page-no-hu .promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-no-hu .promotion-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu .promotion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-no-hu .promotion-card .promotion-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin: 20px 20px 10px 20px;
}

.page-no-hu .promotion-card .promotion-description {
    font-size: 1em;
    color: var(--text-dark);
    margin: 0 20px 20px 20px;
}

.page-no-hu .promotion-card .promo-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 20px 20px 20px;
    transition: background-color 0.3s ease;
}

.page-no-hu .promotion-card .promo-button:hover {
    background-color: #ffdb4d;
}

/* FAQ Section */
.page-no-hu .section-faq {
    background-color: var(--background-dark); /* Dark background for FAQ */
    color: var(--text-light);
}

.page-no-hu .section-faq .section-title {
    color: var(--secondary-color);
}

.page-no-hu .section-faq .section-title::after {
    background-color: var(--text-light);
}

.page-no-hu .faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #2a3d60; /* Slightly lighter dark for FAQ items */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-no-hu .faq-question:hover {
    background: var(--background-dark);
}

.page-no-hu .faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: var(--secondary-color);
}

.page-no-hu .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.page-no-hu .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    color: #e0e0e0;
    text-align: left;
}

.page-no-hu .faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    font-size: 1em;
    color: #e0e0e0;
}

.page-no-hu .faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-no-hu .faq-answer a:hover {
    text-decoration: underline;
}

.page-no-hu .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px 25px 25px;
    background: #2a3d60;
}

.page-no-hu .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Conclusion Section */
.page-no-hu .section-conclusion {
    background-color: var(--background-light);
    padding-bottom: 100px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-no-hu .hero-title {
        font-size: 2.8em;
    }
    .page-no-hu .hero-description {
        font-size: 1.1em;
    }
    .page-no-hu .section-title {
        font-size: 2em;
    }
    .page-no-hu p {
        font-size: 1em;
    }
    .page-no-hu .cta-button.large {
        padding: 18px 45px;
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-no-hu .hero-section {
        padding: 40px 15px;
    }
    .page-no-hu .hero-title {
        font-size: 2.2em;
    }
    .page-no-hu .hero-description {
        font-size: 1em;
    }
    .page-no-hu .cta-button {
        padding: 15px 35px;
        font-size: 1em;
    }
    .page-no-hu .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-no-hu section {
        padding: 60px 0;
    }
    .page-no-hu .game-categories,
    .page-no-hu .advantages-grid,
    .page-no-hu .promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu .game-category-item,
    .page-no-hu .advantage-item,
    .page-no-hu .promotion-card,
    .page-no-hu .guide-list li,
    .page-no-hu .strategy-list li {
        padding: 20px;
    }
    .page-no-hu .game-category-item .category-title,
    .page-no-hu .advantage-item .advantage-title,
    .page-no-hu .promotion-card .promotion-title,
    .page-no-hu .guide-list li h3,
    .page-no-hu .strategy-list li h3 {
        font-size: 1.4em;
    }
    .page-no-hu .guide-list li h3::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
    .page-no-hu .guide-list li p {
        margin-left: 0;
    }
    .page-no-hu .faq-question {
        padding: 15px 20px;
    }
    .page-no-hu .faq-question h3 {
        font-size: 1.1em;
    }
    .page-no-hu .faq-toggle {
        font-size: 20px;
    }
    .page-no-hu .faq-answer {
        padding: 0 20px;
    }
    .page-no-hu .faq-item.active .faq-answer {
        padding: 15px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-no-hu .hero-title {
        font-size: 1.8em;
    }
    .page-no-hu .hero-description {
        font-size: 0.9em;
    }
    .page-no-hu .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-no-hu .section-title {
        font-size: 1.5em;
    }
    .page-no-hu p {
        font-size: 0.9em;
    }
    .page-no-hu .game-category-item .category-title,
    .page-no-hu .advantage-item .advantage-title,
    .page-no-hu .promotion-card .promotion-title,
    .page-no-hu .guide-list li h3,
    .page-no-hu .strategy-list li h3 {
        font-size: 1.2em;
    }
    .page-no-hu .promo-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-no-hu .faq-question h3 {
        font-size: 1em;
    }
}