@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
    background-color: #0a0520;
    color: #ffffff;
    font-family: 'Press Start 2P', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated road background */
.road {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #0f0f1a 40%,
        #1a1a2e 100%
    );
    z-index: 0;
}

.lane-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: #c8c8e0;
    animation: roadScroll 0.8s linear infinite;
}

@keyframes roadScroll {
    from { transform: translateX(-50%) translateY(-100px); }
    to   { transform: translateX(-50%) translateY(100vh); }
}

/* Stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 0;
}

.star {
    position: absolute;
    background: #ffffff;
    animation: twinkle 2s infinite alternate;
}

@keyframes twinkle {
    from { opacity: 0.3; }
    to   { opacity: 1; }
}

/* Neon city skyline */
.skyline {
    position: fixed;
    bottom: 30%;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
}

.building {
    background: #0d0d1a;
    position: relative;
}

.building::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    right: 4px;
    height: 4px;
    background: rgba(255, 45, 120, 0.6);
    box-shadow: 0 0 8px #ff2d78;
    animation: windowFlicker 3s infinite alternate;
}

@keyframes windowFlicker {
    0%   { opacity: 1; }
    85%  { opacity: 1; }
    86%  { opacity: 0.2; }
    87%  { opacity: 1; }
    95%  { opacity: 1; }
    96%  { opacity: 0.1; }
    100% { opacity: 1; }
}

/* Main content */
.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.logo {
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: #00f5ff;
    text-shadow:
        0 0 10px #00f5ff,
        0 0 20px #00f5ff,
        0 0 40px #00f5ff;
    margin-bottom: 0.5rem;
    animation: logoPulse 2s ease-in-out infinite alternate;
    line-height: 1.4;
}

@keyframes logoPulse {
    from { text-shadow: 0 0 10px #00f5ff, 0 0 20px #00f5ff, 0 0 40px #00f5ff; }
    to   { text-shadow: 0 0 20px #00f5ff, 0 0 40px #00f5ff, 0 0 80px #00f5ff, 0 0 100px #00f5ff; }
}

.tagline {
    font-size: clamp(0.4rem, 1.5vw, 0.6rem);
    color: #ff2d78;
    text-shadow: 0 0 10px #ff2d78;
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
}

.coming-soon {
    font-size: clamp(0.5rem, 2vw, 0.75rem);
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 2.5;
}

.coming-soon span {
    color: #ffaa00;
    text-shadow: 0 0 8px #ffaa00;
}

/* Pixel car */
.car {
    font-size: 2rem;
    margin: 1.5rem 0;
    animation: carBob 1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px #00f5ff);
}

@keyframes carBob {
    from { transform: translateY(0px); }
    to   { transform: translateY(-6px); }
}

/* Social links */
.social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social a {
    color: #9d00ff;
    text-decoration: none;
    font-size: clamp(0.35rem, 1.2vw, 0.5rem);
    text-shadow: 0 0 8px #9d00ff;
    border: 1px solid #9d00ff;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
    letter-spacing: 0.1em;
}

.social a:hover {
    background: #9d00ff;
    color: #ffffff;
    box-shadow: 0 0 20px #9d00ff;
}

/* Rain effect */
.rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.raindrop {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 245, 255, 0.3));
    animation: fall linear infinite;
}

@keyframes fall {
    from { transform: translateY(-100px); opacity: 1; }
    to   { transform: translateY(100vh); opacity: 0; }
}

.footer {
    position: fixed;
    bottom: 1rem;
    font-size: 0.35rem;
    color: rgba(255,255,255,0.3);
    z-index: 10;
    letter-spacing: 0.1em;
}