:root {
    --bg: #000000;
    --text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default; /* Возвращаем обычный курсор */
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none; /* Чтобы текст не мешал движению мыши */
}

h1 {
    font-size: clamp(2rem, 10vw, 5rem);
    font-weight: 100; /* Очень тонкий и элегантный шрифт */
    letter-spacing: 0.6em;
    text-transform: uppercase;
    margin-right: -0.6em;
    opacity: 0;
}

.divider {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    margin: 40px auto;
}

#sub {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 1.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-right: -1.2em;
    opacity: 0;
}

/* Эффект легкого зерна для киношности */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Static_Noise_Texture.png");
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
}