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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom right, hsl(270, 20%, 98%), hsl(0, 0%, 100%));
}

/* Animated background orbs */
.background-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    top: 25%;
    left: 25%;
    background: hsla(270, 100%, 50%, 0.1);
    animation: pulse1 4s ease-in-out infinite;
}

.orb-2 {
    bottom: 25%;
    right: 25%;
    background: hsla(270, 100%, 50%, 0.1);
    animation: pulse2 6s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse1 {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes pulse2 {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Main content */
.main-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 48px 16px;
}

.content-wrapper {
    max-width: 896px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(32px);
    transition: all 1s ease-out;
}

.content-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo */
.logo-container {
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
}

.logo {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(123, 0, 255, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Title */
.title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, hsl(270, 100%, 50%) 0%, hsl(280, 100%, 60%) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Description */
.description {
    font-size: 1.125rem;
    color: hsl(0, 0%, 45%);
    max-width: 672px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Decorative line */
.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.line {
    height: 1px;
    width: 64px;
}

.line-left {
    background: linear-gradient(to right, transparent, hsla(270, 100%, 50%, 0.5));
}

.line-right {
    background: linear-gradient(to left, transparent, hsla(270, 100%, 50%, 0.5));
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsl(270, 100%, 50%);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Status badge */
.status-badge {
    display: inline-flex;
    padding: 14px 32px;
    border-radius: 9999px;
    background: linear-gradient(135deg, hsl(270, 100%, 50%), hsl(280, 100%, 60%));
    box-shadow: 0 0 30px hsla(270, 100%, 50%, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 30px hsla(270, 100%, 50%, 0.3);
    }
    50% {
        box-shadow: 0 0 50px hsla(270, 100%, 50%, 0.6);
    }
}

.status-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 32px;
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
    color: hsl(0, 0%, 45%);
}

/* Responsive */
@media (min-width: 768px) {
    .logo {
        height: 80px;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .logo {
        height: 96px;
    }
    
    .title {
        font-size: 3.75rem;
    }
    
    .description {
        font-size: 1.5rem;
    }
}