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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.content {
    max-width: 800px;
    text-align: center;
    z-index: 10;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: #ffd93d;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.8;
    line-height: 1.5;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

.notify-section {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.notify-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.email-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 15px;
    flex-wrap: wrap;
}

#email {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    outline: none;
}

#email::placeholder {
    color: #666;
}

#notify-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

#notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.form-message {
    font-size: 0.9rem;
    margin-top: 10px;
    min-height: 20px;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #ff5252;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #ffd93d;
    transform: translateY(-2px);
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.floating-icon:nth-child(3) {
    top: 30%;
    left: 75%;
    animation-delay: -10s;
}

.floating-icon:nth-child(4) {
    top: 70%;
    left: 20%;
    animation-delay: -15s;
}

.floating-icon:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0px) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .notify-section {
        padding: 30px 20px;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
    }
    
    #email, #notify-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .social-links {
        gap: 20px;
    }
}