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

body {
    font-family: 'JetBrains Mono', monospace;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.glitch {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #666666;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
}
