:root {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1a1;
    --text-muted: #6e6e73;
    --accent: #5ac8fa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background grid */
.background-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 0;
}

/* Mystical ambient glow */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.08) 0%, rgba(18, 18, 18, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
    animation: glow-pulse 8s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Glassmorphic main container */
.glass-container {
    position: relative;
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 4rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-container:hover {
    transform: translateY(-5px);
}

/* Status indicator with pulsing light */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(90, 200, 250, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(90, 200, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(90, 200, 250, 0); }
}

.status-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
}

h1.domain-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
    margin-bottom: 2rem;
}

/* Monospaced terminal output */
.terminal-feed {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.console-line {
    opacity: 0;
    animation: fade-in-up 0.5s ease forwards;
}

.console-line:nth-child(1) { animation-delay: 0.5s; }
.console-line:nth-child(2) { animation-delay: 1.5s; }
.console-line:nth-child(3) { animation-delay: 2.5s; }
.console-line:nth-child(4) { animation-delay: 3.5s; }

.console-line .prompt {
    color: var(--text-muted);
    margin-right: 8px;
}

.console-line.success {
    color: var(--text-primary);
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .glass-container {
        margin: 1rem;
        padding: 2rem;
    }
    
    h1.domain-title {
        font-size: 2rem;
    }
}
