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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container {
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 600px;
    padding: 2rem;
}

.logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.launch-date {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.launch-date h2 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.location {
    font-size: 1.1rem;
    opacity: 0.8;
}

.valentine-message {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.valentine-message h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffb3ba;
}

.notify-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
}

.notify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.notify-btn:hover {
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.heart1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.heart2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.heart3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.heart4 {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .launch-date h2 {
        font-size: 1.8rem;
    }
    
    .notify-section {
        flex-direction: column;
    }
    
    .container {
        padding: 1rem;
    }
}