:root {
    --bg: #050505;
    --text: #ffffff;
    --accent: #00ff9d;
    --secondary: #888888;
    --surface: #111111;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.container {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 2rem;
}

/* Logo Styling */
.logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
}

.logo {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.dot {
    color: var(--accent);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    margin: 1rem 0 2rem;
    font-weight: 400;
}

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.indicator {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--accent);
    animation: blink 2s infinite;
}

/* Tech Tags */
.tags {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.separator {
    color: #333;
}

/* Terminal Loader */
.terminal-loader {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #888;
    max-width: 300px;
    margin: 0 auto;
}

.terminal-line {
    margin-bottom: 4px;
}

.blink {
    animation: blink 1s step-end infinite;
    color: var(--accent);
}

footer {
    margin-top: 4rem;
    font-size: 0.75rem;
    color: #444;
    line-height: 1.5;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}