@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    overflow-x: hidden;
}

.launch-container {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.launch-content {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
}

.icon-wrapper {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.launch-icon {
    color: #3b82f6;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.launch-title {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.launch-subtitle {
    color: #cbd5e1;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.countdown-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.notify-form {
    margin-bottom: 2rem;
}

.input-group {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-group-text {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding-left: 1.25rem;
}

.form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
}

.form-control::placeholder {
    color: #64748b;
}

.form-control:focus {
    background: transparent;
    color: #ffffff;
    box-shadow: none;
}

.btn-notify {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: #ffffff;
}

.btn-notify:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.btn-notify:active {
    transform: translateY(0);
}

.btn-notify svg {
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: drift 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(50px, -50px);
    }
    66% {
        transform: translate(-50px, 50px);
    }
}

@media (max-width: 767.98px) {
    .countdown-box {
        padding: 1rem 0.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .btn-notify {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .btn-notify svg {
        display: none;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-links {
        gap: 1rem;
    }

    .shape {
        filter: blur(40px);
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .shape-2 {
        width: 300px;
        height: 300px;
    }

    .shape-3 {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .countdown-box {
        padding: 1.25rem 0.75rem;
    }

    .shape {
        filter: blur(50px);
    }
}

@media (max-width: 575.98px) {
    .input-group {
        flex-direction: column;
    }

    .input-group-text,
    .form-control,
    .btn-notify {
        border-radius: 0;
    }

    .input-group-text {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .btn-notify {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        justify-content: center;
    }
}
