
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #0A1931;
    text-align: center;
}

.container {
    padding: 20px;
    max-width: 800px;
    text-align: center;
}

.brand-logo-centered {
    max-width: 220px;
    margin: 0 auto 30px auto;
    display: block;
}

.logo-small {
    max-width: 60%;
    height: auto;
    margin-bottom: 25px;
}

.slogan {
    font-size: 1.3em;
    font-weight: 600;
    color: #0A1931;
    margin-bottom: 20px;
}

.welcome-text {
    font-size: 1.1em;
    margin: 0 auto 25px auto;
    line-height: 1.6;
    max-width: 100%;
    text-align: center;
}

.email-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FF6B2D, #FF9842);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(255, 107, 45, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 45, 0.4);
}

.footer {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.countdown-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #FF6B2D, #FF9842);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(255, 107, 45, 0.3);
}
