/* Base Styles for page-no-hu */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: var(--text-main, #F3F8FF); /* Default text color for the page */
    background-color: var(--color-deep-navy, #08162B); /* Body background from shared.css */
    line-height: 1.6;
}

.page-no-hu__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

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

.page-no-hu__section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main, #F3F8FF);
    line-height: 1.2;
}

.page-no-hu__section-description,
.page-no-hu__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-secondary, #AFC4E8);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__highlight {
    color: var(--color-gold, #F2C14E);
    font-weight: 600;
}

.page-no-hu__list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
}

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

.page-no-hu__list-item::before {
    content: '✓';
    color: var(--color-gold, #F2C14E);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-no-hu__text-center {
    text-align: center;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button doesn't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.page-no-hu__btn-secondary:hover {
    background: var(--color-gold, #F2C14E);
    color: var(--color-deep-navy, #08162B);
    transform: translateY(-2px);
}

.page-no-hu__btn-play {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}

.page-no-hu__btn-play:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-1px);
}

.page-no-hu__btn-large {
    padding: 16px 40px;
    font-size: 20px;
}

/* Hero Section */
.page-no-hu__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--color-deep-navy, #08162B);
}

.page-no-hu__hero-image-wrap {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.page-no-hu__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Desktop: cover to fill space */
    max-height: 600px;
    border-radius: 10px;
}

.page-no-hu__hero-content-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-no-hu__hero-title {
    font-size: clamp(32px, 4.5vw, 56px); /* Responsive font size */
    font-weight: 800;
    color: var(--text-main, #F3F8FF);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-no-hu__hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary, #AFC4E8);
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-no-hu__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Intro Section */
.page-no-hu__intro-section {
    background-color: var(--color-card-bg, #10233F);
}

.page-no-hu__content-wrapper {
    text-align: left;
}

/* Games Section */
.page-no-hu__games-section {
    background-color: var(--color-deep-navy, #08162B);
}

.page-no-hu__games-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(--color-card-bg, #10233F);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-border, #244D84);
}

.page-no-hu__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    display: block;
}

.page-no-hu__game-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main, #F3F8FF);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-no-hu__game-description {
    font-size: 15px;
    color: var(--text-secondary, #AFC4E8);
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Tips Section */
.page-no-hu__tips-section {
    background-color: var(--color-card-bg, #10233F);
}

.page-no-hu__flex-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

.page-no-hu__tips-content {
    flex: 2;
}

.page-no-hu__tips-image-wrap {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-no-hu__tips-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Guide Section */
.page-no-hu__guide-section {
    background-color: var(--color-deep-navy, #08162B);
}

.page-no-hu__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__step-card {
    background-color: var(--color-card-bg, #10233F);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border, #244D84);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.page-no-hu__step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold, #F2C14E);
    margin-bottom: 15px;
}

.page-no-hu__step-description {
    font-size: 16px;
    color: var(--text-secondary, #AFC4E8);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Promotion Section */
.page-no-hu__promo-section {
    background-color: var(--color-card-bg, #10233F);
}

.page-no-hu__promo-container {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-no-hu__promo-content {
    flex: 1;
}

.page-no-hu__promo-image-wrap {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-no-hu__promo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-no-hu__why-choose-section {
    background-color: var(--color-deep-navy, #08162B);
}

.page-no-hu__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__feature-card {
    background-color: var(--color-card-bg, #10233F);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border, #244D84);
    text-align: center;
}

.page-no-hu__feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main, #F3F8FF);
    margin-bottom: 15px;
}

.page-no-hu__feature-description {
    font-size: 16px;
    color: var(--text-secondary, #AFC4E8);
}

/* FAQ Section */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--color-border, #244D84);
  overflow: hidden;
  background: var(--color-card-bg, #10233F);
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question:hover {
  background: rgba(16, 35, 63, 0.8); /* Using explicit rgba for hover */
}
.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main, #F3F8FF);
}
.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-gold, #F2C14E);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 20px 20px;
  background: rgba(16, 35, 63, 0.6); /* Using explicit rgba */
  border-radius: 0 0 5px 5px;
  color: var(--text-secondary, #AFC4E8);
  text-align: left;
}

.page-no-hu__cta-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Final CTA Section */
.page-no-hu__final-cta-section {
    padding: 80px 0;
    background-color: var(--color-deep-navy, #08162B);
}

.page-no-hu__final-cta-section .page-no-hu__section-title {
    font-size: 42px;
    margin-bottom: 25px;
}

.page-no-hu__final-cta-section .page-no-hu__paragraph {
    font-size: 18px;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-no-hu__copyright-text {
    margin-top: 50px;
    font-size: 14px;
    color: var(--text-secondary, #AFC4E8);
}

/* General image styling to prevent small icons */
.page-no-hu img {
    min-width: 200px;
    min-height: 200px;
    object-fit: contain; /* Default for general images */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu__section-title {
        font-size: 34px;
    }
    .page-no-hu__hero-title {
        font-size: clamp(30px, 4vw, 48px);
    }
    .page-no-hu__hero-description {
        font-size: clamp(15px, 1.8vw, 18px);
    }
    .page-no-hu__flex-layout {
        flex-direction: column;
        align-items: center;
    }
    .page-no-hu__tips-image-wrap,
    .page-no-hu__promo-image-wrap {
        order: -1; /* Image above content on smaller screens */
    }
    .page-no-hu__promo-container {
        flex-direction: column;
    }
    .page-no-hu__final-cta-section .page-no-hu__section-title {
        font-size: 38px;
    }
    .page-no-hu__game-card .page-no-hu__btn-play {
        width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-no-hu__hero-section {
        padding-top: 10px; /* Small top padding, body handles header offset */
        padding-bottom: 40px;
    }
    .page-no-hu__hero-image {
        object-fit: contain !important; /* Mobile: contain to show full image */
        aspect-ratio: unset; /* Remove fixed aspect ratio if any */
        max-height: 400px;
        min-width: 200px !important; /* Enforce min size */
        min-height: 200px !important;
    }
    .page-no-hu__hero-title {
        font-size: clamp(28px, 8vw, 40px);
    }
    .page-no-hu__hero-description {
        font-size: clamp(14px, 4vw, 16px);
    }
    .page-no-hu__hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
    }
    .page-no-hu__hero-buttons a {
        width: 100% !important;
    }

    /* 通用图片与容器 */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-no-hu__container,
    .page-no-hu__section,
    .page-no-hu__game-card,
    .page-no-hu__step-card,
    .page-no-hu__feature-card,
    .page-no-hu__promo-container,
    .page-no-hu__content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 产品展示图区域 (Games Grid) */
    .page-no-hu__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    .page-no-hu__game-image {
        height: 200px; /* Maintain height for single column */
        min-width: 200px !important; /* Enforce min size */
        min-height: 200px !important;
    }
    .page-no-hu__game-title {
        font-size: 20px;
    }
    .page-no-hu__game-description {
        font-size: 14px;
    }

    /* 装饰主标题 + 长文 SEO 区 */
    .page-no-hu__section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .page-no-hu__section-description,
    .page-no-hu__paragraph,
    .page-no-hu__list-item {
        font-size: 15px;
    }
    .page-no-hu__content-wrapper {
        text-align: left;
    }
    .page-no-hu__flex-layout {
        flex-direction: column;
        gap: 20px;
    }}