/* Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e53eb;
    --primary-dark: #1438a8;
    --theme-color: #1e53eb;
    --icon-color: #1570ff;
    --background-dark: #0a0a0a;
    --background-darker: #050505;
    --text-light: #e0e0e0;
    --accent: #1570ff;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0f0f1e 100%);
    color: #ffffff;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated background stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Generate random stars */
.stars {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 60px 70px, white, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 50px 50px, white, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 130px 80px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 10px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 130px, white, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 10px 90px, white, rgba(0, 0, 0, 0));
    background-size: 200px 200px;
    background-position: 0 0;
    opacity: 0.5;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.content {
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    margin-bottom: 2rem;
}

.logo h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e53eb 0%, #1570ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    margin: 0;
}

.logo .domain {
    font-size: 1.5rem;
    color: #72767d;
    margin-left: 0.5rem;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #1e53eb;
    margin: 1.5rem 0;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.1rem;
    color: #b5bac1;
    margin: 1rem 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1e53eb, transparent);
    margin: 1.5rem auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.description {
    font-size: 0.95rem;
    color: #72767d;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Countdown Section */
.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.countdown-label {
    font-size: 0.9rem;
    color: #72767d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-icon {
    font-size: 2rem;
    font-weight: 700;
    color: #1e53eb;
    min-width: 50px;
    text-align: center;
}

.countdown-label-small {
    font-size: 0.7rem;
    color: #72767d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-separator {
    font-size: 1.5rem;
    color: #1e53eb;
    margin: 0 0.5rem;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cursor glow effect */
.cursor-glow {
    position: fixed;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(30, 83, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .countdown {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .countdown-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .countdown-separator {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo .domain {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .countdown-item {
        gap: 0.25rem;
    }
    
    .countdown-label-small {
        font-size: 0.6rem;
    }
}
