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

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(329.45deg, #092E40 2.4%, #0E4865 45.85%, #1777A6 96.94%);
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.3;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
    max-width: 600px;
    padding: 0 40px;
}

.logo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.streamline-teams {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 60px;
    color: #FFFFFF;
    opacity: 0.9;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto 60px auto;
    max-width: 400px;
    text-align: center;
}

.feature {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.9;
}

.coming-soon-title {
    font-size: 42px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 50px 0 50px 0;
    letter-spacing: -0.5px;
}

.footer {
    margin-top: auto;
}

.footer p {
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.7;
    margin: 0;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .content {
        padding: 0 20px;
    }
    
    .logo {
        height: 70px;
        padding: 6px;
    }
    
    .streamline-teams {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .coming-soon-title {
        font-size: 32px;
        margin: 40px 0 20px 0;
    }
    
    .description {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .features {
        gap: 14px;
        margin-bottom: 40px;
    }
    
    .footer {
        margin-top: 40px;
    }
}