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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 100%);
    color: #4169e1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 1;
    position: relative;
}

.coming-soon-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #4169e1;
    text-shadow: 2px 2px 4px rgba(65, 105, 225, 0.3);
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #6495ed;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Falling hearts animation */
.heart {
    position: fixed;
    top: -20px;
    z-index: 10;
    animation: fall linear infinite;
    color: #ff1493;
    font-size: 20px;
    user-select: none;
    pointer-events: none;
}

@keyframes fall {
    to {
        transform: translateY(calc(100vh + 20px)) rotate(360deg);
    }
}

/* Mouse-following hearts */
.mouse-heart {
    position: fixed;
    pointer-events: none;
    z-index: 20;
    color: #ff1493;
    font-size: 16px;
    animation: mouseHeartFade 1s ease-out forwards;
    user-select: none;
}

@keyframes mouseHeartFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 2rem;
    }
    
    .coming-soon-text {
        margin-bottom: 1rem;
    }
}
