* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0F283A;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 30px 20px 60px;
    text-align: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 10px;
}

.header-left,
.header-right {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #0F283A;
    text-transform: uppercase;
}

.logo-section {
    margin-bottom: 40px;
}

.logo {
    width: 240px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.badge-line {
    width: 40px;
    height: 2px;
    background-color: #E14726;
}

.badge-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #E14726;
    text-transform: uppercase;
}

.headline {
    margin-bottom: 50px;
}

.headline h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    color: #0F283A;
    margin-bottom: 16px;
}

.headline  em {
    font-style: italic;
    color: #E14726;
}


.subtitle {
    font-size: 16px;
    color: #5a6d7a;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 400;
    color: #0F283A;
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    box-shadow: 0 -4px 8px rgba(225, 71, 38, 0.3);
    margin-bottom: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.countdown-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 -6px 12px rgba(225, 71, 38, 0.4);
}

.countdown-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #8a9baa;
    text-transform: uppercase;
}

.launch-date {
    font-size: 14px;
    color: #5a6d7a;
    margin-bottom: 24px;
}

.launch-date strong {
    color: #0F283A;
}

.notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b3d, #E14726, #b8301a);
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 30px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.notify-btn svg {
    width: 16px;
    height: 16px;
}

.notify-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .headline h1 {
        font-size: 28px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-value {
        width: 70px;
        height: 70px;
        font-size: 28px;
        border-radius: 12px;
    }

    .header-left,
    .header-right {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .logo {
        width: 140px;
    }
}