/* style/no-hu.css */

/* Biến CSS cho màu sắc */
:root {
    --primary-color: #FFD700; /* Vàng */
    --secondary-color: #8B0000; /* Đỏ sẫm */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-light: #f5f5f5;
    --border-color: #e0e0e0;
}

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

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

.page-no-hu-section {
    padding: 60px 0;
    text-align: center;
}

.page-no-hu-section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-no-hu h1,
.page-no-hu h2,
.page-no-hu h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-no-hu h1 {
    font-size: 3em;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu h2 {
    font-size: 2.5em;
    margin-top: 20px;
    color: var(--secondary-color);
}

.page-no-hu h3 {
    font-size: 1.8em;
    color: var(--primary-color);
}

.page-no-hu p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-no-hu a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-no-hu a:hover {
    color: var(--primary-color);
}

/* 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: 80px 20px 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%); /* Darker red gradient for hero bg */
}

.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;
}

.page-no-hu-hero-image {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px 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;
}

.page-no-hu-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-light);
}

.page-no-hu-hero-content p {
    color: var(--text-light);
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-no-hu-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu-cta-button:hover {
    background: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-no-hu-intro p,
.page-no-hu-game-variety p,
.page-no-hu-benefits p,
.page-no-hu-how-to-play p,
.page-no-hu-promotions p,
.page-no-hu-security-support p,
.page-no-hu-faq p {
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-no-hu-content-wrapper.reverse {
    flex-direction: row-reverse;
}

.page-no-hu-text-content {
    flex: 1;
    min-width: 300px;
}

.page-no-hu-image-box {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-no-hu-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-no-hu ul,
.page-no-hu ol {
    list-style-position: inside;
    text-align: left;
    max-width: 900px;
    margin: 20px auto;
    padding-left: 20px;
}

.page-no-hu ul li,
.page-no-hu ol li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-no-hu ol li strong {
    color: var(--secondary-color);
}

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

.page-no-hu-promo-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu-promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-no-hu-promo-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

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

.page-no-hu-button:hover {
    background: #e6c200;
    color: var(--text-light);
    transform: translateY(-2px);
}

.page-no-hu-note {
    font-size: 0.95em;
    color: #666;
    margin-top: 30px;
}

/* FAQ Section */
.page-no-hu-faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.faq-question:hover {
    background-color: #e6c200;
    color: var(--text-dark);
}

.faq-question:hover h3 {
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--text-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 20px;
    background: var(--bg-light);
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.5;
}

/* Final CTA Section */
.page-no-hu-cta-final {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 80px 20px;
}

.page-no-hu-cta-final h2 {
    color: var(--text-light);
    font-size: 2.8em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-no-hu-cta-final p {
    color: var(--text-light);
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto 40px;
}

.page-no-hu-cta-final .page-no-hu-cta-button {
    background: var(--text-light);
    color: var(--secondary-color);
}

.page-no-hu-cta-final .page-no-hu-cta-button:hover {
    background: #cccccc;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-no-hu h1 {
        font-size: 2.5em;
    }
    .page-no-hu h2 {
        font-size: 2em;
    }
    .page-no-hu h3 {
        font-size: 1.5em;
    }
    .page-no-hu p {
        font-size: 1em;
    }
    .page-no-hu-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-no-hu-content-wrapper.reverse {
        flex-direction: column;
    }
    .page-no-hu-text-content,
    .page-no-hu-image-box {
        width: 100%;
        min-width: unset;
    }
    .page-no-hu ul, .page-no-hu ol {
        padding-left: 0;
        text-align: center;
    }
    .page-no-hu ul li, .page-no-hu ol li {
        text-align: center;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .page-no-hu-section {
        padding: 40px 0;
    }
    .page-no-hu h1 {
        font-size: 2em;
    }
    .page-no-hu h2 {
        font-size: 1.8em;
    }
    .page-no-hu-hero-section {
        padding: 60px 15px 30px;
    }
    .page-no-hu-hero-image {
        margin-bottom: 20px;
    }
    .page-no-hu-hero-content p {
        font-size: 1em;
    }
    .page-no-hu-cta-button {
        padding: 12px 30px;
        font-size: 1em;
        margin-top: 20px;
    }
    .page-no-hu-promo-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 15px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 15px;
    }
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    .page-no-hu-cta-final h2 {
        font-size: 2.2em;
    }
    .page-no-hu-cta-final p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-no-hu h1 {
        font-size: 1.8em;
    }
    .page-no-hu h2 {
        font-size: 1.5em;
    }
    .page-no-hu-hero-section {
        padding: 40px 10px 20px;
    }
    .page-no-hu-cta-final h2 {
        font-size: 1.8em;
    }
}