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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px;

    background: #000;
    color: #fff;

    font-family: "Montserrat", sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    opacity: 0;
    animation: fade 1.4s ease forwards;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}

h1 span {
    color: #b7ff00;
}

p {
    margin-top: 24px;

    font-size: clamp(0.8rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1.5;

    color: #9f9f9f;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(-35px);
    }

    to {
        opacity: 1;
        transform: translateY(-50px);
    }
}

@media (max-width: 480px) {
    h1 {
        letter-spacing: 0.02em;
    }

    p {
        max-width: 280px;
        letter-spacing: 0.1em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .container {
        opacity: 1;
        animation: none;
        transform: translateY(-50px);
    }
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    margin-top: 32px;
}

.social-links a {
    color: #666;
    text-decoration: none;

    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    color: #b7ff00;
    transform: translateY(-2px);
}

.social-links a:focus-visible {
    outline: 1px solid #b7ff00;
    outline-offset: 6px;
}

@media (max-width: 480px) {
    .social-links {
        gap: 18px;
        margin-top: 28px;
    }

    .social-links a {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }
}