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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Layout Container */
.coming-soon-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Typography & Content */
.badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Form Styles */
.notify-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 30px auto;
}

.notify-form input {
    flex: 1;
    padding: 14px 16px;
    font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}

.notify-form input:focus {
    border-color: #38bdf8;
}

.notify-form input::placeholder {
    color: #64748b;
}

.notify-form button {
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    background: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.notify-form button:hover {
    background: #0ea5e9;
}

.notify-form button:active {
    transform: scale(0.98);
}

/* Footer */
.footer-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 480px) {
    .coming-soon-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form button {
        width: 100%;
    }
}