:root {
    --primary-purple: #5E2B8E; /* Primary color from logo */
    --secondary-purple: #8e44ad;
    --accent-purple: #a55eea;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-dark: #121212;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 1.6;
}

/* Background Blobs */
.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-purple);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: blob-move 20s infinite alternate linear;
}

.blob-1 {
    top: -100px;
    left: -100px;
    background: var(--primary-purple);
}

.blob-2 {
    bottom: -150px;
    right: -100px;
    background: var(--secondary-purple);
    animation-delay: -5s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-purple);
    width: 300px;
    height: 300px;
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes blob-move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 50px) scale(1.1); }
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    animation: card-appear 1s ease-out;
}

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

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(94, 43, 142, 0.3));
}

/* Hero Section */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.accent {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 100px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 800;
}

.countdown-item label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* Subscription Form */
.subscription-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

input[type="email"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    flex: 1;
    outline: none;
    transition: var(--transition);
}

input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-purple);
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-purple);
    transform: scale(1.05);
}

.form-message {
    font-size: 0.9rem;
    margin-top: 1rem;
    min-height: 1.4em;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

/* Animations */
.fade-in { animation: fadeIn 0.8s ease-out forwards; }
.fade-in-delay { animation: fadeIn 0.8s ease-out 0.2s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeIn 0.8s ease-out 0.4s forwards; opacity: 0; }
.fade-in-delay-3 { animation: fadeIn 0.8s ease-out 0.6s forwards; opacity: 0; }
.fade-in-delay-4 { animation: fadeIn 0.8s ease-out 0.8s forwards; opacity: 0; }

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

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .countdown { gap: 1rem; }
    .countdown-item { padding: 1rem; min-width: 70px; }
    .countdown-item span { font-size: 1.5rem; }
    .subscription-form { flex-direction: column; }
    .btn-primary { width: 100%; }
}
