:root {
    --neon-blue: #00e5ff;
    --neon-cyan: #00fbff;
    --neon-red: #ff0055;
}

body {
    background-color: #000;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    min-height: 100vh;
}

/* MASSIVE TITLE CONTAINER */
#hero-logo-container {
    width: 95%;
    max-width: 1200px;
    height: auto;
    margin: 60px auto 20px auto;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

#hero-logo-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px var(--neon-blue));
}

/* SOUND WAVES BACKGROUND */
.sound-wave-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.wave-bar {
    width: 10px;
    background: var(--neon-blue);
    height: 10px;
    animation: bounce 1s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-blue);
}

@keyframes bounce {
    0%, 100% { height: 10px; }
    50% { height: 100px; }
}

/* TRACK COVERS - 1/4 SIZE FIX */
.track-item img {
    width: 150px; /* Reduced from 300px to 150px */
    height: 150px;
    border-radius: 12px;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    transition: 0.3s ease;
}

.track-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--neon-blue);
}

/* ALIGNMENT FOR BUTTONS & TEXT */
.nav-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.subtitle {
    letter-spacing: 5px;
    color: #444;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* SHARED THEME FOR ALL PAGES */
.btn, .genre-btn {
    border: 1px solid var(--neon-blue);
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover { background: var(--neon-blue); color: black; box-shadow: 0 0 15px var(--neon-blue); }

/* ANIMATION KEYFRAMES */
@keyframes electricFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; filter: brightness(1.2); }
    20%, 24%, 55% { opacity: 0.2; filter: none; }
}

@keyframes angelFlight {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* YouTube Creator Button */
.yt-creator-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #000;
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 0 10px #ff0000;
    transition: 0.3s all ease-in-out;
    z-index: 1000;
    animation: electricFlicker 4s linear infinite;
}

.yt-creator-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #ff0000;
    background: #ff0000;
}

.yt-creator-btn svg {
    width: 24px;
    height: 24px;
    fill: #ff0000;
    transition: 0.3s;
}

.yt-creator-btn:hover svg {
    fill: #000;
}
