:root {
    --page-no-hu-primary-color: #C91F17;
    --page-no-hu-secondary-color: #E53935;
    --page-no-hu-gold-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --page-no-hu-card-bg: #D32F2F;
    --page-no-hu-section-bg: #B71C1C;
    --page-no-hu-text-main: #FFF5E1;
    --page-no-hu-border-color: #F2B544;
    --page-no-hu-glow-color: #FFCC66;
    --page-no-hu-gold-color: #F4D34D;
    --page-no-hu-deep-red: #7A0E0E;
    --page-no-hu-light-bg-color: #f9f9f9; /* for light sections */
    --page-no-hu-dark-text: #333333;
    --page-no-hu-white-text: #ffffff;
    --page-no-hu-gap: 20px;
}

.page-no-hu {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-no-hu-dark-text); /* Default text color for light body background */
    background-color: #ffffff; /* Assuming shared.css sets body to white or light */
}

.page-no-hu img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

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

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

.page-no-hu__section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--page-no-hu-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.page-no-hu__section-title--gold {
    color: var(--page-no-hu-gold-color);
    text-shadow: 0 0 8px rgba(255, 204, 102, 0.6);
}

.page-no-hu__text-block {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__game-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background: var(--page-no-hu-gold-gradient);
    color: var(--page-no-hu-deep-red);
    border: 2px solid var(--page-no-hu-gold-color);
}

.page-no-hu__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

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

.page-no-hu__btn-secondary:hover {
    background: rgba(255, 204, 102, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__game-play-btn {
    background: var(--page-no-hu-gold-gradient);
    color: var(--page-no-hu-deep-red);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-no-hu__game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.page-no-hu__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-no-hu__cta-buttons--center {
    margin-top: 40px;
}

/* Hero Section */
.page-no-hu__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Assuming body handles --header-offset */
    margin-bottom: 50px;
}

.page-no-hu__hero-content-wrapper {
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-no-hu__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-no-hu__hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.page-no-hu__hero-text-container {
    text-align: center;
    max-width: 900px;
}

.page-no-hu__main-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--page-no-hu-primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-no-hu__hero-description {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--page-no-hu-dark-text);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section */
.page-no-hu__intro-section {
    background: var(--page-no-hu-section-bg);
    color: var(--page-no-hu-text-main);
    padding: 60px 0;
    margin-bottom: 50px;
}

.page-no-hu__intro-section .page-no-hu__section-title {
    color: var(--page-no-hu-gold-color);
    text-shadow: 0 0 8px rgba(255, 204, 102, 0.6);
}

.page-no-hu__intro-section .page-no-hu__text-block {
    color: var(--page-no-hu-text-main);
    font-size: 18px;
    line-height: 1.8;
}

/* Advantages Section */
.page-no-hu__advantages-section {
    padding: 60px 0;
    margin-bottom: 50px;
}

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

.page-no-hu__grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.page-no-hu__card {
    background: var(--page-no-hu-card-bg);
    color: var(--page-no-hu-text-main);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-no-hu-border-color);
}

.page-no-hu__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-no-hu__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-no-hu__card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--page-no-hu-gold-color);
    line-height: 1.3;
}

.page-no-hu__card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--page-no-hu-text-main);
}

/* How to Play Section */
.page-no-hu__how-to-play-section {
    padding: 60px 0;
    margin-bottom: 50px;
    background: var(--page-no-hu-light-bg-color);
    color: var(--page-no-hu-dark-text);
}

.page-no-hu__how-to-play-section .page-no-hu__section-title {
    color: var(--page-no-hu-primary-color);
}

.page-no-hu__how-to-play-section .page-no-hu__text-block {
    color: var(--page-no-hu-dark-text);
}

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

.page-no-hu__step-item {
    text-align: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.page-no-hu__step-icon {
    width: 60px;
    height: 60px;
    background: var(--page-no-hu-primary-color);
    color: var(--page-no-hu-white-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--page-no-hu-primary-color);
    margin-bottom: 10px;
}

.page-no-hu__step-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--page-no-hu-dark-text);
}

/* Popular Games Section */
.page-no-hu__popular-games-section {
    padding: 60px 0;
    margin-bottom: 50px;
    background: var(--page-no-hu-section-bg);
    color: var(--page-no-hu-text-main);
}

.page-no-hu__popular-games-section .page-no-hu__text-block {
    color: var(--page-no-hu-text-main);
    font-size: 18px;
}

.page-no-hu__grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.page-no-hu__game-card {
    background: var(--page-no-hu-card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-no-hu-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-no-hu__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

.page-no-hu__game-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--page-no-hu-gold-color);
    margin-bottom: 10px;
}

.page-no-hu__game-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--page-no-hu-text-main);
    margin-bottom: 15px;
}

/* Strategies Section */
.page-no-hu__strategies-section {
    padding: 60px 0;
    margin-bottom: 50px;
    background: var(--page-no-hu-light-bg-color);
    color: var(--page-no-hu-dark-text);
}

.page-no-hu__strategies-section .page-no-hu__section-title {
    color: var(--page-no-hu-primary-color);
}

.page-no-hu__strategies-section .page-no-hu__text-block {
    color: var(--page-no-hu-dark-text);
}

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

.page-no-hu__strategy-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.page-no-hu__strategy-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--page-no-hu-primary-color);
    margin-bottom: 10px;
}

.page-no-hu__strategy-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--page-no-hu-dark-text);
}

/* FAQ Section */
.page-no-hu__faq-section {
    padding: 60px 0;
    margin-bottom: 50px;
    background: var(--page-no-hu-section-bg);
    color: var(--page-no-hu-text-main);
}

.page-no-hu__faq-section .page-no-hu__text-block {
    color: var(--page-no-hu-text-main);
}

.page-no-hu__faq-list {
    margin-top: 40px;
}

details.page-no-hu__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--page-no-hu-border-color);
    overflow: hidden;
    background: var(--page-no-hu-card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--page-no-hu-gold-color);
    font-weight: 600;
    font-size: 18px;
}

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: var(--page-no-hu-deep-red);
}

.page-no-hu__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--page-no-hu-gold-color);
}

.page-no-hu__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--page-no-hu-gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 25px 25px;
    background: rgba(0,0,0,0.1); /* Slightly darker for contrast */
    border-radius: 0 0 12px 12px;
    color: var(--page-no-hu-text-main);
}

.page-no-hu__faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 15px;
    color: var(--page-no-hu-text-main);
}

/* Final CTA Section */
.page-no-hu__final-cta-section {
    padding: 60px 0;
    background: var(--page-no-hu-light-bg-color);
    color: var(--page-no-hu-dark-text);
}

.page-no-hu__final-cta-section .page-no-hu__section-title {
    color: var(--page-no-hu-primary-color);
}

.page-no-hu__final-cta-section .page-no-hu__text-block {
    color: var(--page-no-hu-dark-text);
}


/* --- Responsive Styles (Mobile First Approach) --- */

/* Tablet and Smaller Desktops (up to 1024px) */
@media (max-width: 1024px) {
    .page-no-hu__container {
        padding: 15px;
    }

    .page-no-hu__section-title {
        font-size: clamp(26px, 3.5vw, 38px);
        margin-bottom: 30px;
    }

    .page-no-hu__main-title {
        font-size: clamp(32px, 4.5vw, 48px);
    }
}