/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a1410;
    --color-secondary: #2d1f1a;
    --color-accent: #d4a574;
    --color-gold: #f4d03f;
    --color-text: #e8e1d5;
    --color-text-dim: #a89f91;
    --color-overlay: rgba(26, 20, 16, 0.95);
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --font-title: 'Bebas Neue', cursive;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #0f0c0a 0%, #1a1410 50%, #2d1f1a 100%);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================
   VINYL BACKGROUND ANIMATION
   =================================== */
.vinyl-background {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(212, 165, 116, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(244, 208, 63, 0.02) 0%, transparent 50%);
    animation: vinylRotate 120s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes vinylRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   LANGUAGE TOGGLE
   =================================== */
.language-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    gap: 0.5rem;
    background: rgba(26, 20, 16, 0.9);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    background: transparent;
    color: var(--color-text-dim);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 25px;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--color-accent);
}

.lang-btn.active {
    background: var(--color-accent);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .language-toggle {
        top: 1rem;
        right: 1rem;
    }
    
    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(15, 12, 10, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Album Cover */
.album-cover-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    margin: 0 auto 2rem;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .album-cover-wrapper {
        width: 320px;
        height: 320px;
    }
}

.album-cover-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.25) 0%, rgba(212, 165, 116, 0.15) 40%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .album-cover-glow {
        width: 400px;
        height: 400px;
    }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.album-cover {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d1f1a 0%, #1a1410 100%);
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9),
                0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(212, 165, 116, 0.15);
    overflow: hidden;
    transition: var(--transition-smooth);
    animation: floatAnimation 8s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

.album-cover:hover {
    transform: scale(1.03) rotate(2deg);
    box-shadow: 0 50px 120px rgba(244, 208, 63, 0.3),
                0 30px 80px rgba(0, 0, 0, 0.9),
                0 0 0 1px rgba(212, 165, 116, 0.3);
}

.album-cover-img,
.album-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    display: block;
}

.vinyl-disc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.1) 0%, rgba(15, 12, 10, 0.15) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 2;
}

.vinyl-disc {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, #1a1410 30%, transparent 30%),
        radial-gradient(circle at center, var(--color-accent) 31%, transparent 31%),
        repeating-conic-gradient(from 0deg, #0f0c0a 0deg, #1a1410 2deg, #0f0c0a 4deg);
    border-radius: 50%;
    position: relative;
}

.vinyl-disc::before {
    content: 'BLUES';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-title);
    font-size: 3rem;
    letter-spacing: 8px;
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

/* Album Info Section */
.album-info {
    text-align: center;
    margin-top: 3rem;
    animation: fadeInUp 1.4s ease-out 0.3s backwards;
}

.album-info h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 12px rgba(244, 208, 63, 0.2),
                 0 4px 24px rgba(244, 208, 63, 0.1);
    letter-spacing: 8px;
    line-height: 1.1;
    animation: subtleGlow 5s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes subtleGlow {
    0%, 100% { 
        text-shadow: 0 2px 12px rgba(244, 208, 63, 0.2),
                     0 4px 24px rgba(244, 208, 63, 0.1),
                     0 0 40px rgba(244, 208, 63, 0.05); 
    }
    50% { 
        text-shadow: 0 2px 16px rgba(244, 208, 63, 0.3),
                     0 4px 32px rgba(244, 208, 63, 0.15),
                     0 0 60px rgba(244, 208, 63, 0.1); 
    }
}

.album-info .artist {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.album-info .artist:hover {
    opacity: 1;
    color: var(--color-gold);
    letter-spacing: 10px;
}

.album-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: var(--color-text-dim);
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.album-meta span {
    opacity: 0.8;
}

/* Legacy styles for backwards compatibility */
.album-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(244, 208, 63, 0.4);
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 4px 20px rgba(244, 208, 63, 0.4); }
    50% { text-shadow: 0 4px 40px rgba(244, 208, 63, 0.8), 0 0 60px rgba(244, 208, 63, 0.4); }
}

.album-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--color-text-dim);
    letter-spacing: 4px;
    margin-bottom: 3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    color: var(--color-gold);
    transform: translateY(5px);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* ===================================
   STREAMING SECTION
   =================================== */
.streaming-section {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.6) 0%, transparent 100%);
}

.streaming-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.streaming-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.streaming-description {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.streaming-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.streaming-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.streaming-btn i {
    font-size: 1.5rem;
}

.streaming-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.streaming-btn.spotify {
    background: #1DB954;
    color: #FFFFFF;
}

.streaming-btn.spotify:hover {
    background: #1ed760;
    border-color: #1ed760;
}

.streaming-btn.apple {
    background: linear-gradient(135deg, #FA2D54 0%, #FC5C7D 100%);
    color: #FFFFFF;
}

.streaming-btn.apple:hover {
    background: linear-gradient(135deg, #FC5C7D 0%, #FA2D54 100%);
}

.streaming-btn.youtube {
    background: #FF0000;
    color: #FFFFFF;
}

.streaming-btn.youtube:hover {
    background: #CC0000;
}

.streaming-btn.amazon {
    background: linear-gradient(135deg, #00A8E1 0%, #0080B8 100%);
    color: #FFFFFF;
}

.streaming-btn.amazon:hover {
    background: linear-gradient(135deg, #0080B8 0%, #00A8E1 100%);
}

@media (max-width: 768px) {
    .streaming-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .streaming-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===================================
   SONGS SECTION
   =================================== */
.songs-container {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    font-weight: 300;
    font-style: italic;
}

/* Songs Grid */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.song-card {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 31, 26, 0.6) 0%, rgba(26, 20, 16, 0.8) 100%);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 165, 116, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

.song-cover {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.song-card:hover .song-cover img {
    transform: scale(1.1);
}

.song-card > .song-header,
.song-card > .song-excerpt,
.song-card > .song-tags {
    padding-left: 2rem;
    padding-right: 2rem;
}

.song-card > .song-header {
    padding-top: 2rem;
}

.song-card > .song-tags {
    padding-bottom: 2rem;
}

.song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.song-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.3);
}

.song-card:hover::before {
    opacity: 1;
}

/* Stagger animation for cards */
.song-card:nth-child(1) { animation-delay: 0.1s; }
.song-card:nth-child(2) { animation-delay: 0.2s; }
.song-card:nth-child(3) { animation-delay: 0.3s; }
.song-card:nth-child(4) { animation-delay: 0.4s; }
.song-card:nth-child(5) { animation-delay: 0.5s; }
.song-card:nth-child(6) { animation-delay: 0.6s; }
.song-card:nth-child(7) { animation-delay: 0.7s; }
.song-card:nth-child(8) { animation-delay: 0.8s; }
.song-card:nth-child(9) { animation-delay: 0.9s; }
.song-card:nth-child(10) { animation-delay: 1s; }
.song-card:nth-child(11) { animation-delay: 1.1s; }
.song-card:nth-child(12) { animation-delay: 1.2s; }

.song-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.track-number {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    min-width: 60px;
}

.song-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.song-duration {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.song-excerpt {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.song-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.4rem 0.9rem;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 1px;
}

/* ===================================
   MODAL / SONG DETAIL
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-overlay);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(135deg, #2d1f1a 0%, #1a1410 100%);
    border-radius: 24px;
    overflow-y: auto;
    animation: modalSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: rotate(90deg);
}

.modal-inner {
    padding: 3rem;
}

/* Modal Header */
.modal-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.modal-vinyl {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.vinyl-spinning {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, #1a1410 25%, transparent 25%),
        radial-gradient(circle at center, var(--color-accent) 26%, transparent 26%),
        repeating-conic-gradient(from 0deg, #0f0c0a 0deg, #1a1410 3deg, #0f0c0a 6deg);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                inset 0 0 20px rgba(212, 165, 116, 0.2);
    animation: vinylSpin 3s linear infinite;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.modal-title-section {
    flex: 1;
}

.modal-track-number {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--color-accent);
    letter-spacing: 2px;
}

.modal-song-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin: 0.5rem 0;
    line-height: 1.2;
}

.modal-duration {
    color: var(--color-text-dim);
    font-size: 1rem;
}

/* Audio Player */
.audio-player {
    background: rgba(15, 12, 10, 0.6);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
}

.preview-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold) 100%);
    color: var(--color-primary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.preview-timer {
    text-align: center;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0;
    padding: 0.5rem;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 8px;
    display: none;
}

.preview-timer.active {
    display: block;
}

.listen-full-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: #1DB954;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.listen-full-btn:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.5);
}

.listen-full-btn i {
    font-size: 1.3rem;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold) 100%);
    border: none;
    color: var(--color-primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 auto 1.5rem;
    transition: var(--transition-bounce);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.6);
}

.play-btn.playing i::before {
    content: '\f04c'; /* Pause icon */
}

.audio-progress {
    margin-bottom: 1rem;
}

.audio-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.audio-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-gold) 100%);
    transition: width 0.1s linear;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-dim);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.volume-control i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.volume-slider {
    width: 120px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(212, 165, 116, 0.2);
    outline: none;
    border-radius: 2px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    transition: var(--transition-smooth);
}

.volume-slider::-webkit-slider-thumb:hover {
    background: var(--color-gold);
    transform: scale(1.3);
}

.volume-slider::-moz-range-thumb:hover {
    background: var(--color-gold);
    transform: scale(1.3);
}

/* Modal Body Content */
.modal-body {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
    padding-bottom: 0;
}

.modal-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--color-text-dim);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-tab:hover {
    color: var(--color-accent);
}

.modal-tab.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.modal-tab i {
    font-size: 1.1rem;
}

/* Tab Contents */
.tab-contents {
    position: relative;
    min-height: 300px;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

/* Song Story Tab */
.song-story {
    margin-bottom: 2rem;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.modal-tags .tag {
    background: rgba(212, 165, 116, 0.15);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.modal-song-cover {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.story-text {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
    margin-top: 1.5rem;
}

/* Song Lyrics Tab */
.song-lyrics {
    margin-bottom: 2rem;
}

.lyrics-text {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 2;
    white-space: pre-line;
    font-family: 'Courier New', monospace;
    background: rgba(15, 12, 10, 0.4);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.song-story,
.song-lyrics {
    margin-bottom: 3rem;
}

.song-story h3,
.song-lyrics h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.song-story h3 i,
.song-lyrics h3 i {
    color: var(--color-accent);
}

.song-story p {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
}

.lyrics-content {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 2;
    white-space: pre-line;
    font-family: 'Courier New', monospace;
    background: rgba(15, 12, 10, 0.4);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 12, 10, 0.8) 100%);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-link-btn {
    background: none;
    border: none;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    text-transform: uppercase;
}

.footer-link-btn:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.footer-separator {
    color: var(--color-text-dim);
    opacity: 0.5;
}

.footer-text {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-contact {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-contact a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

/* ===================================
   FOOTER MODALS
   =================================== */
.footer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.footer-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-modal-content {
    position: relative;
    background: linear-gradient(135deg, #2d1f1a 0%, #1a1410 100%);
    max-width: 900px;
    width: 100%;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    margin: 2rem auto;
    animation: modalSlideIn 0.4s ease-out;
}

.footer-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.footer-modal-close:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: rotate(90deg);
}

.footer-modal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-modal-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--color-accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-modal-content h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.footer-modal-content p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-modal-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-modal-content a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.footer-modal-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.footer-modal-content ul li {
    color: var(--color-text);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.footer-modal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.modal-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-section,
.impressum-section,
.datenschutz-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-section:last-child,
.impressum-section:last-child,
.datenschutz-section:last-child {
    border-bottom: none;
}

.contact-section.philosophy {
    background: rgba(212, 165, 116, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-section.ai-pipeline {
    background: rgba(244, 208, 63, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(244, 208, 63, 0.1);
}

.datenschutz-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 165, 116, 0.2);
    color: var(--color-accent);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .songs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-inner {
        padding: 2rem 1.5rem;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-vinyl {
        margin: 0 auto;
    }
    
    .modal-song-title {
        font-size: 2rem;
    }
    
    .album-cover-wrapper {
        width: 260px;
        height: 260px;
    }
    
    .song-header {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-modal {
        padding: 1rem;
    }
    
    .footer-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }
    
    .footer-modal-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .footer-modal-content h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .album-cover-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .songs-container {
        padding: 3rem 1rem;
    }
    
    .song-card {
        padding: 1.5rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}
