:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-color: #C30808;
    --login-color: #C30808;
    --background-color: #FFFFFF;
    --register-login-font-color: #FFFF00;
    --text-color-dark-bg: #FFFFFF;
    --text-color-light-bg: #333333;
    --border-color: #e0e0e0;
}

.page-no-hu-game-hot {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-light-bg); /* Default text color for light body background */
    line-height: 1.6;
    background-color: var(--background-color);
}

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

/* Hero Section */
.page-no-hu-game-hot__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden; /* Ensure no overflow issues */
}

.page-no-hu-game-hot__hero-image {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-no-hu-game-hot__hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Default for desktop */
    display: block;
}

.page-no-hu-game-hot__hero-content {
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-no-hu-game-hot__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.page-no-hu-game-hot__description {
    font-size: 1.2em;
    color: var(--text-color-light-bg);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-no-hu-game-hot__btn-primary,
.page-no-hu-game-hot__btn-secondary,
.page-no-hu-game-hot__btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu-game-hot__btn-primary {
    background-color: var(--register-color); /* Using register color for primary action */
    color: var(--register-login-font-color); /* Using register/login font color */
    border: 2px solid var(--register-color);
}

.page-no-hu-game-hot__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

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

.page-no-hu-game-hot__btn-secondary:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.page-no-hu-game-hot__btn-tertiary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-no-hu-game-hot__btn-tertiary:hover {
    background-color: #005a2e;
    border-color: #005a2e;
}

/* General Section Styling */
.page-no-hu-game-hot__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-no-hu-game-hot__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-no-hu-game-hot__introduction-section p,
.page-no-hu-game-hot__game-types-section p,
.page-no-hu-game-hot__guide-section p,
.page-no-hu-game-hot__tips-section p,
.page-no-hu-game-hot__promotions-section p,
.page-no-hu-game-hot__conclusion-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-no-hu-game-hot__introduction-section strong,
.page-no-hu-game-hot__why-choose-section strong,
.page-no-hu-game-hot__guide-section strong,
.page-no-hu-game-hot__tips-section strong,
.page-no-hu-game-hot__promotions-section strong,
.page-no-hu-game-hot__conclusion-section strong {
    color: var(--primary-color);
}

.page-no-hu-game-hot__image-wrapper {
    margin: 30px auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-no-hu-game-hot__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-no-hu-game-hot__image-wrapper--full-width {
    max-width: 100%;
}

/* Why Choose Section */
.page-no-hu-game-hot__dark-section {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
}

.page-no-hu-game-hot__dark-section .page-no-hu-game-hot__section-title {
    color: var(--text-color-dark-bg);
}

.page-no-hu-game-hot__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-no-hu-game-hot__list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    text-align: justify;
}

.page-no-hu-game-hot__list li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}

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

.page-no-hu-game-hot__game-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu-game-hot__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.page-no-hu-game-hot__card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 15px 10px 10px;
    font-weight: 600;
}

.page-no-hu-game-hot__game-card p {
    padding: 0 15px 20px;
    font-size: 0.95em;
    color: var(--text-color-light-bg);
    text-align: center;
}

/* Guide Section */
.page-no-hu-game-hot__light-bg {
    background-color: #f9f9f9;
}

.page-no-hu-game-hot__guide-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-no-hu-game-hot__guide-list li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1em;
    text-align: justify;
}

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

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

.page-no-hu-game-hot__promotion-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--text-color-dark-bg);
    transition: transform 0.3s ease;
}

.page-no-hu-game-hot__promotion-card:hover {
    transform: translateY(-5px);
}

.page-no-hu-game-hot__promotion-card .page-no-hu-game-hot__card-title {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-no-hu-game-hot__promotion-card p {
    font-size: 0.95em;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-no-hu-game-hot__faq-list {
    margin-top: 30px;
}

details.page-no-hu-game-hot__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--secondary-color);
}
details.page-no-hu-game-hot__faq-item summary.page-no-hu-game-hot__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-game-hot__faq-item summary.page-no-hu-game-hot__faq-question::-webkit-details-marker {
  display: none;
}
details.page-no-hu-game-hot__faq-item summary.page-no-hu-game-hot__faq-question:hover {
  background: #f5f5f5;
}
.page-no-hu-game-hot__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-color-light-bg);
}
.page-no-hu-game-hot__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-no-hu-game-hot__faq-item .page-no-hu-game-hot__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-color-light-bg);
  text-align: justify;
}

/* Conclusion Section */
.page-no-hu-game-hot__cta-buttons--center {
    margin-top: 30px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu-game-hot__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-no-hu-game-hot__section-title {
        font-size: clamp(1.6em, 4vw, 2.5em);
    }
    .page-no-hu-game-hot__container {
        padding: 15px;
    }
}

@media (max-width: 849px) {
    .page-no-hu-game-hot__hero-image img {
        object-fit: contain !important; /* Ensure image is fully visible */
        aspect-ratio: unset !important; /* Remove fixed aspect ratio if any */
        max-height: 400px; /* Adjust max height for smaller screens */
    }
}

@media (max-width: 768px) {
    .page-no-hu-game-hot {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-no-hu-game-hot__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO 主图区域 */
    .page-no-hu-game-hot__hero-section {
        padding-top: 10px;
        margin-bottom: 30px;
    }
    .page-no-hu-game-hot__hero-image img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        aspect-ratio: unset !important;
        border-radius: 0;
        box-shadow: none;
    }
    .page-no-hu-game-hot__hero-content {
        padding: 20px 15px;
    }
    .page-no-hu-game-hot__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 10px;
    }
    .page-no-hu-game-hot__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-no-hu-game-hot__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-no-hu-game-hot__btn-primary,
    .page-no-hu-game-hot__btn-secondary,
    .page-no-hu-game-hot__btn-tertiary,
    .page-no-hu-game-hot a[class*="button"],
    .page-no-hu-game-hot a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 通用图片与容器 */
    .page-no-hu-game-hot img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-no-hu-game-hot__section,
    .page-no-hu-game-hot__card,
    .page-no-hu-game-hot__text-block,
    .page-no-hu-game-hot__promotion-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 产品展示图区域 (Game Grid) */
    .page-no-hu-game-hot__game-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        overflow-x: hidden;
    }
    .page-no-hu-game-hot__game-card img {
        
    }

    /* 装饰主标题 + 长文 SEO 区 */
    .page-no-hu-game-hot__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 20px;
        text-align: center;
    }
    .page-no-hu-game-hot__introduction-section p,
    .page-no-hu-game-hot__game-types-section p,
    .page-no-hu-game-hot__guide-section p,
    .page-no-hu-game-hot__tips-section p,
    .page-no-hu-game-hot__promotions-section p,
    .page-no-hu-game-hot__conclusion-section p {
        text-align: left;
        padding: 0 5px;
    }
    .page-no-hu-game-hot__list li {
        padding: 10px 15px;
        font-size: 1em;
    }
    .page-no-hu-game-hot__guide-list li {
        padding-left: 35px;
        font-size: 1em;
    }
    .page-no-hu-game-hot__guide-list li::before {
        width: 25px;
        height: 25px;
        font-size: 0.9em;
    }

    /* Promotions Section */
    .page-no-hu-game-hot__promotion-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu-game-hot__promotion-card {
        padding: 20px;
    }
    .page-no-hu-game-hot__promotion-card .page-no-hu-game-hot__card-title {
        font-size: 1.2em;
    }

    /* FAQ Section */
    details.page-no-hu-game-hot__faq-item summary.page-no-hu-game-hot__faq-question { padding: 15px; }
    .page-no-hu-game-hot__faq-qtext { font-size: 15px; }
    details.page-no-hu-game-hot__faq-item .page-no-hu-game-hot__faq-answer {
        padding: 0 15px 15px;
    }
}