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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Animated background elements */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: #ffffff;
    top: 10%;
    left: 10%;
}

.shape2 {
    width: 200px;
    height: 200px;
    background: #ffffff;
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape3 {
    width: 150px;
    height: 150px;
    background: #ffffff;
    top: 60%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

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

.logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.coming-soon {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: #909090;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #333;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50px;
    outline: none;
}

.email-input:focus {
    border-color: #ffffff;
}

.submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: #808080;
    text-decoration: none;
}

.social-link:hover {
    color: #ffffff;
}

.success-message {
    display: none;
    padding: 1rem 2rem;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    color: #4CAF50;
    margin-top: 1rem;
}

.success-message.show {
    display: block;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    .coming-soon {
        font-size: 2.5rem;
    }

    .email-form {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }
}
