/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-container {
    width: 100%;
    padding: 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Typography */
.brand-name {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(to right, #ffffff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    width: 60%;
    margin: 0 auto;
}

/* Progress Bar */
.status-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.progress-label {
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Newsletter Section */
.newsletter-section h5 {
    font-weight: 600;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

/* Social Links */
.social-icon:hover {
    color: #0d6efd !important;
    transition: color 0.3s ease;
}

/* Animation for the container */
.content-wrapper {
    animation: fadeInUp 1.5s ease-out;
}

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