:root {
    --bg-color: #05051a;
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-purple: #bc13fe;
    --text-color: #fff;
    --grid-color: rgba(0, 255, 255, 0.2);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

/* Retro Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(transparent 0%, var(--grid-color) 2px, transparent 2px),
        linear-gradient(90deg, transparent 0%, var(--grid-color) 2px, transparent 2px);
    background-size: 50px 50px;
    perspective: 500px;
    transform: rotateX(60deg) scale(2);
    transform-origin: center top;
    animation: grid-move 2s linear infinite;
    z-index: -1;
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

/* CRT Scanline Effect */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.25) 50%
    ), linear-gradient(
        90deg, 
        rgba(255, 0, 0, 0.06), 
        rgba(0, 255, 0, 0.02), 
        rgba(0, 0, 255, 0.06)
    );
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 10;
}

.container {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
}

/* Typography & Glitch Header */
.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    position: relative;
    letter-spacing: 10px;
    margin-bottom: 0.5rem;
}

.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: var(--neon-pink);
    z-index: -1;
    animation: glitch-anim 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

.glitch::after {
    color: var(--neon-purple);
    z-index: -2;
    animation: glitch-anim 0.3s cubic-bezier(.25, .46, .45, .94) reverse both infinite;
}

@keyframes glitch-anim {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

.subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
    margin-bottom: 3rem;
}

/* Timer Styles */
.timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.8rem;
    color: var(--neon-blue);
    letter-spacing: 2px;
}

.status-bar {
    font-family: 'monospace';
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--neon-pink);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--neon-pink);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Footer & Buttons */
.album-info p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0.8;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.neon-btn {
    text-decoration: none;
    color: #fff;
    border: 2px solid var(--neon-pink);
    padding: 0.8rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-pink);
    overflow: hidden;
}

.neon-btn:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 30px var(--neon-pink);
    color: #000;
}

@media (max-width: 600px) {
    .timer {
        gap: 1rem;
    }
    .time-block {
        min-width: 60px;
    }
}