﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 980px;
    animation: fadeIn 1s ease-out;
}

.icon-wrapper {
    margin-bottom: 32px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 113, 227, 0.3);
}

    .icon svg {
        width: 44px;
        height: 44px;
        stroke: white;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

h1 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.14;
    color: #6e6e73;
    margin-bottom: 48px;
}

.message {
    font-size: 19px;
    line-height: 1.47;
    color: #86868b;
    max-width: 640px;
    margin: 0 auto 40px;
}

.loader-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite;
}

    .dot:nth-child(2) {
        animation-delay: 0.2s;
    }

    .dot:nth-child(3) {
        animation-delay: 0.4s;
    }

.estimated-time {
    font-size: 17px;
    color: #86868b;
    font-weight: 400;
}

.contact-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-link {
    color: #0071e3;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: color 0.3s ease;
}

    .contact-link:hover {
        color: #005bb5;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 21px;
    }

    .message {
        font-size: 17px;
    }

    .icon {
        width: 64px;
        height: 64px;
    }

        .icon svg {
            width: 36px;
            height: 36px;
        }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 19px;
    }
}
