body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    font-family: Lato, sans-serif;
}

.logo {
    display: block;
    width: clamp(220px, 36vw, 520px);
    max-width: 88vw;
    height: auto;
    margin-bottom: clamp(24px, 5vh, 44px);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.1));
    animation: fadeIn 1s ease-in;
}

@media (max-width: 768px) {
    .logo {
        width: clamp(220px, 72vw, 420px);
        max-width: 92vw;
    }

    .loading {
        font-size: clamp(1.2rem, 6vw, 2rem);
        letter-spacing: 0.25rem;
    }
}

.loading {
    color: white;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading span {
    animation: shrink 2s infinite;
}

@keyframes shrink {
    50% {
        transform: scale(0);
    }
}
