/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0b0f19;
    color: #f3f4f6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle background lighting effect */
body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(0,0,0,0) 70%);
    top: -10%;
    left: -10%;
    z-index: 0;
}

body::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.05) 0%, rgba(0,0,0,0) 70%);
    bottom: -10%;
    right: -10%;
    z-index: 0;
}

/* Content Container */
.container {
    max-width: 640px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo and Glow Animation */
.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.star-logo {
    width: 64px;
    height: 64px;
    animation: float 4s ease-in-out infinite;
}

.glow-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.25);
    border-radius: 50%;
    filter: blur(20px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Badge / Status Tag */
.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 2s infinite;
}

/* Footer */
footer {
    margin-top: 80px;
    font-size: 0.8rem;
    color: #475569;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0% { opacity: 0.6; width: 70px; height: 70px; }
    100% { opacity: 1; width: 95px; height: 95px; }
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .subtitle { font-size: 0.95rem; }
}