* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #6c63ff;
    --accent-glow: rgba(108, 99, 255, 0.4);
    --bg: #030305;
    --surface: #0a0a0c;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ambient Background Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #111119 0%, #030305 100%);
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: orbFloat 25s infinite ease-in-out;
}

.orb-1 {
    top: -100px;
    left: -100px;
}

.orb-2 {
    bottom: -100px;
    right: -100px;
    background: #ff3366;
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* Main Container */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    z-index: 1;
}

/* Logo */
.logo {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out, logoFloat 4s ease-in-out infinite;
}

.logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.2));
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Hero Content */
.badge {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    padding: 0.6rem 1.2rem;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out both;
}

h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    color: var(--text-dim);
    margin-bottom: 0rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Countdown */
.countdown-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.timer-value {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}

.separator {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    margin-top: -0.5rem;
}

/* Footer */
footer {
    background-color: var(--surface);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.experience-text {
    font-size: 1.1rem;
    color: #fff;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 500;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
}

/* Rocket Animation */
.rocket-container {
    position: fixed;
    left: 5%;
    bottom: 10%;
    z-index: 10;
    transition: all 1s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    pointer-events: none;
    animation: fadeIn 1.5s ease-out;
}

.rocket {
    width: 100px;
    height: auto;
    transform: rotate(-45deg);
    animation: idleRocket 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(108, 99, 255, 0.5));
}

.rocket-flame {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 60px;
    background: linear-gradient(to top, transparent, #ff3366, #ff8c00, #fff700);
    border-radius: 50% 50% 20% 20%;
    filter: blur(4px);
    animation: flicker 0.1s infinite alternate;
    opacity: 0.9;
    transform-origin: top;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.6);
}

@keyframes idleRocket {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-43deg) translateY(-10px);
    }
}

@keyframes flicker {
    0% {
        transform: translateX(-50%) scaleY(1);
        opacity: 0.8;
    }

    100% {
        transform: translateX(-50%) scaleY(1.3);
        opacity: 1;
    }
}

.rocket-launching {
    transform: translateY(-120vh) rotate(-45deg) scale(0.8);
    opacity: 0;
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.5s ease-in;
}

.rocket-launching .rocket-flame {
    height: 150px;
    width: 40px;
    filter: blur(8px);
    background: linear-gradient(to top, transparent, #6c63ff, #00f2ff);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo img {
        max-width: 300px;
    }

    .countdown {
        gap: 1rem;
    }

    .timer-unit {
        min-width: 80px;
    }

    .separator {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}