@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&family=Roboto:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0d111c; /* डार्क नेवी बैकग्राउंड */
    color: white;
    text-align: center;
}

.container {
    max-width: 420px;
    padding: 25px 15px;
    margin: 0 auto;
}

.main-title {
    font-family: 'Merriweather', serif;
    color: #ffc900;
    font-size: 2.8em;
    font-weight: 900;
    margin: 0;
}

.tagline {
    font-family: 'Merriweather', serif;
    color: #ffc900;
    font-size: 1em;
    margin: 10px 0 0 0;
}

.promo {
    font-family: 'Merriweather', serif;
    color: #ffc900;
    font-size: 1.4em;
    font-weight: 900;
    margin: 15px 0 20px 0;
}

.logo {
    width: 150px;
    height: 150px;
    margin: 10px 0;
    border-radius: 50%;
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 25px 0;
}

.timer-box {
    display: flex;
    flex-direction: column;
}

.time {
    font-size: 1.8em;
    font-weight: 700;
    color: #ffffff;
}

.label {
    color: #6a9eff;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 1px;
}

.colon {
    font-size: 1.8em;
    color: #ffffff;
    padding-bottom: 20px; /* To align with numbers */
}

.cta-heading {
    font-size: 1.4em;
    font-weight: 700;
    margin-top: 25px;
    line-height: 1.5;
}

.join-button {
    display: block;
    padding: 15px 20px;
    margin: 20px auto 0 auto;
    background-color: #0072e5;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0, 114, 229, 0.5);
    transition: transform 0.2s ease;
    max-width: 300px;
}

.join-button:hover {
    transform: scale(1.05);
}

.join-button small {
    font-size: 0.5em;
    font-weight: normal;
    display: block;
    margin-top: 2px;
    opacity: 0.9;
}