:root {
    --bg-primary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --accent: #cc0000;
    --accent-alt: #ffaa00;
}

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

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

main {
    width: 100%;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-family: 'Inconsolata', monospace;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 4s ease-in-out infinite;
}

.tagline {
    font-family: 'Inconsolata', monospace;
    font-weight: 400;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

.status {
    font-family: 'Inconsolata', monospace;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.status::before,
.status::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-alt));
}

.status::before {
    right: calc(100% + 20px);
    background: linear-gradient(90deg, transparent, var(--accent-alt));
}

.status::after {
    left: calc(100% + 20px);
    background: linear-gradient(90deg, var(--accent-alt), transparent);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

/* Subtle background effect */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(204, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .status::before,
    .status::after {
        width: 30px;
    }
}