.page-46nohu {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
}

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

.page-46nohu__dark-bg {
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-46nohu__hero-section {
    padding-top: 10px; /* Small top padding, assuming body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    background-color: #000000; /* Even darker for hero */
}

.page-46nohu__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-46nohu__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Prevent excessively tall images on desktop */
}

.page-46nohu__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-46nohu__hero-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFD700; /* Yellow accent for title */
    line-height: 1.2;
}

.page-46nohu__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-46nohu__btn-primary,
.page-46nohu__btn-secondary,
.page-46nohu__btn-play {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-46nohu__btn-primary {
    background-color: #FFD700; /* Yellow button */
    color: #1a1a1a; /* Dark text for yellow button */
    border: 2px solid #FFD700;
}

.page-46nohu__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-46nohu__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Yellow text for secondary button */
    border: 2px solid #FFD700;
}

.page-46nohu__btn-secondary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
}

.page-46nohu__btn-play {
    background-color: #2563eb; /* Blue button */
    color: #ffffff;
    border: 2px solid #2563eb;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-46nohu__btn-play:hover {
    background-color: #1e4bbf;
    border-color: #1e4bbf;
}


.page-46nohu__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #FFD700;
}

.page-46nohu__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
}

.page-46nohu__text-block a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-46nohu__text-block a:hover {
    text-decoration: underline;
}

/* Introduction Section */
.page-46nohu__introduction-section {
    padding: 60px 0;
}
.page-46nohu__introduction-section .page-46nohu__btn-primary {
    margin-top: 30px;
}

/* Games Section */
.page-46nohu__games-section {
    padding: 60px 0;
    background-color: #000000;
}

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

.page-46nohu__game-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.page-46nohu__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-46nohu__game-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD700;
    padding: 0 15px;
}

.page-46nohu__game-description {
    font-size: 0.95em;
    color: #cccccc;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-46nohu__more-games-cta {
    text-align: center;
    margin-top: 50px;
}

/* Features Section */
.page-46nohu__features-section {
    padding: 60px 0;
}

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

.page-46nohu__feature-card {
    background-color: #000000;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

.page-46nohu__feature-card:hover {
    transform: translateY(-5px);
}

.page-46nohu__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    /* filter: invert(0) sepia(1) saturate(5) hue-rotate(0deg) brightness(1.2); */ /* Removed filter to keep original image colors */
}

.page-46nohu__feature-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD700;
}

.page-46nohu__feature-description {
    font-size: 0.95em;
    color: #cccccc;
}

/* FAQ Section */
.page-46nohu__faq-section {
    padding: 60px 0;
    background-color: #000000;
}

.page-46nohu__faq-list {
    margin-top: 40px;
}

.page-46nohu__faq-item {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-46nohu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1.15em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-46nohu__faq-question:hover {
    background-color: #3a3a3a;
}

.page-46nohu__faq-qtext {
    flex-grow: 1;
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-46nohu__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    margin-left: 15px;
    color: #FFD700;
    pointer-events: none; /* Prevent icon from blocking click event */
}

.page-46nohu__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #cccccc;
    font-size: 1em;
    text-align: justify;
}

.page-46nohu__faq-item.active .page-46nohu__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to show all content */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-46nohu__faq-item.active .page-46nohu__faq-toggle {
    content: '−'; /* Change to minus sign */
}

/* CTA Section */
.page-46nohu__cta-section {
    padding: 60px 0;
    text-align: center;
}
.page-46nohu__cta-section .page-46nohu__btn-primary {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-46nohu__hero-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-46nohu__section-title {
        font-size: 2em;
    }
    .page-46nohu__container {
        padding: 15px;
    }
    .page-46nohu__games-grid,
    .page-46nohu__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-46nohu__hero-section {
        padding-top: 10px !important; /* Small top padding, assuming body handles header offset */
        padding-bottom: 30px;
    }
    .page-46nohu__hero-image {
        max-height: 400px !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-46nohu__hero-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 10px;
    }
    .page-46nohu__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-46nohu__hero-buttons {
        flex-direction: column !important;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 通用图片与容器 */
    .page-46nohu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-46nohu__container,
    .page-46nohu__introduction-section,
    .page-46nohu__games-section,
    .page-46nohu__features-section,
    .page-46nohu__faq-section,
    .page-46nohu__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 产品展示图区域 */
    .page-46nohu__games-grid {
        grid-template-columns: 1fr !important; /* Single column layout for games */
        gap: 20px;
    }
    .page-46nohu__game-card {
        padding-bottom: 15px;
    }
    .page-46nohu__game-image {
        height: 180px !important; /* Slightly smaller height on mobile */
    }

    /* 按钮与按钮容器 */
    .page-46nohu__btn-primary,
    .page-46nohu__btn-secondary,
    .page-46nohu__btn-play,
    .page-46nohu a[class*="button"],
    .page-46nohu 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 !important;
        padding-right: 15px !important;
    }
    .page-46nohu__cta-buttons,
    .page-46nohu__button-group,
    .page-46nohu__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    /* Ensure vertical stacking for hero buttons, already set above */

    /* 其他内容模块 */
    .page-46nohu__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-46nohu__text-block {
        font-size: 0.95em;
    }
    .page-46nohu__features-grid {
        grid-template-columns: 1fr !important; /* Single column for features */
        gap: 20px;
    }
    .page-46nohu__feature-card {
        padding: 25px;
    }
    .page-46nohu__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-46nohu__faq-answer {
        padding: 15px 20px !important;
    }
    .page-46nohu__faq-qtext {
        padding-right: 10px;
    }
    .page-46nohu__faq-toggle {
        font-size: 1.3em;
    }
    .page-46nohu p,
    .page-46nohu li {
      font-size: 16px;
      line-height: 1.6;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
    .page-46nohu__faq-item {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-46nohu__faq-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}