/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Background animation */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffffff, #f5f5f5);
    z-index: -1;
}

/* Container styles */
.container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Logo styles */
.logo-container {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
}

/* Coming soon section */
.coming-soon {
    margin-bottom: 3rem;
}

.coming-soon p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Animated text styles */
.animated-text {
    height: 40px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}

.text-wrapper {
    position: absolute;
    width: 100%;
    text-align: center;
    animation: cycle 15s linear infinite;
    min-width: 250px;
}

.text-wrapper span {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

/* Notification form styles */
.notification-form {
    margin-bottom: 2rem;
}

.notification-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.notification-form p {
    margin-bottom: 1.5rem;
    color: #666;
}

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

input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 1rem;
}

input[type="email"]::placeholder {
    color: #999;
}

button {
    padding: 0.8rem 2rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Contact info styles */
.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #444;
}

/* Animations */
@keyframes cycle {
    0%, 20% {
        transform: translateY(0);
    }
    25%, 45% {
        transform: translateY(-40px);
    }
    50%, 70% {
        transform: translateY(-80px);
    }
    75%, 95% {
        transform: translateY(-120px);
    }
    100% {
        transform: translateY(0);
    }
}

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

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

    .logo {
        width: 150px;
    }

    .coming-soon p {
        font-size: 1.2rem;
    }

    .text-wrapper span {
        font-size: 1.2rem;
    }

    .notification-form h2 {
        font-size: 1.5rem;
    }

    form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .logo {
        width: 120px;
    }

    .coming-soon p {
        font-size: 1rem;
    }

    .text-wrapper span {
        font-size: 1rem;
    }

    .animated-text {
        height: 60px;
    }

    .text-wrapper {
        min-width: 100%;
    }
} 