/* Reset and Base Styles */
* {
    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;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Animated Clouds */
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    opacity: 0.7;
    animation: float 20s infinite linear;
}

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

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

.cloud1 {
    width: 80px;
    height: 30px;
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

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

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

.cloud2 {
    width: 100px;
    height: 40px;
    top: 40%;
    left: -120px;
    animation-delay: -5s;
}

.cloud2:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud2:after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 15px;
}

.cloud3 {
    width: 60px;
    height: 25px;
    top: 60%;
    left: -80px;
    animation-delay: -10s;
}

.cloud3:before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
}

.cloud3:after {
    width: 50px;
    height: 35px;
    top: -15px;
    right: 10px;
}

.cloud4 {
    width: 90px;
    height: 35px;
    top: 80%;
    left: -110px;
    animation-delay: -15s;
}

.cloud4:before {
    width: 55px;
    height: 55px;
    top: -28px;
    left: 12px;
}

.cloud4:after {
    width: 65px;
    height: 45px;
    top: -18px;
    right: 12px;
}

.cloud5 {
    width: 70px;
    height: 30px;
    top: 10%;
    left: -90px;
    animation-delay: -8s;
}

.cloud5:before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 8px;
}

.cloud5:after {
    width: 55px;
    height: 38px;
    top: -16px;
    right: 8px;
}

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

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.logo i {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s infinite;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

/* Status Card */
.status-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.status-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
    animation: rotate 2s linear infinite;
}

.status-card h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.status-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Progress Bar */
.progress-container {
    margin-top: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

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

.progress-text {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 75%;
    }
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Contact Info */
.contact-info {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-info p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: floatIcon 15s infinite linear;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: -3s;
}

.floating-icon:nth-child(3) {
    top: 70%;
    left: 20%;
    animation-delay: -6s;
}

.floating-icon:nth-child(4) {
    top: 30%;
    right: 25%;
    animation-delay: -9s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .logo i {
        font-size: 3rem;
    }
    
    .status-card {
        padding: 30px 20px;
    }
    
    .status-card h2 {
        font-size: 1.5rem;
    }
    
    .status-card p {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 25px 15px;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .cloud {
        animation-duration: 15s;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .status-card {
        padding: 25px 15px;
    }
    
    .status-card h2 {
        font-size: 1.3rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
}
