/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, rgb(31, 60, 114) 0%, rgb(25, 48, 91) 50%, rgb(20, 38, 73) 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.text-content {
    margin-bottom: 2rem;
}

.company-name {
    font-size: 3rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.coming-soon {
    font-size: 1.25rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1rem;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.description {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

.footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.footer p {
    font-size: 0.875rem;
    color: #a0aec0;
    font-weight: 300;
}

/* Background decoration */
.background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.circle {
    display: none;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .coming-soon {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .circle-1, .circle-2, .circle-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2rem 1rem;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
} 