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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #000;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,9,11,0.95), rgba(0,0,0,0.9));
    z-index: 2;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 460px;
}

h1 {
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    background: linear-gradient(90deg, #ffffff, #a3a3a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright {
    font-size: 0.9rem;
    color: #71717a;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 640px) {
    h1 {
        font-size: 2.8rem;
    }
}