/* Reset some default styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #3B003D, #FFD000);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.coming-soon-container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.time-box {
    background: #000;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

.time-box span {
    font-size: 24px;
    font-weight: bold;
}

.subscribe {
    display: flex;
    gap: 10px;
}

input[type="email"] {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background-color: #FFD000;
    color: #3B003D;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #F3EB87;
}
