@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
}

.logo {
    font-size: 48px;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
    color: #007AFF;
}

h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.message {
    font-size: 20px;
    color: #666666;
    margin-bottom: 32px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #007AFF, #00C7FF);
    animation: progress 2s ease-in-out infinite;
}

.status {
    font-size: 16px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }
    
    .message {
        font-size: 18px;
    }
    
    .logo {
        font-size: 36px;
    }
}