/* Modern Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #080B11;
    --bg-card: rgba(13, 18, 30, 0.45);
    --border-card: rgba(255, 255, 255, 0.08);
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --accent-primary: #6366F1; /* Indigo */
    --accent-secondary: #3B82F6; /* Blue */
    --accent-glow: rgba(99, 102, 241, 0.15);
    --status-ok: #10B981; /* Emerald */
    --status-ok-glow: rgba(16, 185, 129, 0.4);
    
    --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Glow */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: float 15s ease-in-out infinite alternate;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
    animation: float 20s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(80px, 50px) scale(1.1);
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 540px;
    padding: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Card */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
                0 0 40px var(--accent-glow),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Status Indicator */
.status-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--status-ok);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--status-ok-glow);
    animation: pulse 2s infinite;
}

.status-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--status-ok);
}

@keyframes pulse {
    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);
    }
}

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

.node-logo {
    width: 96px;
    height: 96px;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.2));
}

.pulse-core {
    animation: logo-glow 3s infinite alternate;
}

@keyframes logo-glow {
    0% {
        fill: #10B981;
        filter: drop-shadow(0 0 2px #10B981);
    }
    100% {
        fill: #6366F1;
        filter: drop-shadow(0 0 10px #6366F1);
    }
}

/* Title & Description */
.title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #FFFFFF 30%, #D1D5DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.domain-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-secondary);
    margin-bottom: 0;
    opacity: 0.85;
}

/* Footer */
.footer {
    text-align: center;
}

.footer p {
    font-size: 0.8rem;
    color: rgba(156, 163, 175, 0.5);
    font-family: var(--font-mono);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .card {
        padding: 36px 24px;
    }
    
    .title {
        font-size: 1.85rem;
    }
}

