/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background-color: #0f172a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 20px;
}

/* Background Animated Blobs */
.background-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 8s infinite alternate ease-in-out;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: #4f46e5;
    top: -50px;
    left: -50px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 40px) scale(1.1); }
}

/* Card Container (Glassmorphism Effect) */
.card-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Logo & Badge */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.logo i {
    color: #38bdf8;
    margin-right: 8px;
}

.logo span {
    color: #38bdf8;
}

.badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Headings */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 12px;
    border-radius: 12px;
    min-width: 75px;
}

.time-box span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #38bdf8;
    display: block;
}

.time-box p {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Subscription Form */
.notify-form {
    max-width: 450px;
    margin: 0 auto 30px auto;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 18px;
    transition: 0.3s;
}

.input-group:focus-within {
    border-color: #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.input-group i {
    color: #94a3b8;
    margin-right: 10px;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.9rem;
}

.input-group input::placeholder {
    color: #64748b;
}

.input-group button {
    background: linear-gradient(135deg, #38bdf8 0%, #4f46e5 100%);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.input-group button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.form-msg {
    font-size: 0.85rem;
    margin-top: 10px;
    color: #4ade80;
}

/* Social Icons */
.footer-socials p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #94a3b8;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #38bdf8;
    color: #0f172a;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 500px) {
    h1 { font-size: 1.7rem; }
    .countdown { gap: 8px; }
    .time-box { min-width: 60px; padding: 10px 8px; }
    .time-box span { font-size: 1.4rem; }
    .input-group { flex-direction: column; border-radius: 16px; padding: 12px; gap: 10px; }
    .input-group button { width: 100%; border-radius: 12px; }
    .input-group i { display: none; }
}