* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #ffffff;
    color: #000000;
}

.coming-soon {
    text-align: center;
    padding: 20px;
}

.logo img {
    width: 150px;
    animation: fadeIn 2s ease-in-out;
}

h1 {
    margin-top: 20px;
    font-size: 2.5em;
    animation: slideIn 1.5s ease-out;
}

p {
    margin: 20px 0;
    font-size: 1.2em;
    color: #000000;
}

.countdown {
    font-size: 1.5em;
    color: #f39c12;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.subscription-form input {
    padding: 10px;
    font-size: 1em;
    width: 200px;
    border: 1px solid #fff;
    border-radius: 20px 0 0 20px;
    outline: none;
}

.subscription-form button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    background-color: #f39c12;
    color: #fff;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); }
    to { transform: translateY(0); }
}
