:root {
    --primary: #6366f1;
    --primary-dark: #4338ca;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --success: #10b981;
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-glass: rgba(255, 255, 255, 0.1);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background span {
    width: 10vmin;
    height: 10vmin;
    border-radius: 10vmin;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: absolute;
    top: 50%;
    left: 50%;
    animation: move 10s linear infinite;
    opacity: 0;
}

.background span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.background span:nth-child(2) {
    top: 80%;
    left: 70%;
    animation-delay: 2s;
}

.background span:nth-child(3) {
    top: 30%;
    left: 90%;
    animation-delay: 4s;
}

.background span:nth-child(4) {
    top: 70%;
    left: 10%;
    animation-delay: 6s;
}

.background span:nth-child(5) {
    top: 50%;
    left: 40%;
    animation-delay: 8s;
}

.background span:nth-child(6) {
    top: 20%;
    left: 60%;
    animation-delay: 10s;
}

.background span:nth-child(7) {
    top: 90%;
    left: 5%;
    animation-delay: 12s;
}

@keyframes move {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.1;
    }

    100% {
        transform: translate(50vw, 50vh) scale(1.5);
        opacity: 0;
    }
}

/* Main content styles */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    animation: fadeInUp 1s ease-in-out;
}

.coming-soon {
    animation: fadeInUp 1s ease-in-out 0.2s backwards;
}

.coming-soon h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    background: -webkit-linear-gradient(45deg, var(--text-primary), var(--text-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon p {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-in-out 0.4s backwards;
}

.countdown-item {
    background: var(--bg-glass);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    min-width: 100px;
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.countdown-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-in-out 0.6s backwards;
}

.subscribe-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    border-radius: 8px;
    color: var(--text-primary);
    width: 300px;
    font-size: 1rem;
}

.subscribe-input::placeholder {
    color: var(--text-muted);
}

.subscribe-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: var(--primary-dark);
}

.social-links {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-in-out 0.8s backwards;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .coming-soon h1 {
        font-size: 2rem;
    }

    .coming-soon p {
        font-size: 1rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 1rem 0.5rem;
    }

    .countdown-item span {
        font-size: 1.5rem;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe-input {
        width: 100%;
        max-width: 300px;
    }
}
