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

body {
    background-color: #000;
    color: #fff;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

.wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero {
    margin-bottom: 100px;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 9rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: #0f0;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 0 15px #0f0;
    font-weight: 300;
}

.hero-description p {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(0, 20, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 60px;
    font-size: 0.9rem;
    color: #0f0;
    backdrop-filter: blur(10px);
    font-family: 'SF Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #0f0;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 15px #0f0;
    animation: pulse 2s infinite;
}

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

.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 0.9rem;
    font-family: 'SF Mono', monospace;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0f0;
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    
    .hero-title { 
        font-size: clamp(3rem, 12vw, 4rem); 
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .footer {
        flex-direction: column;
        gap: 10px;
    }
}