:root {
    --primary: #00AEEF;
    --primary-light: rgba(0, 174, 239, 0.1);
    --text: #2C3E50;
    --text-light: #94A3B8;
    --background: #FFFFFF;
    --shadow: rgba(0, 174, 239, 0.08);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 2rem 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 300px;
    }
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.coming-soon {
    text-align: center;
}

.coming-soon h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 2px 2px 4px var(--shadow);
    letter-spacing: -1px;
}

.coming-soon p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    color: var(--text-dark);
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.countdown-item .label {
    font-size: 1rem;
    color: var(--gray);
}

.newsletter {
    text-align: center;
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.newsletter h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.notify-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary-light);
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.notify-form input:focus {
    border-color: var(--primary-color);
}

.notify-form button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notify-form button:hover {
    background: var(--primary-dark);
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--gray);
}

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

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

    h1 {
        font-size: 2rem;
    }

    .countdown {
        gap: 1.5rem;
        margin: 3rem 0;
    }

    .countdown-item .number {
        font-size: 2.5rem;
    }

    .notify-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .notify-form input,
    .notify-form button {
        width: 100%;
    }
}

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

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

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-item span {
        font-size: 1.8rem;
    }

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

    .notify-form button {
        width: 100%;
    }
}
