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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    color: #f0f0f0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    padding: 1.5rem;
}

.container {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.subtitle {
    font-size: 1.15rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #d0d0e0;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.loader span {
    display: block;
    width: 10px;
    height: 10px;
    background: #7f8cff;
    border-radius: 50%;
    animation: pulse 1.4s infinite ease-in-out;
}

.loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader span:nth-child(3) {
    animation-delay: 0.4s;
}

.date-line {
    font-size: 0.95rem;
    color: #a0a0c0;
    margin-top: 0.5rem;
}

footer {
    margin-top: auto;
    padding: 2rem 1rem 1.5rem;
    font-size: 0.85rem;
    color: #8888aa;
}

footer p {
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(0.7);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Небольшой адаптив */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .icon {
        font-size: 3.5rem;
    }
}