/* style/no-hu.css */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #1A202C; /* Dark blue/black for background */
    line-height: 1.6;
}

.page-no-hu-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-no-hu-hero-content {
    max-width: 900px;
    z-index: 10;
}

.page-no-hu-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-no-hu-subtitle {
    font-size: 1.4em;
    color: #D4AF37; /* Slightly darker gold for subtitle, good contrast */
    margin-bottom: 40px;
    font-weight: normal;
}

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

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

.page-no-hu-btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-no-hu-btn-primary:hover {
    background-color: #E0B500; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-no-hu-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}