:root {
    --foreground: #fafafa;
    --muted: #a1a1aa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("ReviduHeader.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--foreground);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.content-wrapper {
    text-align: center;
    margin: 0 auto;
}

.content-wrapper>*+* {
    margin-top: 1.5rem;
}

.loading-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--foreground);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.dot:nth-child(2) {
    animation-delay: 200ms;
}

.dot:nth-child(3) {
    animation-delay: 400ms;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 1.1;
}

p {
    font-size: 1.125rem;
    color: var(--muted);
    margin: 0 auto;
    max-width: 28rem;
    line-height: 1.75;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--muted);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--foreground);
}

.social-links svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
}