/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* Background and Layout */
.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: -1;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.7;
    }
}

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

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.flag {
    font-size: 4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: scale(1.1);
}

/* Main Message */
.main-message {
    margin-bottom: 4rem;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}




/* Footer */
.footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .flag {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .flags {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .flag {
        font-size: 2.75rem;
    }
    
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.75rem;
    }
    
    .flags {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .flag {
        font-size: 2rem;
    }
    
}

@media (max-width: 360px) {
    .logo h1 {
        font-size: 1.75rem;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
    }
    
    .flags {
        gap: 0.4rem;
        margin-top: 0.4rem;
    }
    
    .flag {
        font-size: 1.75rem;
    }
    
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .shape {
        animation: none;
    }
    
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bg-gradient {
        background: #000;
    }
    
}
