/* Variables */
:root {
    --main-dark: #0E0B2C;
    --main-accent: #8A4FFF;
    --secondary-accent: #FC7A57;
    --text-light: #F5F5F7;
    --stars-color: rgba(255, 255, 255, 0.8);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, var(--main-dark), #1C1642);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
}

/* Starry Background */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: var(--stars-color);
    border-radius: 50%;
    animation: twinkle 4s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

/* Content Container */
.container {
    max-width: 800px;
    text-align: center;
    z-index: 1;
    position: relative;
    background-color: rgba(14, 11, 44, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Section */
.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--main-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, var(--main-accent), var(--secondary-accent));
    border-radius: 2px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Main Content */
.coming-soon {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--secondary-accent);
}

.description {
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 1.5rem;
}

/* Form & CTA */
.newsletter {
    margin-bottom: 2rem;
}

.newsletter-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.email-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
}

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

.submit-btn {
    background: linear-gradient(90deg, var(--main-accent), var(--secondary-accent));
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Zodiac Animation */
.zodiac-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.zodiac {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 2rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .email-form {
        flex-direction: column;
        width: 100%;
    }

    .email-input {
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .submit-btn {
        border-radius: 8px;
        padding: 0.8rem;
    }
}