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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem 2rem;
    animation: fadeIn 1s ease-out;
}

.content {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo svg {
    width: 80px;
    height: 80px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .title {
        font-size: 3rem;
    }
}

.subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 2rem 0 1rem;
    overflow: hidden;
}

.progress {
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.eta {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.contact-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f7fafc;
    color: #4a5568;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer {
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    margin-top: 1rem;
}

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

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}