* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    min-height: 1.5em;
}

.status-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #ffd700;
    color: #2d3748;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background-color: #ffed4a;
}

footer {
    padding: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.noor-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffd700;
    color: #2d3748;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.noor-button:hover {
    transform: translateY(-2px);
    background-color: #ffed4a;
}