/* Coming Soon Page - Pure Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coming-soon {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.logo-animation {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.sparkle {
    font-size: 5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.main-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(20, 184, 166, 0.5),
        0 0 30px rgba(16, 185, 129, 0.3);
    animation: glow 2s ease-in-out infinite;
    letter-spacing: 0.05em;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(20, 184, 166, 0.5),
            0 0 30px rgba(16, 185, 129, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(20, 184, 166, 0.8),
            0 0 60px rgba(16, 185, 129, 0.6);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out both;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dots span:nth-child(1) { animation-delay: -0.32s; }
.dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .main-title { font-size: clamp(3rem, 15vw, 6rem); }
    .subtitle { font-size: 1.2rem; padding: 0 1rem; }
    .sparkle { font-size: 4rem; }
}
