* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #f0f0f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.2s ease-out;
}

h1 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #e94560, #f5a623);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e94560, #f5a623);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ccc;
}

.description {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.6;
    color: #999;
    margin-bottom: 2.5rem;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #e94560;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #e94560;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

footer {
    margin-top: 4rem;
    color: #555;
    font-size: 0.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
