:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần lặp lại */
.page-no-hu {
    background-color: var(--page-bg);
    color: var(--text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-no-hu__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Chỉ một khoảng đệm nhỏ, body đã xử lý --header-offset */
    background: var(--deep-green);
    text-align: center;
}

.page-no-hu__hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

.page-no-hu__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-no-hu__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-no-hu__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Kích thước H1 linh hoạt */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Hiệu ứng phát sáng */
}

.page-no-hu__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-no-hu__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Cho phép các nút xuống dòng trên màn hình nhỏ */
}

.page-no-hu__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Đảm bảo nút không tràn */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
}

.page-no-hu__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

.page-no-hu__btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-no-hu__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--page-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* Các phần nội dung chung */
.page-no-hu__section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--page-bg);
    border-bottom: 1px solid var(--divider-color);
}

.page-no-hu__section:last-of-type {
    border-bottom: none;
}

.page-no-hu__title-h2 {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-no-hu__title-h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-no-hu__title-h4 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-no-hu__paragraph {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.page-no-hu__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-no-hu__list-item {
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-no-hu__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.1em;
}

/* Kiểu ảnh cụ thể */
.page-no-hu__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Đảm bảo ảnh không tràn */
    object-fit: cover;
}

/* Thẻ cho trưng bày game */
.page-no-hu__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-no-hu__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(87, 227, 141, 0.2);
}

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

.page-no-hu__game-card-content {
    padding: 20px;
}

.page-no-hu__game-card-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-no-hu__game-card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Phần Câu hỏi thường gặp (FAQ) */
.page-no-hu__faq-list {
    margin-top: 30px;
}

.page-no-hu__faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-no-hu__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-no-hu__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-no-hu__faq-item summary:hover {
    background-color: var(--deep-green);
}

.page-no-hu__faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 10px;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    content: '−';
}

.page-no-hu__faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Phần Video */
.page-no-hu__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Chỉ một khoảng đệm nhỏ, body đã xử lý --header-offset */
    background: var(--deep-green);
    text-align: center;
}

.page-no-hu__video-container {
    position: relative;
    padding-bottom: 56.25%; /* Tỷ lệ 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%; /* Quan trọng cho desktop */
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer; /* Cho biết có thể nhấp */
}

.page-no-hu__video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Điều chỉnh phản hồi */
@media (max-width: 1024px) {
    .page-no-hu__hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-no-hu__title-h2 {
        font-size: 2rem;
    }
    .page-no-hu__title-h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-no-hu__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Đảm bảo khoảng đệm trên nhỏ */
    }

    .page-no-hu__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-no-hu__hero-description {
        font-size: 1rem;
    }

    .page-no-hu__cta-buttons {
        flex-direction: column; /* Xếp chồng các nút theo chiều dọc */
        gap: 15px;
    }

    .page-no-hu__btn {
        width: 100% !important; /* Chiều rộng đầy đủ cho các nút */
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
    
    .page-no-hu__section {
        padding: 30px 15px;
    }

    .page-no-hu__title-h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-no-hu__title-h3 {
        font-size: 1.4rem;
    }

    .page-no-hu__paragraph,
    .page-no-hu__list-item,
    .page-no-hu__game-card-description,
    .page-no-hu__faq-answer {
        font-size: 0.95rem;
    }

    .page-no-hu__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-no-hu__game-card-image {
        height: 180px;
    }

    /* Phản hồi hình ảnh */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Phản hồi vùng chứa hình ảnh */
    .page-no-hu__hero-image-container,
    .page-no-hu__image-container,
    .page-no-hu__game-card,
    .page-no-hu__section,
    .page-no-hu__card,
    .page-no-hu__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }

    /* Phản hồi video */
    .page-no-hu video,
    .page-no-hu__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Phản hồi vùng chứa video */
    .page-no-hu__video-section,
    .page-no-hu__video-container,
    .page-no-hu__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    /* Khoảng đệm trên cụ thể của phần video */
    .page-no-hu__video-section {
        padding-top: 10px !important;
    }
}