@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

body {
    background: linear-gradient(135deg, #f7f9fc, #eef2f7);
    color: #111;
    overflow-x: hidden;
    background-image: url("../images/163.jpg");
    background-size: cover;
    /* full screen */
    background-position: center;
    /* center focus */
    background-repeat: no-repeat;
    /* no repeat */
    background-attachment: fixed;
    /* smooth scroll */
}


/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.countdown {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.6);
    padding: 14px 20px;
    border-radius: 14px;
    text-align: center;
}

.countdown span {
    font-size: 12px;
    opacity: 0.7;
}

#timer {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

#timer div {
    text-align: center;
}

#timer strong {
    font-size: 22px;
    display: block;
}


/* HERO */

.hero {
    height: calc(70vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* ROAD */

.road {
    width: 100%;
    height: 360px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}


/* CAR */

.car {
    position: absolute;
    bottom: 20px;
    left: -300px;
    width: 360px;
    animation: drive 6s linear infinite;
}

.car img {
    width: 100%;
    display: block;
}


/* CCS blinking light on top of car */

.beacon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #0077ff;
    border-radius: 10px;
    box-shadow: 0 0 14px rgba(0, 119, 255, 0.8);
    animation: blink 1.4s infinite;
}


/* GLASS CARD */

.glass-card {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.55);
    padding: 50px;
    border-radius: 22px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.glass-card h1 {
    font-size: 32px;
    margin-bottom: 14px;
}

.glass-card p {
    font-size: 16px;
    opacity: 0.85;
}

.tagline {
    display: block;
    margin-top: 14px;
    font-weight: 600;
}


/* CENTER LAUNCH TIMER */

.launch-timer {
    text-align: center;
    margin: 30px 0 50px;
}

.launch-label {
    display: block;
    font-weight: 800;
    font-size: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 14px;
}


/* TIMER BOX */

.timer-box {
    display: inline-flex;
    align-items: center;
    padding: 22px 36px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}


/* TIME BLOCK */

.time {
    text-align: center;
    min-width: 90px;
}

.time span {
    display: block;
    font-size: 44px;
    font-weight: 600;
    color: #111;
}

.time small {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}


/* DIVIDER */

.divider {
    font-size: 36px;
    margin: 0 10px;
    color: #999;
}

@media (max-width: 768px) {
    .time span {
        font-size: 22px;
    }
    .time {
        min-width: 70px;
    }
}


/* HIDE LIVE STATE INITIALLY */


/* NUMBER ANIMATION */

.launch-live {
    display: none;
    font-size: 32px;
    font-weight: 600;
    margin-top: 24px;
    color: #0077ff;
}


/* Number animation */

.time span {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.time span.tick {
    transform: translateY(-6px);
    opacity: 0.6;
}


/* Slightly smaller seconds */

.time.seconds span {
    font-size: 36px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ANIMATIONS */

@keyframes drive {
    0% {
        left: -200px;
    }
    100% {
        left: 110%;
    }
}

@keyframes blink {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}


/* MOBILE */

@media (max-width: 768px) {
    .header {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
    }
    .glass-card {
        margin: 0 20px;
        padding: 36px;
    }
    .time.seconds span {
        font-size: 22px;
    }
    .timer-box {
        display: inline-flex;
        align-items: center;
        padding: 21px 15px;
    }
}