:root {
    --primary: #9d50bb;
    --secondary: #6e48aa;
    --accent: #00f2fe;
    --bg-dark: #0f0c29;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.blob-1 { top: -10%; left: -10%; background: var(--primary); }
.blob-2 { bottom: -10%; right: -10%; background: var(--secondary); }
.blob-3 { top: 40%; left: 30%; background: var(--accent); width: 300px; height: 300px; animation-duration: 25s; }

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Container & Glass Card */
.container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    animation: fadeIn 1.5s ease-out;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 40px;
    color: var(--accent);
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.time-box {
    display: flex;
    flex-direction: column;
}

.time-box span {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.time-box small {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
}

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

.subscription input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 15px 25px;
    color: #fff;
    font-size: 1rem;
}

.subscription button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subscription button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

/* Footer & Socials */
.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .countdown { gap: 15px; }
    .time-box span { font-size: 1.8rem; }
    .glass-card { padding: 40px 20px; }
    .subscription form { flex-direction: column; border-radius: 20px; }
    .subscription button { margin-top: 10px; width: 100%; }
}
