/**
 * kAiThink - Main Stylesheet
 * Neon/Synthwave Design
 *
 * @copyright reDim GmbH | @link https://www.redim.de | @contact team@redim.de
 */

/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/orbitron-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/orbitron-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/orbitron-latin-900-normal.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    /* Colors */
    --bg-dark: #0a0a12;
    --bg-darker: #050508;
    --neon-pink: #ff2d75;
    --neon-cyan: #00f0ff;
    --neon-purple: #9d4edd;
    --warm-accent: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Glow Effects */
    --glow-pink: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    --glow-cyan: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    --glow-pink-subtle: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
    --glow-cyan-subtle: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--neon-pink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Glow Animations
   ========================================================================== */

/* 1. Text Neon Flicker */
@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.neon-flicker {
    animation: neon-flicker 4s ease-in-out infinite;
}

/* 2. Hover Glow Burst */
.glow-burst {
    transition: all var(--transition-base);
}

.glow-burst:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink), 0 0 60px rgba(255, 45, 117, 0.5);
}

/* 3. Border Glow Pulse */
@keyframes border-glow-pulse {
    0%, 100% { box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan); }
    50% { box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), 0 0 60px rgba(0, 240, 255, 0.3); }
}

.glow-pulse {
    animation: border-glow-pulse 3s ease-in-out infinite;
}

/* 4. Cursor Glow Trail */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(255, 45, 117, 0.1) 30%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9997;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-glow.active {
    opacity: 1;
}

/* 5. Scroll-triggered Glow */
.reveal-glow {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-glow.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glow-in {
    0% { filter: drop-shadow(0 0 0 transparent); }
    50% { filter: drop-shadow(0 0 30px var(--neon-cyan)); }
    100% { filter: drop-shadow(0 0 0 transparent); }
}

.reveal-glow.active.glow-animate {
    animation: glow-in 1s ease-out forwards;
}

/* 6. Ambient Background Glow */
.ambient-glow {
    position: relative;
}

.ambient-glow::before,
.ambient-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: ambient-float 15s ease-in-out infinite;
    pointer-events: none;
}

.ambient-glow::before {
    width: 600px;
    height: 600px;
    background: rgba(255, 45, 117, 0.15);
    top: -200px;
    right: -200px;
}

.ambient-glow::after {
    width: 500px;
    height: 500px;
    background: rgba(0, 240, 255, 0.1);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

@keyframes ambient-float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(20px, 30px); }
}

/* 7. Track Hover Neon Line */
.track-item {
    position: relative;
    padding-left: 20px;
    transition: var(--transition-base);
    z-index: 1;
}

.track-item.menu-active {
    z-index: 99999;
}

.track-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    transition: height var(--transition-base);
}

.track-item:hover::before {
    height: 100%;
}

.track-item:hover {
    color: var(--neon-pink);
    padding-left: 25px;
}

/* 8. Button Reflection Sweep */
.btn-sweep {
    position: relative;
    overflow: hidden;
}

.btn-sweep::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.btn-sweep:hover::after {
    left: 150%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 10, 18, 0.95);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.nav-logo.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-logo img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan-subtle);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan-subtle);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    min-width: 120px;
}

.lang-switcher:hover .lang-dropdown,
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   Mobile Navigation Overlay
   ========================================================================== */

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-darker);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 45, 117, 0.2) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    pointer-events: none;
}

.nav-mobile::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    bottom: 20%;
    left: -50px;
    pointer-events: none;
}

.nav-mobile-links {
    list-style: none;
    text-align: center;
}

.nav-mobile-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.nav-mobile.active .nav-mobile-links li {
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile.active .nav-mobile-links li:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active .nav-mobile-links li:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.active .nav-mobile-links li:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile.active .nav-mobile-links li:nth-child(4) { transition-delay: 0.4s; }

.nav-mobile-links a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.nav-mobile-links a:hover {
    text-shadow: var(--glow-cyan);
}

.nav-mobile-lang {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.nav-mobile-lang a {
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
}

.nav-mobile-lang a.active {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink-subtle);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 18, 0.3) 0%,
        rgba(10, 10, 18, 0.5) 50%,
        var(--bg-dark) 100%
    );
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}

.hero-logo {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.hero-logo img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    box-shadow: var(--glow-pink-subtle);
}

.hero-cta:hover {
    background: var(--neon-pink);
    color: var(--text-primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-images {
    position: sticky;
    top: 120px;
}

.about-cover-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-cover-wrapper img {
    width: 100%;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan-subtle);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text .highlight {
    color: var(--neon-pink);
    font-weight: 500;
}

.about-text .highlight-cyan {
    color: var(--neon-cyan);
    font-weight: 500;
}

/* ==========================================================================
   Album Section
   ========================================================================== */

.album {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.album::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.album-header {
    text-align: center;
    margin-bottom: 60px;
}

.album-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.album-header .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.album-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.album-cover-container {
    position: relative;
}

.album-cover {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.album-cover img {
    width: 100%;
    display: block;
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.album-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.tracklist {
    list-style: none;
    margin-bottom: 40px;
}

.tracklist li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 30px;
}

.track-title {
    flex: 1;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.track-duration {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: auto;
    min-width: 50px;
    text-align: right;
}

.tracklist li:hover .track-title {
    color: var(--neon-pink);
}

.tracklist li:hover .track-duration {
    color: var(--neon-cyan);
}

/* Track Streaming Radial Menu */
.track-streaming {
    position: relative;
    margin-left: 10px;
    z-index: 1;
}

.track-streaming.active {
    z-index: 99999;
}

.track-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 50;
    box-shadow: 0 0 10px rgba(255, 45, 117, 0.3);
}

.track-play-btn svg {
    width: 16px;
    height: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.track-play-btn .close-icon {
    display: none;
}

.track-play-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--glow-pink);
}

.track-play-btn:active {
    transform: scale(0.95);
}

/* Active State */
.track-streaming.active .track-play-btn {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: var(--glow-cyan);
}

.track-streaming.active .track-play-btn .play-icon {
    display: none;
}

.track-streaming.active .track-play-btn .close-icon {
    display: block;
}

/* Radial Menu Container - centered on button */
.streaming-radial {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    pointer-events: none;
    z-index: 100;
}

/* Dark transparent background circle */
.streaming-radial::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(5, 5, 8, 0.95);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7), inset 0 0 50px rgba(157, 78, 221, 0.15);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    z-index: 1;
    opacity: 0;
}

.track-streaming.active .streaming-radial::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8),
                inset 0 0 60px rgba(157, 78, 221, 0.2),
                0 0 20px rgba(0, 240, 255, 0.15);
}

/* Streaming Items - Circular Position */
.streaming-item {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--item-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(-180deg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease,
                box-shadow 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    left: 50%;
    top: 50%;
    z-index: 10;
}

.streaming-item svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

/* TikTok special styling */
.streaming-tiktok {
    background: #000;
}

/* Active State - Items appear in a circle around button */
.track-streaming.active .streaming-item {
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5),
                0 0 15px var(--item-color);
}

/* Position 5 items in a circle (72° apart = 360°/5) */
/* Radius: 60px from center */
.track-streaming.active .streaming-item:nth-child(1) {
    /* Top - 270° (or -90°) */
    transform: translate(-50%, -50%) translate(0, -60px) scale(1) rotate(0deg);
}

.track-streaming.active .streaming-item:nth-child(2) {
    /* Top-Right - 342° (or -18°) */
    transform: translate(-50%, -50%) translate(57px, -19px) scale(1) rotate(0deg);
}

.track-streaming.active .streaming-item:nth-child(3) {
    /* Bottom-Right - 54° */
    transform: translate(-50%, -50%) translate(35px, 49px) scale(1) rotate(0deg);
}

.track-streaming.active .streaming-item:nth-child(4) {
    /* Bottom-Left - 126° */
    transform: translate(-50%, -50%) translate(-35px, 49px) scale(1) rotate(0deg);
}

.track-streaming.active .streaming-item:nth-child(5) {
    /* Top-Left - 198° */
    transform: translate(-50%, -50%) translate(-57px, -19px) scale(1) rotate(0deg);
}

/* Stagger animation - pop out one by one */
.streaming-item:nth-child(1) { transition-delay: 0.05s; }
.streaming-item:nth-child(2) { transition-delay: 0.1s; }
.streaming-item:nth-child(3) { transition-delay: 0.15s; }
.streaming-item:nth-child(4) { transition-delay: 0.2s; }
.streaming-item:nth-child(5) { transition-delay: 0.25s; }

/* Reverse stagger for closing */
.track-streaming:not(.active) .streaming-item:nth-child(5) { transition-delay: 0s; }
.track-streaming:not(.active) .streaming-item:nth-child(4) { transition-delay: 0.03s; }
.track-streaming:not(.active) .streaming-item:nth-child(3) { transition-delay: 0.06s; }
.track-streaming:not(.active) .streaming-item:nth-child(2) { transition-delay: 0.09s; }
.track-streaming:not(.active) .streaming-item:nth-child(1) { transition-delay: 0.12s; }

/* Hover effects on streaming items */
.streaming-item:hover {
    z-index: 100;
    box-shadow: 0 0 20px var(--item-color), 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Scale up on hover while maintaining position */
.track-streaming.active .streaming-item:nth-child(1):hover {
    transform: translate(-50%, -50%) translate(0, -60px) scale(1.3) rotate(0deg);
}
.track-streaming.active .streaming-item:nth-child(2):hover {
    transform: translate(-50%, -50%) translate(57px, -19px) scale(1.3) rotate(0deg);
}
.track-streaming.active .streaming-item:nth-child(3):hover {
    transform: translate(-50%, -50%) translate(35px, 49px) scale(1.3) rotate(0deg);
}
.track-streaming.active .streaming-item:nth-child(4):hover {
    transform: translate(-50%, -50%) translate(-35px, 49px) scale(1.3) rotate(0deg);
}
.track-streaming.active .streaming-item:nth-child(5):hover {
    transform: translate(-50%, -50%) translate(-57px, -19px) scale(1.3) rotate(0deg);
}

/* Platform-specific hover glows */
.streaming-spotify:hover { box-shadow: 0 0 25px #1DB954; }
.streaming-apple:hover { box-shadow: 0 0 25px #FA243C; }
.streaming-amazon:hover { box-shadow: 0 0 25px #25D1DA; }
.streaming-youtube:hover { box-shadow: 0 0 25px #FF0000; }
.streaming-tiktok:hover { box-shadow: 0 0 25px #FE2C55; }

/* Tooltip on hover */
.streaming-item::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    font-size: 0.65rem;
    font-family: var(--font-body);
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    margin-bottom: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.streaming-item:hover::after {
    opacity: 1;
}

.album-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--neon-cyan);
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    box-shadow: var(--glow-cyan-subtle);
}

.album-cta:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
    transform: scale(1.05);
    box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   Album Countdown
   ========================================================================== */

.album-countdown {
    text-align: center;
    padding: 3.5rem 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.95) 0%, rgba(5, 5, 8, 0.98) 100%);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.1), inset 0 0 60px rgba(157, 78, 221, 0.05);
}

.album-countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 45, 117, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    text-shadow: var(--glow-cyan);
    position: relative;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    padding: 1.5rem 1.25rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    border: 2px solid rgba(255, 45, 117, 0.4);
    transition: var(--transition-base);
    box-shadow: inset 0 0 20px rgba(255, 45, 117, 0.1);
}

.countdown-unit:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink-subtle), inset 0 0 30px rgba(255, 45, 117, 0.15);
    transform: translateY(-2px);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink),
        0 0 60px rgba(255, 45, 117, 0.5);
    line-height: 1;
    animation: countdown-pulse 1s ease-in-out infinite;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 1rem;
    font-weight: 500;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    padding: 0 0.5rem;
    animation: neon-flicker 4s ease-in-out infinite;
    align-self: flex-start;
    margin-top: 1.25rem;
}

.countdown-date {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    letter-spacing: 1px;
    position: relative;
}

.countdown-released {
    display: none;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: glow-in 1s ease-out forwards;
    position: relative;
}

/* Countdown Pulse Animation */
@keyframes countdown-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

/* Released State */
.album-countdown.released .countdown-timer,
.album-countdown.released .countdown-title,
.album-countdown.released .countdown-date {
    display: none;
}

.album-countdown.released .countdown-released {
    display: block;
}

/* ==========================================================================
   Connect Section
   ========================================================================== */

.connect {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.connect-header {
    text-align: center;
    margin-bottom: 60px;
}

.connect-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.connect-header .subtitle {
    color: var(--text-muted);
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.connect-group h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.connect-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.connect-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.connect-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-cyan);
    color: var(--text-primary);
    transform: translateX(5px);
}

.connect-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.connect-email {
    color: var(--neon-pink);
    font-size: 1.1rem;
}

.connect-email:hover {
    text-shadow: var(--glow-pink-subtle);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-credits h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-credits a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.footer-credits img {
    height: 25px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition-base);
}

.footer-credits a:hover img {
    opacity: 1;
}

.footer-credits .label-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan-subtle);
    transition: var(--transition-base);
}

.footer-credits a:hover .label-text {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink-subtle);
}

.footer-legal {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-page {
    padding: 150px 0 var(--section-padding);
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--neon-cyan);
}

.legal-content {
    max-width: 800px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    color: var(--neon-pink);
}

.legal-back:hover {
    text-shadow: var(--glow-pink-subtle);
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-page::before,
.error-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.error-page::before {
    width: 500px;
    height: 500px;
    background: rgba(255, 45, 117, 0.15);
    top: -100px;
    right: -100px;
}

.error-page::after {
    width: 400px;
    height: 400px;
    background: rgba(0, 240, 255, 0.1);
    bottom: -100px;
    left: -100px;
}

.error-content {
    position: relative;
    z-index: 1;
}

.error-code {
    font-family: var(--font-display);
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    position: relative;
    animation: glitch 2s infinite;
}

.error-code::before,
.error-code::after {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.error-code::before {
    animation: glitch-1 0.3s infinite;
    color: var(--neon-cyan);
    z-index: -1;
}

.error-code::after {
    animation: glitch-2 0.3s infinite;
    color: var(--neon-pink);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: none; }
    20% { text-shadow: -2px 0 var(--neon-pink); }
    40% { text-shadow: 2px 0 var(--neon-cyan); }
    60% { text-shadow: -1px 0 var(--neon-pink), 1px 0 var(--neon-cyan); }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-3px); }
    40% { clip-path: inset(50% 0 30% 0); transform: translate(3px); }
    60% { clip-path: inset(10% 0 70% 0); transform: translate(-2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(70% 0 10% 0); transform: translate(3px); }
    40% { clip-path: inset(30% 0 50% 0); transform: translate(-3px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(2px); }
}

.error-subtitle {
    font-size: 1.5rem;
    margin: 20px 0 30px;
    color: var(--text-secondary);
}

.error-text {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.error-back {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    box-shadow: var(--glow-cyan-subtle);
}

.error-back:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .album-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .album-cover-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .connect-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    html {
        font-size: 15px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .album-header h2 {
        font-size: 2rem;
    }

    /* Countdown Responsive */
    .countdown-value {
        font-size: 2.5rem;
    }

    .countdown-unit {
        min-width: 85px;
        padding: 1.25rem 1rem;
    }

    .countdown-separator {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .countdown-title {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    /* Radial Menu Responsive - Tablet */
    .track-play-btn {
        width: 32px;
        height: 32px;
    }

    .track-play-btn svg {
        width: 14px;
        height: 14px;
    }

    .streaming-radial {
        width: 150px;
        height: 150px;
    }

    .streaming-radial::before {
        width: 130px;
        height: 130px;
    }

    .streaming-item {
        width: 32px;
        height: 32px;
    }

    .streaming-item svg {
        width: 16px;
        height: 16px;
    }

    /* Smaller radius (50px) for tablet */
    .track-streaming.active .streaming-item:nth-child(1) {
        transform: translate(-50%, -50%) translate(0, -50px) scale(1) rotate(0deg);
    }
    .track-streaming.active .streaming-item:nth-child(2) {
        transform: translate(-50%, -50%) translate(48px, -15px) scale(1) rotate(0deg);
    }
    .track-streaming.active .streaming-item:nth-child(3) {
        transform: translate(-50%, -50%) translate(29px, 40px) scale(1) rotate(0deg);
    }
    .track-streaming.active .streaming-item:nth-child(4) {
        transform: translate(-50%, -50%) translate(-29px, 40px) scale(1) rotate(0deg);
    }
    .track-streaming.active .streaming-item:nth-child(5) {
        transform: translate(-50%, -50%) translate(-48px, -15px) scale(1) rotate(0deg);
    }

    /* Hover states for tablet */
    .track-streaming.active .streaming-item:nth-child(1):hover {
        transform: translate(-50%, -50%) translate(0, -50px) scale(1.25) rotate(0deg);
    }
    .track-streaming.active .streaming-item:nth-child(2):hover {
        transform: translate(-50%, -50%) translate(48px, -15px) scale(1.25) rotate(0deg);
    }
    .track-streaming.active .streaming-item:nth-child(3):hover {
        transform: translate(-50%, -50%) translate(29px, 40px) scale(1.25) rotate(0deg);
    }
    .track-streaming.active .streaming-item:nth-child(4):hover {
        transform: translate(-50%, -50%) translate(-29px, 40px) scale(1.25) rotate(0deg);
    }
    .track-streaming.active .streaming-item:nth-child(5):hover {
        transform: translate(-50%, -50%) translate(-48px, -15px) scale(1.25) rotate(0deg);
    }

    .connect-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .error-code {
        font-size: 6rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-logo {
        max-width: 220px;
    }

    .hero-cta {
        padding: 12px 30px;
        font-size: 0.8rem;
    }

    .album-cta {
        width: 100%;
        justify-content: center;
    }

    /* Countdown Small Mobile */
    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-unit {
        min-width: 70px;
        padding: 1rem 0.75rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .countdown-title {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-released {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    /* Radial Menu Small Mobile - positioned to the left of button */
    .track-play-btn {
        width: 28px;
        height: 28px;
    }

    .streaming-radial {
        width: 200px;
        height: 50px;
        left: auto;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .streaming-radial::before {
        width: 190px;
        height: 44px;
        border-radius: 22px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0);
    }

    .track-streaming.active .streaming-radial::before {
        transform: translate(-50%, -50%) scale(1);
    }

    .streaming-item {
        width: 32px;
        height: 32px;
        left: 180px;
        top: 50%;
        transform: translateY(-50%) scale(0) rotate(-180deg);
    }

    .streaming-item svg {
        width: 16px;
        height: 16px;
    }

    /* Horizontal layout for mobile - icons expand from right to left */
    .track-streaming.active .streaming-item:nth-child(1) {
        transform: translateY(-50%) scale(1) rotate(0deg);
        left: 10px;
    }
    .track-streaming.active .streaming-item:nth-child(2) {
        transform: translateY(-50%) scale(1) rotate(0deg);
        left: 48px;
    }
    .track-streaming.active .streaming-item:nth-child(3) {
        transform: translateY(-50%) scale(1) rotate(0deg);
        left: 86px;
    }
    .track-streaming.active .streaming-item:nth-child(4) {
        transform: translateY(-50%) scale(1) rotate(0deg);
        left: 124px;
    }
    .track-streaming.active .streaming-item:nth-child(5) {
        transform: translateY(-50%) scale(1) rotate(0deg);
        left: 162px;
    }

    /* Hide tooltip on mobile */
    .streaming-item::after {
        display: none;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* About Gallery */
.about-cover-wrapper {
    margin-bottom: 20px;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform var(--transition-base);
}

.about-gallery-item:hover img {
    transform: scale(1.05);
}

/* About Slideshow */
.about-slideshow {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.about-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.about-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Crossfade with glow burst on transition */
@keyframes slideGlow {
    0% { box-shadow: 0 0 0 transparent; }
    50% { box-shadow: 0 0 40px var(--neon-cyan), 0 0 80px var(--neon-pink); }
    100% { box-shadow: 0 0 0 transparent; }
}

.about-slideshow.transitioning {
    animation: slideGlow 1.5s ease-in-out;
}

/* ==========================================================================
   Audio Player (dezent, fixed bottom-right)
   ========================================================================== */

.audio-player {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(10, 10, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.audio-player:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.audio-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.audio-toggle:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan-subtle);
}

.audio-toggle svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    transition: var(--transition-base);
}

.audio-toggle:hover svg {
    fill: var(--neon-cyan);
}

.audio-toggle .icon-pause {
    display: none;
}

.audio-player.playing .audio-toggle .icon-play {
    display: none;
}

.audio-player.playing .audio-toggle .icon-pause {
    display: block;
}

/* Visualizer Bars */
.audio-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    opacity: 0.3;
    transition: opacity var(--transition-base);
}

.audio-player.playing .audio-visualizer {
    opacity: 1;
}

.audio-visualizer span {
    display: block;
    width: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: height 0.1s ease;
}

.audio-visualizer span:nth-child(1) {
    height: 8px;
    animation: visualizer 0.8s ease-in-out infinite;
}

.audio-visualizer span:nth-child(2) {
    height: 14px;
    animation: visualizer 0.6s ease-in-out infinite 0.1s;
}

.audio-visualizer span:nth-child(3) {
    height: 10px;
    animation: visualizer 0.7s ease-in-out infinite 0.2s;
}

.audio-player:not(.playing) .audio-visualizer span {
    animation: none;
    height: 4px;
}

/* Waiting state - pulsing to indicate ready to play */
.audio-player.waiting .audio-toggle {
    animation: pulse-waiting 1.5s ease-in-out infinite;
}

@keyframes pulse-waiting {
    0%, 100% { box-shadow: 0 0 0 transparent; }
    50% { box-shadow: 0 0 15px var(--neon-cyan), 0 0 30px rgba(0, 240, 255, 0.3); }
}

@keyframes visualizer {
    0%, 100% { height: 4px; }
    50% { height: 18px; }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .audio-player {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
    }

    .audio-toggle {
        width: 32px;
        height: 32px;
    }

    .audio-toggle svg {
        width: 16px;
        height: 16px;
    }

    .audio-visualizer {
        height: 16px;
    }
}
