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

body {
    font-family: 'Inter', sans-serif;
    background: #201f42;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Subtle animated background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
}

.header-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.coming-soon-section {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    margin-top: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.logo img {
    width: 100%;
    height: 100%;
    display: block;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.4;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.coming-soon {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 600;
    margin-left: 2rem;
    margin-right: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    position: relative;
    display: inline-block;
    padding: 2.5rem 10rem;
    border: 6px solid rgba(255,255,255,0.4);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    background: #201f42;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.coming-soon:hover {
    border-color: rgba(255,255,255,0.6);
    background: #201f42;
    transform: translateY(-2px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    border-radius: 0 0 25px 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; width: 60px; }
    50% { opacity: 1; width: 100px; }
}

.stay-tuned {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.stay-tuned:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    flex-wrap: wrap;
    align-items: center;
}

.social-link, .phone-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover, .phone-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}

.social-icon, .phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.contact-info {
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.website-link {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

.website-link:hover {
    color: white;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-section {
        padding: 1rem;
    }
                
    .social-links {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-link, .phone-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .coming-soon {
        font-size: clamp(2rem, 10vw, 3.5rem);
        padding: 1.5rem 2.5rem;
        border-radius: 15px;
        margin: 0 1rem;
    }
}