:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.4);
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
}

.center-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bottom-text {
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.bottom-text p {
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.8;
}

.snowflake {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .center-text h1 {
        font-size: 2.2rem;
    }

    .center-text p {
        font-size: 0.9rem;
    }

    .bottom-text p {
        font-size: 1rem;
    }
}