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

body {
    font-family: 'Cal Sans', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
    max-width: 600px;
    padding: 2rem;
}

.paper-plane-container {
    margin-bottom: 3rem;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paper-plane {
    position: relative;
    width: 80px;
    height: 40px;
    animation: float 3s ease-in-out infinite;
}

.plane-body {
    position: absolute;
    width: 80px;
    height: 4px;
    background: white;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 2px;
}

.plane-body::before {
    content: '';
    position: absolute;
    right: -10px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.plane-wing-left {
    position: absolute;
    width: 0;
    height: 0;
    border-right: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 5px solid transparent;
    top: 10px;
    left: 20px;
}

.plane-wing-right {
    position: absolute;
    width: 0;
    height: 0;
    border-right: 25px solid white;
    border-top: 5px solid transparent;
    border-bottom: 15px solid transparent;
    bottom: 10px;
    left: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.message {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.progress-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 4px;
    width: 0%;
    animation: progressAnimation 4s ease-in-out infinite;
}

@keyframes progressAnimation {
    0%, 100% {
        width: 15%;
    }
    50% {
        width: 85%;
    }
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.estimate {
    font-size: 1rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.estimate strong {
    color: #4ade80;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    opacity: 0.6;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: cloudMove1 20s linear infinite;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 60%;
    right: 15%;
    animation: cloudMove2 25s linear infinite reverse;
}

.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud-2::after {
    width: 50px;
    height: 30px;
    top: -10px;
    right: 15px;
}

.cloud-3 {
    width: 120px;
    height: 50px;
    top: 35%;
    right: 5%;
    animation: cloudMove3 30s linear infinite;
}

.cloud-3::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-3::after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 20px;
}

@keyframes cloudMove1 {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes cloudMove2 {
    0% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(calc(-100vw - 100px));
    }
}

@keyframes cloudMove3 {
    0% {
        transform: translateX(-120px);
    }
    100% {
        transform: translateX(calc(100vw + 120px));
    }
}

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

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .message {
        font-size: 1.1rem;
    }
    
    .paper-plane {
        width: 60px;
        height: 30px;
    }
    
    .plane-body {
        width: 60px;
        height: 3px;
    }
    
    .plane-body::before {
        right: -8px;
        top: -6px;
        border-left: 15px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    
    .plane-wing-left {
        border-right: 20px solid white;
        border-top: 12px solid transparent;
        border-bottom: 4px solid transparent;
        top: 8px;
        left: 15px;
    }
    
    .plane-wing-right {
        border-right: 20px solid white;
        border-top: 4px solid transparent;
        border-bottom: 12px solid transparent;
        bottom: 8px;
        left: 15px;
    }
}

