* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #0f172a, #1e1b4b, #312e81);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
    color: #ffffff;
    padding: 20px;
}

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

/* Floating Shapes */
.shape {
    position: absolute;
    filter: blur(60px);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #4f46e5;
    top: 10%;
    left: 15%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: 10%;
    right: 10%;
    animation-delay: -2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #c026d3;
    top: 40%;
    right: 30%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Glassmorphism Card */
.glass-card {
    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: 3rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.highlight {
    color: #38bdf8;
}

.badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(to right, #38bdf8, #818cf8, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.glass-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.glass-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.glass-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.glass-box p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Form */
.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: white;
    font-size: 1rem;
    outline: none;
}

input[type="email"]::placeholder {
    color: #94a3b8;
}

button {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .glass-card { padding: 2rem 1.5rem; }
    .subscribe-form { flex-direction: column; background: transparent; border: none; padding: 0; }
    input[type="email"] { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 30px; margin-bottom: 10px; width: 100%; }
    button { width: 100%; }
    .countdown-wrapper { gap: 1rem; }
    .glass-box { min-width: 70px; padding: 1rem; }
    .glass-box span { font-size: 1.8rem; }
    .glass-box p { font-size: 0.7rem; }
}
