:root {
    /* Color Palette */
    --bg-color: #05050A;
    --card-bg: rgba(20, 20, 30, 0.4);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B0;
    
    /* Brand Colors */
    --brand-primary: #7000FF; /* Deep Purple */
    --brand-secondary: #00E5FF; /* Cyan */
    --brand-accent: #FF0066; /* Magenta */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* --- BACKGROUND ANIMATIONS --- */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--brand-secondary) 0%, transparent 70%);
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--brand-accent) 0%, transparent 70%);
    animation-delay: -10s;
    animation-duration: 30s;
    opacity: 0.4;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 5%) scale(1.1); }
    66% { transform: translate(-5%, 10%) scale(0.9); }
    100% { transform: translate(10%, -5%) scale(1.05); }
}

/* --- MAIN CONTAINER & GLASS CARD --- */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    perspective: 1000px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateZ(30px); /* 3D effect for content */
}

/* --- TYPOGRAPHY & ELEMENTS --- */
.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    animation: fadeDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 229, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    animation: fadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.logo-text .highlight {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

.description {
    max-width: 500px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    animation: fadeUp 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* --- COUNTDOWN --- */
.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
    animation: fadeUp 1s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 16px;
    min-width: 80px;
}

.time-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-secondary);
}

.time-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-top: 5px;
}

.separator {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 10px;
}

/* --- NEWSLETTER FORM --- */
.newsletter {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
    animation: fadeUp 1s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.newsletter p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    transition: all 0.3s ease;
}

.notify-form:focus-within {
    border-color: var(--brand-secondary);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notify-form button {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notify-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(112, 0, 255, 0.4);
}

.success-message {
    margin-top: 10px;
    color: var(--brand-secondary);
    font-size: 0.9rem;
    animation: fadeUp 0.3s ease forwards;
}

/* --- SOCIAL LINKS --- */
.social-links {
    display: flex;
    gap: 15px;
    animation: fadeUp 1s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--text-primary);
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(112, 0, 255, 0.4);
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .logo-text { font-size: 3.5rem; }
    .subtitle { font-size: 1.2rem; }
    .glass-card { padding: 2rem; }
    
    .countdown { gap: 10px; }
    .time-box { min-width: 65px; padding: 10px; }
    .time-value { font-size: 1.5rem; }
    .time-label { font-size: 0.65rem; }
    .separator { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 2.8rem; }
    .glass-card { padding: 1.5rem; border-radius: 24px; }
    
    .notify-form { flex-direction: column; border-radius: 16px; padding: 10px; background: rgba(0,0,0,0.4); }
    .notify-form input { text-align: center; margin-bottom: 10px; }
    .notify-form button { width: 100%; justify-content: center; border-radius: 12px; }
    
    .countdown { flex-wrap: wrap; justify-content: center; }
    .separator { display: none; }
    .time-box { margin: 5px; }
}
