
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* ===============================
   HEADER
=============================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 55px;
}

.logo-text {
    font-family: "Orbitron", sans-serif;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 0 8px #ff004c;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-family: "Orbitron", sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ff004c;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

.bar {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ===============================
   COUNTDOWN SECTION
=============================== */
.countdown-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: radial-gradient(circle at 50% 30%, #0a0a0a, #000);
}

.countdown-title {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 0 15px #ff004c, 0 0 25px rgba(255, 0, 76, 0.4);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px 35px;
    text-align: center;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(255, 0, 76, 0.05);
}

.time-box:hover {
    border-color: #ff004c;
    box-shadow: 0 0 25px rgba(255, 0, 76, 0.3);
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff004c;
    text-shadow: 0 0 20px rgba(255, 0, 76, 0.6);
    font-family: "Orbitron", sans-serif;
}

.time-box p {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #ccc;
    text-transform: uppercase;
}

#launch-message {
    margin-top: 40px;
    font-family: "Orbitron", sans-serif;
    font-size: 1.3rem;
    color: #ff004c;
    text-shadow: 0 0 20px #ff004c;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

#launch-message.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   FOOTER
=============================== */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 10%;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 -5px 15px rgba(255, 0, 76, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-text {
    font-family: "Orbitron", sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    text-shadow: 0 0 10px rgba(255, 0, 76, 0.15);
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ff004c;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    text-shadow: 0 0 10px #ff004c, 0 0 20px #ff004c;
}

.footer-links span {
    color: #666;
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */
@media (max-width: 1024px) {
    .countdown-title {
        font-size: 1.7rem;
        margin-bottom: 40px;
    }
    .time-box {
        width: 110px;
        height: 110px;
        padding: 20px;
    }
    .time-box span {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -240px;
        width: 220px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(8px);
        transition: right 0.4s ease;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    nav ul li a {
        font-size: 18px;
    }

    nav.open {
        right: 0;
    }

    .countdown-section {
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .countdown-container {
        gap: 25px;
    }

    .time-box {
        width: 100px;
        height: 100px;
    }

    .time-box span {
        font-size: 1.8rem;
    }
}

@media (max-width: 500px) {
    .logo img {
        height: 45px;
    }

    .countdown-title {
        font-size: 1.3rem;
    }

    .time-box {
        width: 90px;
        height: 90px;
    }

    .time-box span {
        font-size: 1.5rem;
    }

    #launch-message {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.75rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

/* ===============================
   FIX FOOTER POSITION
=============================== */
html, body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

body > footer {
    margin-top: auto;
}

/* ===============================
   SCROLLBAR
=============================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff004c, #5f0080);
    border-radius: 10px;
}
