/* style/no-hu.css */
.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
}

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

.page-no-hu__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F2C14E; /* Main color for titles */
    line-height: 1.2;
}

.page-no-hu__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #FFF6D6;
}

.page-no-hu__highlight {
    color: #FFD36B; /* Auxiliary color for highlights */
    font-weight: bold;
}

.page-no-hu__link {
    color: #FFD36B;
    text-decoration: underline;
}

.page-no-hu__link:hover {
    color: #F2C14E;
}

/* Buttons */
.page-no-hu__cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.page-no-hu__cta-buttons--center {
    justify-content: center;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
    color: #111111; /* Dark text for light button */
    border: none;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-no-hu__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-no-hu__btn-secondary {
    background: #111111; /* Card BG */
    color: #FFD36B; /* Auxiliary color */
    border: 2px solid #3A2A12; /* Border color */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

/* Images */
.page-no-hu img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HERO Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, assuming shared body padding */
    padding-bottom: 60px;
    background-color: #0A0A0A;
    overflow: hidden;
}

.page-no-hu__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 16px;
    gap: 40px;
}

.page-no-hu__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-no-hu__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    font-weight: 900;
    color: #F2C14E; /* Main color */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-no-hu__hero-description {
    font-size: 1.2em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 30px;
}

.page-no-hu__hero-image {
    flex: 1 1 40%;
    min-width: 250px;
    text-align: center;
}

.page-no-hu__hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Intro Section */
.page-no-hu__intro-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

/* Features Section (Module 1 three-column) */
.page-no-hu__features-section {
    padding: 60px 0;
    background-color: #111111; /* Card BG */
}

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

.page-no-hu__feature-item {
    background-color: #0A0A0A;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 1px solid #3A2A12;
}

.page-no-hu__icon-box-media {
    width: 240px;
    height: 240px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #FFD36B;
    box-shadow: 0 0 20px rgba(255, 211, 107, 0.6);
}

.page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.page-no-hu__feature-title {
    font-size: 1.8em;
    color: #F2C14E;
    margin-bottom: 15px;
}

.page-no-hu__feature-description {
    color: #FFF6D6;
    font-size: 1em;
}

/* Guide Section */
.page-no-hu__guide-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-no-hu__guide-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-no-hu__guide-steps {
    flex: 1 1 55%;
    min-width: 300px;
}

.page-no-hu__guide-steps ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-no-hu__guide-steps li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 60px;
}

.page-no-hu__guide-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #F2C14E;
    color: #111111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
}

.page-no-hu__guide-steps h3 {
    color: #F2C14E;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-no-hu__guide-steps p {
    color: #FFF6D6;
}

.page-no-hu__guide-image {
    flex: 1 1 35%;
    min-width: 250px;
    text-align: center;
}

.page-no-hu__guide-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Game List Section */
.page-no-hu__game-list-section {
    padding: 60px 0;
    background-color: #111111; /* Card BG */
}