/* Hint under final player play button */
.music-player-final .play-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--rose-400);
}

.music-player-final .play-hint .up-arrow {
  font-size: 20px;
  display: inline-block;
  animation: hint-bounce 1.1s ease-in-out infinite;
  color: var(--rose-400);
}

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

.music-player-final .play-hint .hint-text {
  font-size: 0.9rem;
  color: var(--stone-600);
}
/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

/* CSS Variables - Romantic Rose Theme (Emotional & High-Conversion) */
:root {
    /* Rose/Pink Tones - PRIMARY */
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --rose-800: #9f1239;
    --rose-900: #881337;

    /* Stone/Neutral Tones - BACKGROUNDS & TEXT */
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;

    /* Amber Accents - HIGHLIGHTS */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;

    /* Legacy variable mappings (for backward compatibility) */
    --vinyl-black: var(--stone-900);
    --espresso: var(--stone-800);
    --walnut: var(--stone-600);
    --caramel: var(--rose-400);
    --amber: var(--amber-400);
    --cream: var(--stone-50);
    --aged-paper: var(--stone-100);
    --burnt-orange: var(--rose-500);
    --rust: var(--rose-600);
    --mustard: var(--amber-500);
    --terracotta: var(--rose-400);
    --olive-gold: var(--amber-400);
    --warm-white: var(--stone-50);
    --parchment: var(--stone-100);
    --coffee-light: var(--rose-100);

    /* Semantic mappings for compatibility */
    --primary-color: var(--rose-500);
    --primary-hover: var(--rose-600);
    --secondary-color: var(--rose-400);
    --accent-color: var(--amber-400);
    --success-color: #22c55e;
    --h-text-light: var(--stone-50);
    --text-dark: var(--stone-900);
    --text-light: var(--stone-600);
    --text-muted: var(--stone-400);
    --bg-light: var(--stone-50);
    --bg-white: #ffffff;
    --bg-dark: var(--stone-900);
    --border-color: var(--rose-200);

    /* Rose-Tinted Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(244, 63, 94, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(244, 63, 94, 0.08), 0 2px 4px -1px rgba(244, 63, 94, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(244, 63, 94, 0.1), 0 4px 6px -2px rgba(244, 63, 94, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(244, 63, 94, 0.12), 0 10px 10px -5px rgba(244, 63, 94, 0.04);
    --shadow-warm: 0 8px 32px rgba(244, 63, 94, 0.15);
    --shadow-rose: 0 10px 40px -10px rgba(244, 63, 94, 0.25);

    /* Romantic Gradients */
    --gradient-primary: linear-gradient(135deg, var(--rose-500) 0%, var(--rose-600) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-500) 100%);
    --gradient-accent: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 100%);
    --gradient-romantic: linear-gradient(135deg, var(--rose-100) 0%, var(--stone-50) 50%, var(--amber-100) 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 20%, var(--rose-100) 0%, var(--stone-50) 50%, var(--amber-100) 100%);
    --warm-gradient: linear-gradient(180deg, var(--stone-50) 0%, var(--stone-100) 100%);
    --dark-gradient: linear-gradient(180deg, var(--stone-900) 0%, var(--stone-800) 100%);
}

/* Base Styles - Romantic Rose Theme */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--stone-50);
    background-attachment: fixed;
}
html { overflow-x: hidden; }

/* Paper texture overlay for vintage feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Cookie Consent Banner (Google Consent Mode v2) */
.cookie-banner {
    position: fixed;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(700px, calc(100% - 24px));
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    z-index: 2000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    animation: cookie-slide-up 240ms ease-out;
}

@keyframes cookie-slide-up {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner-content {
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--stone-800);
}

.cookie-banner-content span {
    color: var(--stone-600);
}

.cookie-link {
    color: var(--rose-500);
    margin-left: 6px;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
    color: var(--rose-600);
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    color: white;
    box-shadow: 0 2px 8px rgba(244, 63, 94, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, var(--rose-600), var(--rose-700));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

.cookie-btn-decline {
    background: var(--stone-100);
    color: var(--stone-700);
    border: 1px solid var(--stone-200);
}

.cookie-btn-decline:hover {
    background: var(--stone-200);
    color: var(--stone-800);
}

@media (max-width: 640px) {
    .cookie-banner {
        bottom: 12px;
        padding: 14px 16px;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner-content {
        font-size: 0.9rem;
        min-width: auto;
        text-align: center;
    }
    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        padding: 12px 16px;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography - Vintage Vinyl Studio */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 600;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
}

p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.125rem;
    font-family: 'DM Sans', sans-serif;
}

.highlight {
    background: linear-gradient(120deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.white-highlight {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}


.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   ACCESSIBILITY - Focus States for Keyboard Navigation
   (Optimized for 40-60 year old demographic)
   ============================================ */
:focus-visible {
    outline: 3px solid var(--rose-400);
    outline-offset: 2px;
}

.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
    outline: 3px solid var(--rose-400);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Make footer links clearly clickable with underlines */
.footer-column a {
    text-decoration: underline;
    text-decoration-color: var(--rose-300);
    text-underline-offset: 2px;
}

.footer-column a:hover {
    text-decoration-color: var(--rose-500);
}

/* Header - Vintage Vinyl Studio */
.header {
    backdrop-filter: blur(12px);
    background: rgba(245, 239, 230, 0.95);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 2px solid var(--coffee-light);
    width: 100%;
    box-shadow: 0 2px 8px rgba(42, 32, 24, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}


.logo a {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--espresso);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-main {
    font-family: 'Playfair Display', Georgia, serif;
    background: var(--sunset-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
    position: static;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image{
    position: static;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    flex-shrink: 0;
}

.logo-image-footer{
    position: static;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    vertical-align: middle;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 5px;
    line-height: 1;
    text-align: left;
    margin-left: 10px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--walnut);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--burnt-orange);
    transition: width 0.3s ease;
}

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

.main-nav a:hover {
    color: var(--burnt-orange);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--cream);
    border-top: 2px solid var(--coffee-light);
    padding: 1rem 24px;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    font-weight: 500;
    color: var(--walnut);
    font-family: 'DM Sans', sans-serif;
    border-bottom: 1px solid var(--coffee-light);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--burnt-orange);
}

.mobile-nav a:last-of-type {
    border-bottom: none;
}

.mobile-cta {
    margin-top: 0.5rem;
    align-self: flex-start;
}

/* Hero Section - Vintage Vinyl Studio */
.hero-section {
    position: relative;
    padding: 4rem 0 6rem 0;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--aged-paper) 50%, var(--parchment) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Orange radial glow from top-left corner */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(199, 91, 18, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 20%, rgba(212, 160, 86, 0.15) 0%, transparent 40%);
}

/* Subtle grainy noise texture overlay */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Record Player - The Centerpiece */
.hero-vinyl-container {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: 780px;
    height: 580px;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.record-player {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1000px;
}

/* Dust Cover Hinge */
.dust-cover-hinge {
    position: absolute;
    top: -8px;
    left: 40px;
    right: 40px;
    height: 12px;
    background: linear-gradient(180deg,
        #2a2a2a 0%,
        #1a1a1a 40%,
        #0a0a0a 100%
    );
    border-radius: 6px 6px 0 0;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 -2px 8px rgba(0, 0, 0, 0.3);
}

.dust-cover-hinge::before,
.dust-cover-hinge::after {
    content: '';
    position: absolute;
    top: 3px;
    width: 30px;
    height: 6px;
    background: linear-gradient(180deg, #404040 0%, #2a2a2a 100%);
    border-radius: 3px;
}

.dust-cover-hinge::before { left: 60px; }
.dust-cover-hinge::after { right: 60px; }

/* Turntable Base - Premium Wood finish */
.turntable-base {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        #6b4423 0%,
        #5c3a1d 8%,
        #4a2f18 20%,
        #3d2814 50%,
        #4a2f18 80%,
        #5c3a1d 92%,
        #6b4423 100%
    );
    border-radius: 16px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(42, 32, 24, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        inset 2px 0 0 rgba(255, 255, 255, 0.05),
        inset -2px 0 0 rgba(0, 0, 0, 0.1);
    padding: 25px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Wood Grain Overlay */
.wood-grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            95deg,
            transparent 0px,
            transparent 1px,
            rgba(0, 0, 0, 0.03) 1px,
            rgba(0, 0, 0, 0.03) 2px,
            transparent 2px,
            transparent 8px
        ),
        repeating-linear-gradient(
            92deg,
            transparent 0px,
            rgba(139, 90, 43, 0.08) 100px,
            transparent 200px
        ),
        repeating-linear-gradient(
            88deg,
            transparent 0px,
            rgba(80, 50, 20, 0.05) 150px,
            transparent 300px
        );
    pointer-events: none;
    border-radius: 16px;
}

/* Brand Badge */
.turntable-brand {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 5;
}

.brand-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--amber);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.brand-model {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(212, 160, 86, 0.6);
    letter-spacing: 3px;
    margin-top: 2px;
}

/* Turntable Platter */
.turntable-platter {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(145deg, #1f1f1f 0%, #151515 50%, #0a0a0a 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.6),
        inset 0 0 80px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Platter Strobe Ring */
.platter-strobe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 8px solid #1a1a1a;
    box-sizing: border-box;
}

.strobe-dots {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.4) 0deg 2deg,
        transparent 2deg 10deg
    );
    animation: vinyl-spin 4s linear infinite;
}

/* Rubber Platter Mat */
.platter-mat {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, transparent 18%, #1a1410 18.5%),
        repeating-radial-gradient(
            circle at center,
            #252016 0px,
            #252016 1px,
            #1a1410 1px,
            #1a1410 3px
        );
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Vinyl Record */
.hero-vinyl {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1410 0%, #0f0d0a 50%, #1a1410 100%);
    box-shadow:
        inset 0 0 60px rgba(0,0,0,0.6),
        0 4px 15px rgba(0, 0, 0, 0.4);
    animation: vinyl-spin 4s linear infinite;
}

/* Vinyl Grooves */
.vinyl-grooves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        /* Center hole */
        radial-gradient(circle at center, #0a0a0a 4%, transparent 4.5%),
        /* Lead-in area */
        radial-gradient(circle at center, transparent 24%, rgba(40, 35, 30, 0.4) 24.3%, transparent 24.6%),
        /* Grooves - varying intensity for realism */
        radial-gradient(circle at center, transparent 26%, rgba(60, 50, 40, 0.3) 26.15%, transparent 26.3%),
        radial-gradient(circle at center, transparent 28%, rgba(50, 42, 35, 0.25) 28.15%, transparent 28.3%),
        radial-gradient(circle at center, transparent 30%, rgba(60, 50, 40, 0.3) 30.15%, transparent 30.3%),
        radial-gradient(circle at center, transparent 32%, rgba(45, 38, 32, 0.2) 32.15%, transparent 32.3%),
        radial-gradient(circle at center, transparent 34%, rgba(55, 46, 38, 0.28) 34.15%, transparent 34.3%),
        radial-gradient(circle at center, transparent 36%, rgba(60, 50, 40, 0.3) 36.15%, transparent 36.3%),
        radial-gradient(circle at center, transparent 38%, rgba(50, 42, 35, 0.25) 38.15%, transparent 38.3%),
        radial-gradient(circle at center, transparent 40%, rgba(55, 46, 38, 0.28) 40.15%, transparent 40.3%),
        radial-gradient(circle at center, transparent 42%, rgba(45, 38, 32, 0.2) 42.15%, transparent 42.3%),
        radial-gradient(circle at center, transparent 44%, rgba(60, 50, 40, 0.3) 44.15%, transparent 44.3%),
        radial-gradient(circle at center, transparent 46%, rgba(50, 42, 35, 0.25) 46.15%, transparent 46.3%),
        radial-gradient(circle at center, transparent 48%, rgba(55, 46, 38, 0.28) 48.15%, transparent 48.3%),
        radial-gradient(circle at center, transparent 50%, rgba(60, 50, 40, 0.3) 50.15%, transparent 50.3%),
        radial-gradient(circle at center, transparent 52%, rgba(45, 38, 32, 0.2) 52.15%, transparent 52.3%),
        radial-gradient(circle at center, transparent 54%, rgba(55, 46, 38, 0.28) 54.15%, transparent 54.3%),
        radial-gradient(circle at center, transparent 56%, rgba(50, 42, 35, 0.25) 56.15%, transparent 56.3%),
        radial-gradient(circle at center, transparent 58%, rgba(60, 50, 40, 0.3) 58.15%, transparent 58.3%),
        radial-gradient(circle at center, transparent 60%, rgba(55, 46, 38, 0.28) 60.15%, transparent 60.3%),
        radial-gradient(circle at center, transparent 62%, rgba(45, 38, 32, 0.2) 62.15%, transparent 62.3%),
        radial-gradient(circle at center, transparent 64%, rgba(60, 50, 40, 0.3) 64.15%, transparent 64.3%),
        radial-gradient(circle at center, transparent 66%, rgba(50, 42, 35, 0.25) 66.15%, transparent 66.3%),
        radial-gradient(circle at center, transparent 68%, rgba(55, 46, 38, 0.28) 68.15%, transparent 68.3%),
        radial-gradient(circle at center, transparent 70%, rgba(60, 50, 40, 0.3) 70.15%, transparent 70.3%),
        radial-gradient(circle at center, transparent 72%, rgba(45, 38, 32, 0.2) 72.15%, transparent 72.3%),
        radial-gradient(circle at center, transparent 74%, rgba(55, 46, 38, 0.28) 74.15%, transparent 74.3%),
        radial-gradient(circle at center, transparent 76%, rgba(50, 42, 35, 0.25) 76.15%, transparent 76.3%),
        radial-gradient(circle at center, transparent 78%, rgba(60, 50, 40, 0.3) 78.15%, transparent 78.3%),
        radial-gradient(circle at center, transparent 80%, rgba(55, 46, 38, 0.28) 80.15%, transparent 80.3%),
        radial-gradient(circle at center, transparent 82%, rgba(45, 38, 32, 0.2) 82.15%, transparent 82.3%),
        radial-gradient(circle at center, transparent 84%, rgba(60, 50, 40, 0.3) 84.15%, transparent 84.3%),
        radial-gradient(circle at center, transparent 86%, rgba(50, 42, 35, 0.25) 86.15%, transparent 86.3%),
        radial-gradient(circle at center, transparent 88%, rgba(55, 46, 38, 0.28) 88.15%, transparent 88.3%),
        radial-gradient(circle at center, transparent 90%, rgba(60, 50, 40, 0.3) 90.15%, transparent 90.3%),
        radial-gradient(circle at center, transparent 92%, rgba(45, 38, 32, 0.2) 92.15%, transparent 92.3%),
        radial-gradient(circle at center, transparent 94%, rgba(55, 46, 38, 0.28) 94.15%, transparent 94.3%),
        /* Lead-out area */
        radial-gradient(circle at center, transparent 96%, rgba(40, 35, 30, 0.4) 96.3%, transparent 96.6%);
    pointer-events: none;
}

/* Vinyl Label */
.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38%;
    height: 38%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%,
            var(--amber) 0%,
            var(--mustard) 30%,
            var(--caramel) 70%,
            #8b5a2b 100%
        );
    box-shadow:
        inset 0 2px 15px rgba(0,0,0,0.3),
        inset 0 -2px 10px rgba(255, 255, 255, 0.1),
        0 0 0 3px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.vinyl-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.label-brand {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--espresso);
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.label-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--walnut);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.label-rpm {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.45rem;
    font-weight: 600;
    color: var(--espresso);
    margin-top: 4px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Vinyl shine effect */
.vinyl-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.15) 0%,
            rgba(255,255,255,0.05) 25%,
            transparent 50%,
            rgba(0,0,0,0.1) 75%,
            rgba(0,0,0,0.15) 100%
        ),
        radial-gradient(
            ellipse 80% 50% at 30% 20%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* Center Spindle */
.turntable-spindle {
    position: absolute;
    left: calc(45px + 200px - 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #e0e0e0 0%, #a0a0a0 30%, #808080 70%, #606060 100%);
    border-radius: 50%;
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    z-index: 10;
}

.spindle-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(145deg, #f0f0f0 0%, #c0c0c0 100%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Tonearm Assembly */
.tonearm-assembly {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 320px;
}

/* Tonearm Rest */
.tonearm-rest {
    position: absolute;
    bottom: 180px;
    right: 150px;
    width: 25px;
    height: 40px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 4px;
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rest-clip {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 20px;
    border: 3px solid #505050;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

/* Tonearm Base/Pivot */
.tonearm-base {
    position: absolute;
    bottom: 25px;
    right: 5px;
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #3a3a3a 0%, #252525 50%, #151515 100%);
    border-radius: 50%;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.tonearm-base-ring {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #404040;
    border-radius: 50%;
}

/* Tonearm Lift Lever */
.tonearm-lift {
    position: absolute;
    bottom: 60px;
    right: 65px;
    width: 20px;
    height: 30px;
}

.lift-lever {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #505050 0%, #3a3a3a 50%, #2a2a2a 100%);
    border-radius: 3px;
    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lift-lever::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(145deg, #606060 0%, #404040 100%);
    border-radius: 50%;
}

/* Tonearm */
.tonearm {
    position: absolute;
    bottom: 52px;
    right: 32px;
    width: 170px;
    height: 24px;
    transform-origin: right center;
    transform: rotate(-32deg);
    animation: tonearm-play 4s ease-in-out infinite;
}

@keyframes tonearm-play {
    0%, 100% { transform: rotate(-32deg); }
    50% { transform: rotate(-30deg); }
}

/* Counterweight */
.tonearm-counterweight {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, #4a4a4a 0%, #353535 50%, #252525 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.4);
}

.counterweight-ring {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #505050;
    border-radius: 50%;
}

/* Main Arm Tube */
.tonearm-arm {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
}

.arm-tube {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        #d0d0d0 0%,
        #b0b0b0 20%,
        #909090 50%,
        #707070 80%,
        #606060 100%
    );
    border-radius: 5px;
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Headshell */
.tonearm-headshell {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
    width: 45px;
    height: 18px;
    background: linear-gradient(180deg, #a0a0a0 0%, #808080 50%, #606060 100%);
    border-radius: 4px 12px 12px 4px;
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.headshell-connector {
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 12px;
    background: linear-gradient(90deg, #707070 0%, #505050 100%);
    border-radius: 2px;
}

/* Cartridge */
.tonearm-cartridge {
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 14px;
}

.cartridge-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Stylus Assembly */
.stylus-assembly {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-30%);
    width: 12px;
    height: 15px;
}

.stylus-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    width: 2px;
    height: 10px;
    background: linear-gradient(180deg, #808080 0%, #c0c0c0 40%, #ffd700 60%, #c0c0c0 100%);
    border-radius: 1px 1px 0 0;
}

.stylus-needle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 4px solid #c0c0c0;
}

/* Turntable Controls Panel */
.turntable-controls {
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

.control-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.control-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(212, 160, 86, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Power Button */
.control-power {
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, #252525 0%, #151515 100%);
    border-radius: 50%;
    border: 2px solid #353535;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Power LED */
.power-led {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow:
        0 0 8px #4ade80,
        0 0 16px rgba(74, 222, 128, 0.5),
        0 0 24px rgba(74, 222, 128, 0.3);
    animation: led-glow 2s ease-in-out infinite;
}

@keyframes led-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px #4ade80, 0 0 16px rgba(74, 222, 128, 0.5), 0 0 24px rgba(74, 222, 128, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 4px #4ade80, 0 0 8px rgba(74, 222, 128, 0.3);
    }
}

/* Start/Stop Button */
.start-stop-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, #303030 0%, #1a1a1a 100%);
    border-radius: 50%;
    border: 3px solid #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.btn-surface {
    width: 22px;
    height: 22px;
    background: linear-gradient(145deg, #404040 0%, #252525 100%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

/* Speed Control */
.speed-control {
    align-items: flex-start;
}

.speed-selector {
    width: 35px;
    height: 35px;
    background: linear-gradient(145deg, #252525 0%, #151515 100%);
    border-radius: 50%;
    border: 2px solid #353535;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.speed-knob {
    width: 25px;
    height: 25px;
    background:
        linear-gradient(145deg, #505050 0%, #353535 50%, #252525 100%);
    border-radius: 50%;
    position: relative;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -1px 3px rgba(0, 0, 0, 0.3);
}

.knob-indicator {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--amber);
    border-radius: 1px;
    box-shadow: 0 0 4px var(--amber);
}

.speed-labels {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.speed-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.speed-label.active {
    color: var(--amber);
    text-shadow: 0 0 8px rgba(212, 160, 86, 0.5);
}

/* Rubber Feet */
.turntable-foot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #2a2a2a 0%, #151515 100%);
    border-radius: 50%;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.foot-bl { bottom: -5px; left: 15px; }
.foot-br { bottom: -5px; right: 15px; }

@keyframes vinyl-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Warm spotlight glow behind vinyl */
.hero-spotlight {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 86, 0.3) 0%, rgba(199, 91, 18, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 650px;
    margin: 0 auto 0 5%;
    z-index: 2;
    position: relative;
}

/* Hide video for vinyl design */
.hero-video {
    display: none;
}

.video-overlay {
    display: none;
}

.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.note {
    position: absolute;
    font-size: 2.5rem;
    color: var(--caramel);
    opacity: 0.15;
    animation: float-note 8s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(42, 32, 24, 0.2);
}

.note:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; font-size: 3rem; }
.note:nth-child(2) { left: 25%; top: 8%; animation-delay: 1.5s; }
.note:nth-child(3) { left: 15%; top: 75%; animation-delay: 3s; font-size: 2rem; }
.note:nth-child(4) { left: 35%; top: 85%; animation-delay: 4.5s; }
.note:nth-child(5) { left: 8%; top: 50%; animation-delay: 6s; font-size: 2rem; }

@keyframes float-note {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-25px) rotate(10deg); opacity: 0.25; }
}

.hero-content {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--espresso);
    text-shadow: none;
    animation: slideInUp 0.8s ease;
}

.hero-content h1 .highlight {
    background: var(--sunset-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}

.hero-content h1 .white-highlight {
    color: var(--espresso);
    text-shadow: none;
    -webkit-text-fill-color: var(--espresso);
}

.hero-content p {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--walnut);
    text-shadow: none;
    max-width: 550px;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.4s both;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Vintage CTA Button */
.hero-section .cta-button {
    background: var(--burnt-orange);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    box-shadow:
        0 4px 0 var(--rust),
        0 6px 20px rgba(199, 91, 18, 0.3);
    transition: all 0.2s ease;
}

.hero-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 var(--rust),
        0 10px 30px rgba(199, 91, 18, 0.4);
}

.hero-section .cta-button:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 var(--rust),
        0 4px 10px rgba(199, 91, 18, 0.3);
}

/* Scroll hint styling */
.hero-section .bounce-arrow {
    color: var(--caramel);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Social Proof Section */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: slideInUp 0.8s ease 0.7s both;
    flex-wrap: wrap;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-stars {
    color: #fbbf24;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.customer-avatars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar-group {
    display: flex;
    margin-right: 0.5rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: -8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.avatar:first-child {
    margin-left: 0;
}

.customer-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Music Player Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease;
}

.music-player {
    background: var(--bg-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.music-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.player-header {
    margin-bottom: 1.5rem;
}

.player-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.player-song {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.player-genres {
    margin-top: 0.5rem;
}

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

.genre-tag-small {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.waveform-container {
    position: relative;
    margin-bottom: 1rem;
}

.waveform {
    display: flex;
    gap: 1px;
    height: 80px;
    align-items: end;
    cursor: pointer;
    position: relative;
}

.wave-bar {
    background: #e5e7eb;
    width: 3px;
    border-radius: 1px;
    transition: all 0.15s ease-out;
    cursor: pointer;
}

.wave-bar.played {
    background: var(--primary-color);
}

.wave-bar.current {
    background: var(--accent-color);
}

.wave-bar:hover {
    background: var(--primary-hover);
}

.waveform-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    width: 0%;
    opacity: 0.3;
    pointer-events: none;
    transition: width 0.1s ease-out;
}

.player-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.current-time {
    color: var(--primary-color);
}

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.3); }
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.play-btn {
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
}

.play-btn:hover {
    transform: scale(1.1);
}

.genre-bubbles {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.genre-bubble {
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    animation: bounce 2s ease-in-out infinite;
}

.genre-bubble:nth-child(1) { animation-delay: 0s; }
.genre-bubble:nth-child(2) { animation-delay: 0.2s; }
.genre-bubble:nth-child(3) { animation-delay: 0.4s; }
.genre-bubble:nth-child(4) { animation-delay: 0.6s; }
.genre-bubble:nth-child(5) { animation-delay: 0.8s; }

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

/* How It Works Section - Romantic Rose Theme */
.how-it-works-section {
    padding: 4rem 0 5rem 0;
    background: var(--stone-50);
    position: relative;
}

.how-it-works-section .section-header h2 {
    color: var(--stone-800);
}

.how-it-works-section .section-subtitle {
    color: var(--stone-600);
}

.steps-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.step-flow-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.step-flow-item[data-step="2"],
.step-flow-item[data-step="4"] {
    direction: rtl;
}

.step-flow-item[data-step="2"] *,
.step-flow-item[data-step="4"] * {
    direction: ltr;
}

.step-content-left,
.step-content-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--burnt-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
}

.step-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--espresso);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.step-content-left p,
.step-content-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Step Visuals */
.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Step 1 - Person Card */
.person-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.person-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
}

.greeting-bubble {
    position: absolute;
    top: -10px;
    right: -20px;
    background: #ec4899;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.greeting-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ec4899;
}

/* Step 2 - Genre Selector - Romantic Rose */
.genre-selector {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    border: 2px solid var(--rose-100);
    position: relative;
}

.genre-selector::before {
    display: none;
}

.genre-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.genre-grid .genre-tag,
.genre-tag {
    background: var(--stone-50);
    color: var(--stone-800);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--rose-200);
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
}

.genre-grid .genre-tag:hover,
.genre-tag:hover {
    transform: scale(1.05) translateY(-2px);
    background: var(--rose-50);
    border-color: var(--rose-400);
}

.genre-grid .genre-tag.active,
.genre-tag.active {
    background: var(--rose-500);
    color: white;
    border-color: var(--rose-500);
}

/* Step 3 - Lyrics Preview - Romantic Rose */
.lyrics-preview {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    color: var(--stone-800);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    border: 1px solid var(--rose-100);
    position: relative;
}

/* Soft top border accent */
.lyrics-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-400), var(--rose-500), var(--rose-400));
    border-radius: 16px 16px 0 0;
}

.lyrics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--coffee-light);
}

.song-title {
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    color: var(--espresso);
}

.check-icon {
    color: var(--olive-gold);
    font-size: 1.25rem;
}

.lyrics-content {
    line-height: 1.8;
    font-family: 'Libre Baskerville', Georgia, serif;
}

.lyrics-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--walnut);
    font-style: italic;
}

.lyrics-continue {
    font-size: 0.85rem;
    color: var(--caramel);
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
}

/* Step 4 - Music Player - Romantic Rose Theme */
.music-player-final {
    display: flex;
    justify-content: center;
}

.music-player-final .player-card::before {
    display: none;
}

.player-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    color: var(--stone-800);
    box-shadow:
        0 4px 20px rgba(244, 63, 94, 0.08),
        0 8px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    width: 280px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    border: 1px solid var(--rose-100);
    position: relative;
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 30px rgba(244, 63, 94, 0.12),
        0 16px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--rose-200);
}

/* Subtle gradient accent */
.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--rose-400), var(--rose-500), var(--amber-400));
    opacity: 0.8;
}

.player-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    width: 100%;
}

.song-name {
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--stone-800);
}

.play-button-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 0 var(--rose-700),
        0 6px 20px rgba(244, 63, 94, 0.3);
}

.play-button-large:hover {
    background: linear-gradient(135deg, var(--rose-600) 0%, var(--rose-700) 100%);
    transform: scale(1.08);
    box-shadow:
        0 6px 0 var(--rose-800),
        0 10px 30px rgba(244, 63, 94, 0.4);
}

.play-button-large:active {
    transform: scale(1.02);
    box-shadow:
        0 2px 0 var(--rose-700),
        0 4px 15px rgba(244, 63, 94, 0.25);
}

.view-song-btn {
    background: var(--rose-50);
    border: 1px solid var(--rose-200);
    color: var(--rose-600);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-song-btn:hover {
    background: var(--rose-100);
    border-color: var(--rose-300);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.15);
}

/* Step Arrows */
.step-arrow {
    display: flex;
    justify-content: center;
    margin: 0 0;
    height: 100px;
}

#step-1-arrow {
    height: 165px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    #step-1-arrow {
        height: 100px;
        margin-top: 20px;
    }
}

#step-2-arrow {
    padding-right: 175px;
    padding-bottom: 10px;
    height: 100px;
    margin-top: 30px;
}

#step-2-arrow-svg {
    height: 220px;
}

@media (max-width: 768px) {
    #step-2-arrow {
        padding-right: 0px;
        padding-bottom: 0px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    #step-2-arrow-svg {
        height: 120px;
    }
}

#step-3-arrow {
    height: 240px;
    margin-top: -60px;
}

#step-3-arrow-svg {
    width: 500px;
}

@media (max-width: 768px) {
    #step-3-arrow {
        height: 168px;
        margin-top: -38px;
    }

    #step-3-arrow-svg {
        width: 250px;
    }
}




.arrow-svg {
    width: 100px;
    height: 60px;
    opacity: 0.7;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-top: 4rem;
}

.final-cta .btn {
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
}

/* Examples Section */
.occasions-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.occasion-card {
    background: var(--bg-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.occasion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-preview {
    position: relative;
    height: 200px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-preview:hover .play-overlay {
    opacity: 1;
}

.play-btn-large {
    background: var(--bg-white);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.play-btn-large:hover {
    transform: scale(1.1);
}

.audio-visual {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.audio-bars {
    display: flex;
    gap: 2px;
    height: 30px;
    align-items: end;
}

.bar {
    background: rgba(255, 255, 255, 0.7);
    width: 3px;
    border-radius: 2px;
    transition: height 0.15s ease-out;
}

.bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.bar:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.bar:nth-child(5) { height: 40%; animation-delay: 0.4s; }

@keyframes audioWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.3); }
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Testimonials Section */
/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.start-designing-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.start-designing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.start-designing-btn:hover::before {
    left: 100%;
}

.start-designing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    color: white;
}

.reviews-grid {
    display: flex;
    flex-flow: column wrap;
    align-content: flex-start;
    padding: 1rem 0;
    align-items: start;
    height: 1800px;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: fit-content;
    min-height: auto;
    display: flex;
    flex-direction: column;
    margin: 0;
    align-self: start;  
    width: calc(33% - 16px);
    margin: .5rem;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
}

.review-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.1rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 1rem;
}

.review-song-title {
    font-size: 0.8rem;
    color: #718096;
    font-style: italic;
    margin-top: 0.5rem;
    flex-grow: 1;
}

.review-link-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-link-icon:hover {
    transform: scale(1.1);
}

.review-card.has-link {
    padding-bottom: 3rem;
}

.loading-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #718096;
}

/* FAQ Section - Romantic Rose Theme */
.faq-section {
    padding: 6rem 0;
    background: var(--stone-50);
}

.faq-section .section-header h2 {
    color: var(--stone-800);
}

.faq-vertical {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--rose-100);
    box-shadow: var(--shadow-md);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-rose);
    border-color: var(--rose-200);
}

.faq-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 70px;
}

.faq-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-500) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 3px solid var(--rose-200);
}

.faq-item:hover .faq-icon {
    transform: scale(1.08);
}

.faq-right {
    flex: 1;
}

.faq-right h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--stone-800);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.faq-right p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--stone-600);
}

.faq-audio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-play-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--rose-500);
    border: 2px solid var(--rose-500);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.faq-play-btn:hover {
    background: var(--rose-500);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.faq-play-btn.playing {
    background: var(--amber-400);
    color: var(--stone-900);
    border-color: var(--amber-400);
}

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

.faq-more {
    text-align: center;
    margin-top: 3rem;
}

.faq-more a {
    color: var(--burnt-orange);
    font-weight: 600;
}

/* Reviews Showcase Page Styles */
.reviews-hero-section {
    padding: 120px 0 60px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.reviews-hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.reviews-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.reviews-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.reviews-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.reviews-showcase-section {
    padding: 60px 0;
    background: #fafafa;
}

.reviews-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.reviews-sort .sort-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-weight: 500;
    cursor: pointer;
    min-width: 160px;
}

.reviews-sort .sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.reviews-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-date {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.load-more-container,
.end-of-reviews,
.no-reviews,
.reviews-error {
    text-align: center;
    padding: 3rem 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.end-of-reviews {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.end-of-reviews p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.no-reviews,
.reviews-error {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.no-reviews-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-icon {
    color: #dc3545;
}

.no-reviews h3,
.reviews-error h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.no-reviews p,
.reviews-error p {
    color: #666;
    margin-bottom: 2rem;
}

.reviews-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.reviews-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reviews-cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* CTA Section - Romantic Rose Theme */
.cta-section {
    position: relative;
    padding: 6rem 0;
    display: flex;
    justify-content: center;
}

.cta-background {
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--dark-gradient);
    z-index: -2;
    left: 0;
    right: 0;
    width: 100%;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--stone-800) 0%, var(--stone-900) 100%);
    z-index: -1;
}

/* Rose spotlight effect */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(244, 63, 94, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.cta-section .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-section .element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.08;
    color: var(--rose-400);
    animation: floatElements 10s ease-in-out infinite;
}

.element:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.element:nth-child(2) { left: 80%; top: 15%; animation-delay: 2s; }
.element:nth-child(3) { left: 60%; top: 70%; animation-delay: 4s; }
.element:nth-child(4) { left: 15%; top: 80%; animation-delay: 6s; }
.element:nth-child(5) { left: 85%; top: 60%; animation-delay: 8s; }

@keyframes floatElements {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.08; }
    50% { transform: translateY(-25px) rotate(8deg); opacity: 0.15; }
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    color: var(--stone-50);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(244, 63, 94, 0.2);
    color: var(--rose-300);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--rose-400);
    font-family: 'DM Sans', sans-serif;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    color: var(--parchment);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    color: var(--parchment);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.feature i {
    color: var(--amber);
    margin-right: 0.75rem;
}

.cta-buttons {
    margin-bottom: 1.5rem;
}

.cta-buttons .btn-primary {
    background: var(--amber);
    color: var(--espresso);
    border: none;
    box-shadow:
        0 4px 0 var(--caramel),
        0 6px 20px rgba(212, 160, 86, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: var(--mustard);
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 var(--caramel),
        0 10px 30px rgba(212, 160, 86, 0.4);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--coffee-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.cta-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-bubble {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bubble-content .stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.bubble-content p {
    color: white;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.bubble-content .author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.stats-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Footer - Romantic Rose Theme */
.footer {
    padding: 4rem 2rem;
    color: var(--stone-300);
    display: flex;
    justify-content: center;
    position: relative;
}

.footer-background {
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--stone-900);
    z-index: -2;
    left: 0;
    right: 0;
    width: 100%;
}

/* Rose line separator at top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-400), var(--rose-300), var(--rose-400), transparent);
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.footer-column h3,
.footer-column h4 {
    color: var(--stone-100);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-column.logo-column h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--rose-400), var(--rose-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column a {
    display: block;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: var(--stone-400);
    transition: color 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.footer-column a:hover {
    color: var(--rose-400);
}

.footer-bottom {
    display: flex;
    border-top: 1px solid var(--stone-700);
    padding-top: 2rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 24px 0;
    flex-direction: column;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    color: var(--stone-100);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: white;
    background: var(--rose-500);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.footer-bottom p {
    color: var(--stone-400);
    margin: 0;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 85%;
        z-index: -1;
        overflow: hidden;
        border-radius: 0px;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-section {
        min-height: 75vh;
        padding: 4rem 0;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .how-it-works-section {
        padding: 6rem 0;
    }
    
    .steps-flow {
        gap: 3rem;
    }
    
    .step-flow-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .step-flow-item[data-step="2"],
    .step-flow-item[data-step="4"] {
        direction: ltr;
    }
    
    .step-visual {
        order: -1;
    }
    
    .avatar-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .genre-selector {
        max-width: 300px;
    }
    
    .lyrics-preview {
        max-width: 350px;
    }
    
    .player-card {
        min-width: 250px;
    }

    .reviews-grid {
        align-content: flex-start;
        padding: 1rem 0;
        min-height: 1800px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header .container {
        justify-content: space-between;
        padding: 0.75rem 16px;
    }
    
    .logo-main {
        font-size: 1.5rem;
        gap: 8px;
    }
    
    .logo-subtitle {
        font-size: 0.875rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .main-nav,
    .nav-cta {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-section {
        padding: 3rem 0;
        min-height: 70vh;
    }

    /* Mobile record player - hidden or simplified */
    .hero-vinyl-container {
        width: 380px;
        height: 300px;
        right: -40%;
        top: 8%;
        transform: none;
        opacity: 0.25;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    }

    /* Hide record player details on mobile */
    .tonearm-assembly,
    .turntable-controls,
    .turntable-spindle,
    .turntable-brand,
    .dust-cover-hinge,
    .turntable-foot,
    .wood-grain-overlay,
    .platter-strobe,
    .platter-mat {
        display: none;
    }

    .turntable-base {
        padding: 15px;
        border-radius: 12px;
    }

    .turntable-platter {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 240px;
        height: 240px;
    }

    .vinyl-label {
        width: 35%;
        height: 35%;
    }

    .label-brand {
        font-size: 0.875rem;
    }

    .label-title,
    .label-rpm {
        display: none;
    }

    .hero-spotlight {
        width: 200px;
        height: 200px;
        right: -10%;
        opacity: 0.5;
    }

    .hero-container {
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-buttons {
        align-items: center !important;
    }

    .hero-content h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center !important;
    }

    .hero-buttons .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        min-width: 120px;
        padding: 0.75rem 1rem;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .rating-display {
        padding: 0.5rem 1rem;
    }
    
    .avatar {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }
    
    .reviews-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
        max-height: none;
        overflow-y: visible;
    }
    
    .how-it-works-section {
        padding: 5rem 0;
    }
    
    .steps-flow {
        gap: 2.5rem;
    }
    
    .step-flow-item {
        gap: 1.5rem;
    }
    
    .step-header h3 {
        font-size: 1.5rem;
    }
    
    .step-content-left p,
    .step-content-right p {
        font-size: 0.95rem;
    }
    
    .avatar-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .greeting-bubble {
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }
    
    .genre-selector {
        padding: 1.5rem;
        max-width: 280px;
    }
    
    .genre-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .genre-tag {
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }
    
    .lyrics-preview {
        padding: 1.5rem;
        max-width: 320px;
    }
    
    .lyrics-content p {
        font-size: 0.85rem;
    }
    
    .player-card {
        padding: 1.5rem;
        min-width: 220px;
    }
    
    .play-button-large {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .view-song-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .arrow-svg {
        width: 80px;
        height: 50px;
    }
    

    
    .occasions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .faq-vertical {
        gap: 2.5rem;
        max-width: 100%;
    }
    
    .faq-item {
        gap: 1.5rem;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .faq-right h3 {
        font-size: 1.25rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1rem;
    }
	.faq-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.faq-audio {
		display: flex;
		justify-content: center;
	}

	.faq-left {
		min-width: auto;
	}
	.reviews-grid {
		display: flex;
		flex-direction: column;
		height: auto;
		gap: 1.5rem;
	}

	.review-card {
		width: 100%;
		margin: 0;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-bottom: 2rem;
	}            
}

@media (max-width: 480px) {
    .header .container {
        padding: 0.75rem 12px;
    }
    
    .logo a {
        font-size: 1.25rem;
    }
    
    .mobile-nav {
        padding: 1rem 12px;
    }
    
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .hero-background {
        height: 90%;
    }
    .hero-section {
        padding: 2rem 0;
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .stat {
        min-width: 100px;
        padding: 0.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
        .avatar {
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
    }
    
    .how-it-works-section {
        padding: 4rem 0;
    }
    
    .steps-flow {
        gap: 2rem;
    }
    
    .step-flow-item {
        gap: 1rem;
    }
    
    .step-header h3 {
        font-size: 1.25rem;
    }
    
    .step-content-left p,
    .step-content-right p {
        font-size: 0.9rem;
    }
    
    .avatar-large {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .greeting-bubble {
        font-size: 0.875rem;
        padding: 0.3rem 0.6rem;
        top: -5px;
        right: -15px;
    }
    
    .genre-selector {
        padding: 1.25rem;
        max-width: 250px;
    }
    
    .genre-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }
    
    .genre-tag {
        font-size: 0.875rem;
        padding: 0.35rem 0.6rem;
    }
    
    .lyrics-preview {
        padding: 1.25rem;
        max-width: 280px;
    }
    
    .lyrics-content p {
        font-size: 0.8rem;
    }
    
    .player-card {
        padding: 1.25rem;
        min-width: 200px;
    }
    
    .play-button-large {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .view-song-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .arrow-svg {
        width: 60px;
        height: 40px;
    }
    

    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
    }
    
    .faq-vertical {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .faq-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .faq-left {
        min-width: auto;
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .faq-right h3 {
        font-size: 1.15rem;
    }
    
    .faq-right p {
        font-size: 0.95rem;
    }
    
    .faq-play-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Make inspiration cards less tall on phones */
    .inspiration-card {
        aspect-ratio: 3 / 4;
    }

    .inspiration-content {
        padding: 1rem;
    }

    .inspiration-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .inspiration-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .inspiration-tags {
        gap: 0.3rem;
    }

    .inspiration-tag {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .stats-widget {
        grid-template-columns: 1fr;
    }
    
    .music-player {
        padding: 1.5rem;
    }
    
    /* Reviews Page Responsive Styles */
    .reviews-hero-section {
        padding: 100px 0 40px;
    }
    
    .reviews-hero-section h1 {
        font-size: 2.2rem;
    }
    
    .reviews-stats {
        gap: 1.5rem;
    }
    
    .reviews-stats .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .reviews-stats .stat-number {
        font-size: 2rem;
    }
    
    .reviews-showcase-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .reviews-filter {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .reviews-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-cta-section h2 {
        font-size: 2rem;
    }
    
    .reviews-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Additional Mobile Styles for Reviews */
@media (max-width: 480px) {
    .reviews-hero-section h1 {
        font-size: 1.8rem;
    }
    
    .reviews-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .reviews-stats .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .reviews-cta-section {
        padding: 60px 0;
    }
    
    .reviews-cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Admin Pages Global Styling - 5px Border Radius */
body:has([class*="admin"]) *,
body[class*="admin"] *,
[href*="/admin"] *,
.admin-container *,
.admin-header *,
.admin-section *,
.admin-card *,
.stat-card,
.requests-table-container,
.admin-section-card,
.back-link,
.quick-action-btn,
.admin-form *,
.btn,
button,
input,
select,
textarea,
table,
.table,
.modal,
.modal-content,
.dropdown,
.alert,
.card,
.panel,
.form-control,
.form-group,
.input-group,
.navbar,
.nav,
.badge,
.progress,
.progress-bar,
.thumbnail,
.well,
.jumbotron,
.list-group-item {
    border-radius: 5px !important;
}

/* Specific admin elements that commonly need border radius */
.admin-container .stat-card,
.admin-container .admin-section-card,
.admin-container .requests-table-container,
.admin-container .back-link,
.admin-container .quick-action-btn,
.admin-container button,
.admin-container input,
.admin-container select,
.admin-container textarea,
.admin-container .btn {
    border-radius: 5px !important;
}

/* Override any existing border-radius values on admin pages */
body:has([class*="admin"]) * {
    border-radius: 5px !important;
}

/* Special handling for elements that should keep some rounding but be consistent */
.admin-container .section-header,
.admin-container .modal-header,
.admin-container .card-header {
    border-radius: 5px 5px 0 0 !important;
}

.admin-container .modal-footer,
.admin-container .card-footer {
    border-radius: 0 0 5px 5px !important;
}

/* Admin Section Description Styling */
.admin-container .section-description {
    color: white !important;
}

/* Exception: Keep affiliate partners section-description with original color */
.admin-container .section-header.affiliates .section-description {
    color: rgba(78, 78, 78, 0.9) !important;
}

/* Disabled Admin Section Card */
.admin-section-card.disabled {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(50%);
}

.admin-section-card.disabled:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.disabled-text {
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== SAMPLES SECTION - Modern Song Cards ===== */
.samples-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--rose-900) 0%, var(--stone-900) 100%);
    position: relative;
    overflow: hidden;
}

.samples-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(244, 63, 94, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Two-Column Layout */
.samples-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column - Content */
.samples-content {
    max-width: 550px;
}

.samples-content .section-label {
    display: inline-block;
    color: var(--rose-300);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.samples-title {
    color: white !important;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.samples-subtitle {
    color: var(--rose-200);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
}

/* Stacked Player List */
.samples-player-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Individual Player Row */
.sample-player-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sample-player-row:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.sample-player-row.playing {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rose-400);
}

/* Play Button */
.sample-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sample-play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.sample-player-row.playing .sample-play-btn {
    background: var(--rose-500);
    border-color: var(--rose-500);
}

.sample-player-row.playing .sample-play-btn i::before {
    content: "\f04c";
}

/* Player Info */
.sample-player-info {
    flex: 1;
    min-width: 0;
}

.sample-player-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem 0;
}

.sample-player-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Progress Bar */
.sample-progress-bar {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    display: none;
}

.sample-player-row.playing .sample-progress-bar {
    display: block;
}

.sample-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--rose-400);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Right Column - Vinyl Visual */
.samples-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Vinyl Record - Matching React Design */
.samples-vinyl {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer gradient ring */
.vinyl-gradient-ring {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(to top right, var(--rose-500), var(--amber-500));
}

/* Main vinyl body */
.vinyl-body {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--rose-900);
    border: 8px solid var(--rose-800);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Vinyl grooves overlay */
.vinyl-grooves {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.3;
    background: repeating-radial-gradient(
        circle at center,
        #333 0px,
        #000 2px,
        #333 4px
    );
}

/* Center album image */
.vinyl-center-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

/* Testimonial Quote Card */
.samples-quote-card {
    position: absolute;
    bottom: -40px;
    right: -20px;
    max-width: 280px;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: vinyl-spin-reverse 20s linear infinite;
    overflow: hidden;
    transition: height 0.4s ease-out;
}

.samples-quote-card blockquote {
    margin: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.samples-quote-card blockquote.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.samples-quote-card p {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--rose-700);
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.samples-quote-card cite {
    font-size: 0.8rem;
    color: var(--rose-500);
    font-style: normal;
    font-weight: 600;
}

/* Responsive Samples Section */
@media (max-width: 1024px) {
    .samples-two-column {
        gap: 2rem;
    }

    .vinyl-gradient-ring {
        width: 320px;
        height: 320px;
    }

    .vinyl-center-image {
        width: 140px;
        height: 140px;
    }

    .samples-quote-card {
        right: -10px;
        bottom: -30px;
        max-width: 240px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .samples-section {
        padding: 4rem 0;
    }

    .samples-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .samples-content {
        max-width: 100%;
        order: 1;
    }

    .samples-content .section-label,
    .samples-title,
    .samples-subtitle {
        text-align: center;
    }

    .samples-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .samples-visual {
        order: 0;
        flex-direction: column;
        align-items: center;
    }

    .samples-vinyl {
        width: 100%;
        justify-content: center;
    }

    .vinyl-gradient-ring {
        width: 280px;
        height: 280px;
    }

    .vinyl-center-image {
        width: 120px;
        height: 120px;
    }

    .samples-quote-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1.5rem auto 0;
        max-width: 300px;
        animation: none;
        width: 100%;
    }

    .sample-player-row {
        padding: 0.875rem 1rem;
    }

    .sample-play-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .vinyl-gradient-ring {
        width: 220px;
        height: 220px;
    }

    .vinyl-center-image {
        width: 90px;
        height: 90px;
    }

    .samples-quote-card p {
        font-size: 0.85rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .vinyl-gradient-ring,
    .vinyl-center-image,
    .samples-quote-card {
        animation: none !important;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--stone-50);
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--stone-800);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--stone-50);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--stone-700);
    margin-bottom: 1.5rem;
    font-style: normal;
}

.testimonial-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--stone-400);
    font-size: 0.8125rem;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: color 0.2s ease;
}

.testimonial-link:hover {
    color: var(--rose-500);
}

.testimonial-link i {
    font-size: 0.7rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--stone-800);
}

.author-occasion {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    color: var(--stone-500);
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ===== SIMPLIFIED FAQ SECTION ===== */
.faq-section-simple {
    padding: 5rem 0;
    background: var(--stone-50);
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--stone-800);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item-simple {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--stone-100);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--stone-700);
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--stone-900);
}

.faq-chevron {
    color: var(--rose-400);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item-simple.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-simple.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--stone-600);
}

.faq-answer a {
    color: var(--rose-500);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-more-simple {
    text-align: center;
    margin-top: 2.5rem;
}

.faq-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rose-500);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.faq-more-link:hover {
    color: var(--rose-600);
    gap: 0.75rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section-simple {
        padding: 4rem 0;
    }

    .faq-title {
        margin-bottom: 2rem;
    }

    .faq-accordion {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== REDUCED MOTION SUPPORT - Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-vinyl,
    .strobe-dots {
        animation: none;
    }

    .tonearm {
        animation: none;
        transform: rotate(-32deg);
    }

    .power-led {
        animation: none;
        box-shadow: 0 0 8px #4ade80;
    }

    .note {
        animation: none;
    }

    .element {
        animation: none;
    }

    .genre-bubble {
        animation: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}