:root {
    --primary-color: #113B7A;
    --accent-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg-color: #10233F;
    --text-main-color: #F3F8FF;
    --text-secondary-color: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy-color: #08162B;
}

/* Base styles for the page-no-hu scope */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* #F3F8FF */
    background-color: var(--deep-navy-color); /* #08162B */
}

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

.page-no-hu__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-color); /* #F2C14E */
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-no-hu__section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary-color); /* #AFC4E8 */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: var(--button-gradient);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid var(--accent-color); /* #1D5FD1 */
    color: var(--accent-color); /* #1D5FD1 */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-no-hu__btn-secondary:hover {
    background-color: var(--accent-color); /* #1D5FD1 */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 60px;
    background-color: var(--deep-navy-color); /* #08162B */
    position: relative;
    overflow: hidden;
}

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

.page-no-hu__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: var(--text-main-color); /* #F3F8FF */
}

.page-no-hu__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for H1 */
    font-weight: 800;
    color: var(--gold-color); /* #F2C14E */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-no-hu__hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary-color); /* #AFC4E8 */
}

.page-no-hu__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

/* Intro Section */
.page-no-hu__intro-section {
    padding: 80px 0;
    background-color: var(--card-bg-color); /* #10233F */
}

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

.page-no-hu__feature-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(17, 59, 122, 0.2); /* Slightly lighter than card-bg, translucent */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color); /* #244D84 */
}

.page-no-hu__icon-box-media {
    width: 200px; /* Fixed size for square/circle */
    height: 200px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-color); /* #F2C14E */
    box-shadow: 0 0 15px var(--glow-color); /* #4FA8FF */
}

.page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-no-hu__feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-color); /* #F2C14E */
    margin-bottom: 10px;
}

.page-no-hu__feature-description {
    font-size: 1rem;
    color: var(--text-secondary-color); /* #AFC4E8 */
    line-height: 1.6;
}

/* Game Showcase Section */
.page-no-hu__game-showcase {
    padding: 80px 0;
    background-color: var(--deep-navy-color); /* #08162B */
}

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

.page-no-hu__game-card {
    background-color: var(--card-bg-color); /* #10233F */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color); /* #244D84 */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu__game-media {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    overflow: hidden;
}

.page-no-hu__game-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-no-hu__game-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-no-hu__game-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main-color); /* #F3F8FF */
    margin-bottom: 10px;
}