:root {
    --bg-color: #050505;
    --text-white: #f5f5f5;
    --text-accent: #00d4ff; /* Electric blue */
    --font-main: 'Inter', sans-serif;
    --font-glitch: 'Wallpoet', cursive;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

main {
    width: 100%;
}

.white-text {
    color: var(--text-white);
}

.accent-text {
    color: var(--text-accent);
}

/* Typography for titles */
.glitch-title {
    font-family: var(--font-glitch);
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.glitch-title.center {
    text-align: center;
    font-size: 5rem;
}

/* SECTION 1: Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.content-left {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.description {
    margin-top: 2rem;
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

.logo-area {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.edition {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.edition .bold-text {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.edition .small-text {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: #666;
    margin-top: 5px;
}

.divider {
    width: 2px;
    height: 40px;
    background-color: var(--text-red);
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-small {
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: -5px;
}

.brand-large {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-accent);
    font-family: 'Wallpoet', cursive;
}

.content-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 800px;
    z-index: 1;
    pointer-events: none;
}

.gears-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gear {
    position: absolute;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.9)) drop-shadow(0 0 40px rgba(0,0,0,0.6));
    transform-origin: center;
}

.gear-main {
    width: 450px;
    height: 450px;
    top: 250px;
    left: 200px;
}

/* Offset rotation so teeth mesh */
.gear-secondary {
    width: 300px;
    height: 300px;
    top: 70px;
    left: 10px;
    transform: rotate(22deg);
}

.gear-tertiary {
    width: 220px;
    height: 220px;
    top: 590px;
    left: 80px;
    transform: rotate(10deg);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-color) 0%, rgba(5,5,5,0) 40%, rgba(5,5,5,0) 100%);
}

/* SECTION 2: Countdown */
.countdown-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(30,30,30,0.4) 0%, var(--bg-color) 70%);
}

.launch-label {
    font-size: 0.8rem;
    letter-spacing: 8px;
    color: #777;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.date-location {
    margin-top: 1.5rem;
    color: #999;
    font-size: 1rem;
    letter-spacing: 1px;
}

.countdown-container {
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
}

.time-box {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.time-value {
    font-family: var(--font-glitch);
    font-size: 3.5rem;
    line-height: 1;
}

.time-label {
    margin-top: 10px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #666;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 8%;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #555;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .glitch-title {
        font-size: 3.5rem;
    }
    .glitch-title.center {
        font-size: 4rem;
    }
    .content-right {
        right: -30%;
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0 5%;
        text-align: center;
    }
    .content-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .glitch-title {
        font-size: 2.8rem;
    }
    .glitch-title.center {
        font-size: 3rem;
    }
    .countdown-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .time-box {
        width: 100px;
        height: 100px;
    }
    .time-value {
        font-size: 2.5rem;
    }
    .logo-area {
        justify-content: center;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 5%;
        position: static;
        background: transparent;
        border: none;
    }
}
