/* style/no-hu.css */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #000080; /* Dark Blue background */
}

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

.page-no-hu-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-no-hu-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu-subtitle {
    font-size: 2em;
    color: #FFD700; /* Gold */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-no-hu-text-content {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-no-hu-text-content .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-no-hu-link-inline {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-no-hu-link-inline:hover {
    color: #fff;
    text-decoration: none;
}

.page-no-hu-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-no-hu-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    border: 2px solid #FFD700;
}

.page-no-hu-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000050;
    transform: translateY(-2px);
}

.page-no-hu-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-no-hu-btn-secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-2px);
}

.page-no-hu-btn-small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-no-hu-btn-play {
    background-color: #FFD700;
    color: #000080;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
}

.page-no-hu-btn-play:hover {
    background-color: #e6c200;
    color: #000050;
}

/* Hero Section */
.page-no-hu-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000080;
}

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

.page-no-hu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.7), rgba(255, 215, 0, 0.3));
    z-index: 2;
}

.page-no-hu-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-no-hu-hero-title {
    font-size: 4em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-no-hu-hero-title .highlight {
    color: #FFD700;
}

.page-no-hu-hero-description {
    font-size: 1.5em;
    color: #f0f0f0;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.page-no-hu-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Intro Section */
.page-no-hu-intro {
    background-color: #000060;
    padding: 80px 0;
}

/* Features Section */
.page-no-hu-features {
    background-color: #000080;
    padding: 80px 0;
}

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

.page-no-hu-feature-item {
    background-color: #000060;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-no-hu-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter is applied */
}

.page-no-hu-feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-no-hu-feature-description {
    font-size: 1em;
    line-height: 1.7;
    color: #c0c0c0;
}

/* Game Types Section */
.page-no-hu-game-types {
    background-color: #000060;
    padding: 80px 0;
}

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

.page-no-hu-game-card {
    background-color: #000080;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-no-hu-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-no-hu-game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: none; /* Ensure no CSS filter is applied */
}

.page-no-hu-game-title {
    font-size: 1.5em;
    color: #FFD700;
    padding: 15px 20px 0;
    font-weight: bold;
}

.page-no-hu-game-description {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-no-hu-game-card .page-no-hu-btn-play {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

.page-no-hu-call-to-action-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
    font-weight: 500;
}

/* Guide Section */
.page-no-hu-guide {
    background-color: #000080;
    padding: 80px 0;
}

.page-no-hu-ordered-list,
.page-no-hu-unordered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-no-hu-ordered-list li,
.page-no-hu-unordered-list li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
}

.page-no-hu-ordered-list li:before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-no-hu-unordered-list li:before {
    content: "\2022"; /* Bullet point */
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1.4;
}

.page-no-hu-guide-image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-no-hu-guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    filter: none; /* Ensure no CSS filter is applied */
}

/* Promotions Section */
.page-no-hu-promotions {
    background-color: #000060;
    padding: 80px 0;
}

.page-no-hu-promotion-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-no-hu-promotion-list li {
    background-color: #000080;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-no-hu-promotion-list li strong {
    color: #FFD700;
}

/* CTA Section */
.page-no-hu-cta {
    background-color: #000080;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-no-hu-cta-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.page-no-hu-cta-image {
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: none; /* Ensure no CSS filter is applied */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-no-hu-hero-title {
        font-size: 3.2em;
    }
    .page-no-hu-hero-description {
        font-size: 1.3em;
    }
    .page-no-hu-section-title {
        font-size: 2.2em;
    }
    .page-no-hu-subtitle {
        font-size: 1.7em;
    }
    .page-no-hu-feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-no-hu-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-no-hu-hero {
        height: 500px;
    }
    .page-no-hu-hero-title {
        font-size: 2.5em;
    }
    .page-no-hu-hero-description {
        font-size: 1.1em;
    }
    .page-no-hu-hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-no-hu-section-title {
        font-size: 1.8em;
    }
    .page-no-hu-subtitle {
        font-size: 1.5em;
    }
    .page-no-hu-btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-no-hu-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-no-hu-cta-actions .page-no-hu-btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-no-hu-hero {
        height: 400px;
    }
    .page-no-hu-hero-title {
        font-size: 2em;
    }
    .page-no-hu-hero-description {
        font-size: 0.95em;
    }
    .page-no-hu-section-title {
        font-size: 1.6em;
    }
    .page-no-hu-subtitle {
        font-size: 1.3em;
    }
    .page-no-hu-text-content,
    .page-no-hu-ordered-list li,
    .page-no-hu-unordered-list li,
    .page-no-hu-promotion-list li {
        font-size: 0.95em;
    }
    .page-no-hu-btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-no-hu-feature-item,
    .page-no-hu-game-card {
        padding: 20px;
    }
    .page-no-hu-feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-no-hu-feature-title {
        font-size: 1.5em;
    }
    .page-no-hu-game-title {
        font-size: 1.3em;
    }
}