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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.container {
    text-align: center;
    z-index: 1;
}

.logo-area h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.8rem;
    color: #a78bfa;
    margin-top: -0.5rem;
}

.tagline {
    margin-top: 2rem;
}

.tagline p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #9ca3af;
    letter-spacing: 0.15rem;
}

.status {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.status span {
    font-size: 0.85rem;
    color: #6b7280;
    letter-spacing: 0.05rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
}
