.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

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

.page-no-hu__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-no-hu__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-no-hu__section-title--white {
    color: #ffffff;
}

.page-no-hu__section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

.page-no-hu__section-description--white {
    color: #f0f0f0;
}

.page-no-hu__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-no-hu__btn-secondary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

.page-no-hu__btn-secondary:hover {
    background: #e0e0e0;
    color: #2F6BFF;
    border-color: #2F6BFF;
    transform: translateY(-2px);
}

.page-no-hu__btn-text {
    background: none;
    color: #2F6BFF;
    border: none;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.page-no-hu__btn-text:hover {
    color: #4A8BFF;
}

.page-no-hu__btn-small {
    padding: 10px 20px;
    font-size: 16px;
}

/* Hero Section */
.page-no-hu__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px;
    color: #ffffff;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

.page-no-hu__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 550px;
    overflow: hidden;
}

.page-no-hu__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page-no-hu__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
    border-radius: 10px;
    margin-top: -550px; /* Pull content up to overlay image */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

.page-no-hu__main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 90%;
}

.page-no-hu__subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    margin-bottom: 30px;
    line-height: 1.5;
    color: #f0f0f0;
    max-width: 80%;
}

.page-no-hu__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

/* About Section */
.page-no-hu__about-section {
    background-color: #F4F7FB;
}

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

.page-no-hu__feature-card {
    background: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(47, 107, 255, 0.2));
}

.page-no-hu__feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2D3D;
}

.page-no-hu__feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1F2D3D;
}

/* Popular Games Section */
.page-no-hu__popular-games-section {
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #ffffff;
}

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

.page-no-hu__game-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #1F2D3D;
}

.page-no-hu__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-no-hu__game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-no-hu__game-title {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 15px 5px;
    color: #1F2D3D;
}

.page-no-hu__game-provider {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.page-no-hu__game-card .page-no-hu__btn {
    margin-bottom: 20px;
}

.page-no-hu__view-all-games {
    text-align: center;
}

/* How To Play Section */
.page-no-hu__how-to-play-section {
    background-color: #F4F7FB;
}

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

.page-no-hu__step-card {
    background: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-no-hu__step-number {
    font-size: 36px;
    font-weight: bold;
    color: #2F6BFF;
    margin-bottom: 15px;
    background: #D6E2FF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-no-hu__step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2D3D;
}

.page-no-hu__step-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1F2D3D;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-no-hu__cta-full-width {
    text-align: center;
}

/* Tips Section */
.page-no-hu__tips-section {
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
    color: #ffffff;
}

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

.page-no-hu__tip-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #000000; /* Custom Color_1776249996415 */
}

.page-no-hu__tip-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2F6BFF;
}

.page-no-hu__tip-text {
    font-size: 16px;
    line-height: 1.6;
}

/* Promotions Section */
.page-no-hu__promotions-section {
    background-color: #F4F7FB;
}

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

.page-no-hu__promo-card {
    background: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.page-no-hu__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-no-hu__promo-title {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 15px 10px;
    color: #1F2D3D;
}

.page-no-hu__promo-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1F2D3D;
    padding: 0 15px;
    margin-bottom: 20px;
}

/* FAQ Section */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #fff;
  color: #1F2D3D;
}
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: #f5f5f5;
}
.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF;
  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: #f9f9f9;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  line-height: 1.6;
}

/* Contact CTA Section */
.page-no-hu__contact-cta-section {
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #ffffff;
    text-align: center;
}

/* --- Global Image & Button Responsive Styles --- */
.page-no-hu img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-no-hu__cta-button,
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu a[class*="button"],
.page-no-hu a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__cta-buttons,
.page-no-hu__button-group,
.page-no-hu__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* --- Media Queries for Mobile --- */
@media (max-width: 768px) {
    .page-no-hu__section-padding {
        padding: 40px 0;
    }

    .page-no-hu__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-no-hu__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Hero Section Mobile */
    .page-no-hu__hero-section {
        min-height: 450px;
    }
    .page-no-hu__hero-image-wrapper {
        min-height: 450px;
    }
    .page-no-hu__hero-image {
        object-fit: contain !important; /* Prevent cropping on mobile */
        aspect-ratio: unset !important;
    }
    .page-no-hu__hero-content {
        padding: 30px 15px;
        margin-top: -450px; /* Adjust pull-up for mobile */
        min-height: 450px;
    }
    .page-no-hu__main-title {
        font-size: 32px;
        max-width: 100%;
    }
    .page-no-hu__subtitle {
        font-size: 16px;
        max-width: 100%;
    }
    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-no-hu__btn {
        width: 100%;
    }

    /* Features Grid Mobile */
    .page-no-hu__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__feature-card {
        padding: 20px;
    }
    .page-no-hu__feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .page-no-hu__feature-title {
        font-size: 20px;
    }
    .page-no-hu__feature-text {
        font-size: 15px;
    }

    /* Popular Games Grid Mobile */
    .page-no-hu__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__game-thumbnail {
        height: 180px;
    }
    .page-no-hu__game-title {
        font-size: 18px;
    }
    .page-no-hu__game-provider {
        font-size: 13px;
    }
    .page-no-hu__popular-games-section {
        overflow-x: hidden;
    }

    /* How To Play Steps Grid Mobile */
    .page-no-hu__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__step-card {
        padding: 20px;
    }
    .page-no-hu__step-number {
        font-size: 30px;
        width: 50px;
        height: 50px;
    }
    .page-no-hu__step-title {
        font-size: 20px;
    }
    .page-no-hu__step-text {
        font-size: 15px;
    }

    /* Tips Grid Mobile */
    .page-no-hu__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__tip-card {
        padding: 20px;
    }
    .page-no-hu__tip-title {
        font-size: 18px;
    }
    .page-no-hu__tip-text {
        font-size: 15px;
    }

    /* Promotions Grid Mobile */
    .page-no-hu__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__promo-image {
        height: 200px;
    }
    .page-no-hu__promo-title {
        font-size: 20px;
    }
    .page-no-hu__promo-text {
        font-size: 15px;
    }

    /* FAQ Mobile */
    details.page-no-hu__faq-item summary.page-no-hu__faq-question { padding: 15px; }
    .page-no-hu__faq-qtext { font-size: 16px; }
    details.page-no-hu__faq-item .page-no-hu__faq-answer { padding: 0 15px 15px; }

    /* General Image Responsive */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-no-hu__container,
    .page-no-hu__hero-section,
    .page-no-hu__about-section,
    .page-no-hu__popular-games-section,
    .page-no-hu__how-to-play-section,
    .page-no-hu__tips-section,
    .page-no-hu__promotions-section,
    .page-no-hu__faq-section,
    .page-no-hu__contact-cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Button Mobile Specifics */
    .page-no-hu__cta-button,
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary,
    .page-no-hu a[class*="button"],
    .page-no-hu 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__cta-buttons,
    .page-no-hu__button-group,
    .page-no-hu__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0px;
        padding-right: 0px;
        flex-wrap: wrap !important;
        gap: 15px; /* Adjust gap for mobile buttons */
    }
    .page-no-hu__cta-buttons {
        flex-direction: column;
    }
}