/* ============================================
   RayRay Beats — Liquid Glass / Purple
   ============================================ */

@import 'fonts.css';

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

:root {
  --bg: #0c0b10;
  --bg-warm: #100f16;
  --surface: rgba(255,255,255,0.035);
  --glass: rgba(255,255,255,0.045);
  --glass-strong: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.08);
  --glass-border-hover: rgba(255,255,255,0.14);
  --text: #eae8f0;
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.28);
  --accent: #dc2626;
  --accent-light: #ef4444;
  --accent-soft: rgba(220,38,38,0.1);
  --accent-glow: rgba(220,38,38,0.2);
  --accent-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  --warm-glow: radial-gradient(ellipse, rgba(220,38,38,0.06) 0%, transparent 70%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --blur: blur(28px) saturate(150%);
  --font-head: 'Sora', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(220,38,38,0.25); border-radius: 10px; }

/* ---- Glass Utility ---- */
.glass {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  padding: 14px 48px;
  background: rgba(12,11,16,0.75);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; border-radius: 6px; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition); position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent-gradient) !important; color: #fff !important;
  padding: 9px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 13px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px var(--accent-glow); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); display: block; transition: 0.3s; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px 60px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(220,38,38,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(185,28,28,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(220,38,38,0.04) 0%, transparent 40%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, black 5%, transparent 60%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 720px; width: 100%; margin: 0 auto;
}

.hero-text { max-width: 660px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-family: var(--font-mono); color: var(--text-muted);
  margin-bottom: 18px;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: dotPulse 2s ease infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--accent-light); }

.hero-subtitle {
  font-size: 16px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 28px; max-width: 520px; margin-inline: auto;
}

.hero-ctas { display: flex; gap: 12px; justify-content: center; }
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-gradient); color: #fff;
  padding: 13px 28px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm); font-family: var(--font-body);
  transition: all 0.35s var(--ease);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); }
.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  color: var(--text-secondary); background: var(--glass); backdrop-filter: var(--blur);
  font-family: var(--font-body); transition: all 0.35s var(--ease);
}
.hero-btn-secondary:hover { border-color: var(--accent); color: var(--accent-light); background: var(--accent-soft); }

.hero-photo-wrapper {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-photo-glow {
  position: absolute; width: 420px; height: 520px; border-radius: 4em;
  background: radial-gradient(ellipse, rgba(220,38,38,0.18) 0%, rgba(185,28,28,0.06) 50%, transparent 75%);
  animation: photoGlow 5s ease-in-out infinite; filter: blur(50px);
}
@keyframes photoGlow { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 1; } }

.hero-photo {
    width: auto;
    height: 500px;
    border-radius: 4em;
    object-position: center top;
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.15), 0 0 120px rgba(168, 85, 247, 0.05);
    position: relative;
    z-index: 1;
}


.hero-equalizer {
  display: flex; gap: 3px; height: 36px; align-items: flex-end;
  margin-top: 32px; opacity: 0.4; justify-content: center;
}
.hero-equalizer .bar {
  width: 3px; background: var(--accent); border-radius: 2px; opacity: 0.4;
  animation: heroEq 1.2s ease-in-out infinite;
}
@keyframes heroEq { 0%,100% { height: 10%; } 50% { height: 100%; } }

.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.2; animation: scrollFloat 3s ease infinite;
}
.hero-scroll-mouse { width: 16px; height: 26px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 9px; position: relative; }
.hero-scroll-wheel { width: 2px; height: 5px; background: var(--accent); border-radius: 2px; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s ease infinite; }
@keyframes scrollWheel { 0% { top: 5px; opacity: 1; } 100% { top: 14px; opacity: 0; } }
.hero-scroll-indicator span { font-size: 9px; font-family: var(--font-mono); color: var(--text-muted); letter-spacing: 1px; }
@keyframes scrollFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(5px); } }

/* ---- Marquee ---- */
.marquee {
  overflow: hidden; white-space: nowrap; padding: 16px 0;
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  background: var(--surface);
}
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-reverse .marquee-track { animation-direction: reverse; }
.marquee-item { font-family: var(--font-head); font-size: 15px; font-weight: 600; opacity: 0.12; padding: 0 18px; }
.marquee:hover .marquee-item { opacity: 0.25; }
.marquee-sep { opacity: 0.06; padding: 0 6px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Section ---- */
.section { padding: 100px 48px; position: relative; }
.section-header { margin-bottom: 52px; }
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.section-label { font-size: 12px; font-family: var(--font-mono); color: var(--accent); opacity: 0.7; margin-bottom: 8px; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.8px; }
.section-desc { max-width: 360px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; }

/* ---- Filter Bar ---- */
.filter-bar { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text-secondary); padding: 8px 20px; font-size: 13px; font-weight: 500;
  cursor: pointer; border-radius: var(--radius-sm);
  font-family: var(--font-body); transition: all 0.3s var(--ease);
  backdrop-filter: var(--blur); position: relative; overflow: hidden;
}
.filter-btn-bg {
  position: absolute; inset: 0; background: var(--accent-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease); z-index: 0; border-radius: var(--radius-sm);
}
.filter-btn-text { position: relative; z-index: 1; transition: color 0.3s; }
.filter-btn:hover .filter-btn-bg, .filter-btn.active .filter-btn-bg { transform: scaleX(1); }
.filter-btn:hover .filter-btn-text, .filter-btn.active .filter-btn-text { color: #fff; }

/* ---- Beat Grid ---- */
.beats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }

.beat-card {
  background: var(--glass); backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 22px; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
  transform-style: preserve-3d; will-change: transform;
}
.beat-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(220,38,38,0.1), 0 0 30px rgba(220,38,38,0.04);
  border-color: rgba(220,38,38,0.15);
}
/* Animated border glow on hover */
.beat-card::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, transparent 40%, rgba(220,38,38,0.15) 50%, transparent 60%);
  border-radius: var(--radius); z-index: -1; opacity: 0;
  transition: opacity 0.5s; background-size: 300% 300%;
  animation: borderShimmer 3s ease infinite;
}
.beat-card:hover::before { opacity: 1; }
@keyframes borderShimmer { 0% { background-position: 0% 0%; } 50% { background-position: 100% 100%; } 100% { background-position: 0% 0%; } }

.beat-card .card-shine {
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(220,38,38,0.05) 0%, transparent 50%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
}
.beat-card:hover .card-shine { opacity: 1; }

.beat-card-number { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); margin-bottom: 12px; }
.beat-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.beat-card-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
.beat-card-genre {
  font-size: 10px; font-family: var(--font-mono); color: var(--text-muted);
  background: var(--surface); padding: 3px 9px; border-radius: var(--radius-xs); border: 1px solid var(--glass-border);
}
.beat-card-meta { display: flex; gap: 12px; margin-bottom: 14px; font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }
.beat-card-player { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.play-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(220,38,38,0.3);
  background: var(--accent-soft); color: var(--accent-light);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease); flex-shrink: 0; font-size: 13px;
}
.play-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.12); box-shadow: 0 0 20px var(--accent-glow); }
.play-btn.playing { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 0 24px var(--accent-glow); animation: playPulse 2s ease infinite; }
@keyframes playPulse { 0%,100% { box-shadow: 0 0 20px var(--accent-glow); } 50% { box-shadow: 0 0 35px var(--accent-glow), 0 0 60px rgba(220,38,38,0.08); } }

.beat-card-waveform { flex: 1; height: 36px; }
.beat-card-waveform canvas { width: 100%; height: 100%; }

.beat-card-footer { display: flex; justify-content: space-between; align-items: center; }
.beat-card-price { font-family: var(--font-head); font-size: 24px; font-weight: 700; }
.beat-card-price .currency { font-size: 14px; color: var(--text-muted); }

.beat-buy-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--accent-gradient); color: #fff; border: none;
  padding: 9px 20px; font-size: 13px; font-weight: 600;
  border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font-body); transition: all 0.3s var(--ease);
}
.beat-buy-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 30px var(--accent-glow); }
.beat-buy-btn svg { width: 14px; height: 14px; }

.beat-card-tags { display: flex; gap: 4px; margin-top: 10px; flex-wrap: wrap; }
.beat-tag {
  font-size: 9px; font-family: var(--font-mono); padding: 2px 7px;
  border: 1px solid var(--glass-border); color: var(--text-muted);
  border-radius: var(--radius-xs); transition: 0.3s;
}
.beat-card:hover .beat-tag { color: var(--text-secondary); border-color: rgba(220,38,38,0.15); }

/* ---- Pagination ---- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 44px; }
.pagination-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  color: var(--text-muted); font-size: 13px; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; transition: all 0.3s var(--ease); backdrop-filter: var(--blur);
}
.pagination-btn:hover { border-color: var(--accent); color: var(--accent-light); }
.pagination-btn.active { background: var(--accent-gradient); color: #fff; border-color: var(--accent); }
.pagination-btn:disabled { opacity: 0.15; pointer-events: none; }

/* ---- Placements Section ---- */
.work-section { background: var(--bg-warm); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.work-grid { display: flex; flex-direction: column; gap: 12px; }

.work-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  background: var(--glass); backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 20px 24px; transition: all 0.4s var(--ease);
}
.work-card:hover { border-color: rgba(220,38,38,0.12); box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(220,38,38,0.04); transform: translateY(-3px) scale(1.005); }
.work-card-play:hover { background: var(--accent); color: #fff; transform: scale(1.12); box-shadow: 0 0 16px var(--accent-glow); }

.work-card-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid rgba(220,38,38,0.2);
  color: var(--accent-light); display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer; transition: all 0.3s var(--ease); flex-shrink: 0;
}
.work-card-play:hover { background: var(--accent); color: #fff; transform: scale(1.06); }

.work-card-info { min-width: 0; }
.work-card-song { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.work-card-credit { font-size: 13px; color: var(--text-secondary); }
.work-card-credit strong { color: var(--text); font-weight: 600; }
.work-card-credit .accent { color: var(--accent-light); }

.work-card-stats { display: flex; gap: 24px; flex-shrink: 0; }
.work-stat { text-align: center; }
.work-stat-value { font-family: var(--font-head); font-size: 17px; font-weight: 700; }
.work-stat-label { font-size: 10px; font-family: var(--font-mono); color: var(--text-muted); margin-top: 2px; }

.work-card-badge {
  font-size: 9px; font-family: var(--font-mono); padding: 3px 9px;
  border-radius: var(--radius-xs); display: inline-block; margin-top: 5px;
}
.work-card-badge.released { background: rgba(74,222,128,0.08); color: #4ade80; border: 1px solid rgba(74,222,128,0.15); }
.work-card-badge.wip { background: var(--accent-soft); color: var(--accent-light); border: 1px solid rgba(220,38,38,0.2); }

.work-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }

/* ---- About ---- */
.about { background: var(--bg-warm); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-photo-wrapper { display: flex; justify-content: center; align-items: center; position: relative; }
.about-photo-glow {
  position: absolute; width: 300px; height: 420px; border-radius: 2em;
  background: radial-gradient(ellipse, rgba(220,38,38,0.12) 0%, transparent 70%);
  filter: blur(40px); animation: photoGlow 5s ease-in-out infinite;
}
.about-photo {
  width: auto; height: 450px; border-radius: 2em;
  object-fit: cover; object-position: center top;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 50px rgba(220,38,38,0.1), 0 20px 60px rgba(0,0,0,0.3);
  position: relative; z-index: 1;
}
.about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-text p strong { color: var(--accent-light); }

.about-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat-item { text-align: center; position: relative; }
.stat-item::before { content: ''; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); width: 16px; height: 2px; background: var(--accent); opacity: 0.4; border-radius: 1px; }
.stat-number { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--accent-light); }
.stat-label { font-size: 11px; font-family: var(--font-mono); color: var(--text-muted); margin-top: 4px; }

/* ---- CTA ---- */
.cta-section { text-align: center; padding: 120px 48px; position: relative; overflow: hidden; }
.cta-section h2 { font-family: var(--font-head); font-size: clamp(30px, 4.5vw, 56px); font-weight: 800; letter-spacing: -1px; line-height: 1.05; margin-bottom: 20px; }
.cta-section p { color: var(--text-secondary); font-size: 15px; margin-bottom: 36px; max-width: 440px; margin-inline: auto; line-height: 1.7; }

.cta-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent-gradient); color: #fff;
  padding: 16px 36px; font-size: 15px; font-weight: 600;
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font-body); cursor: pointer;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.cta-whatsapp-bg { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); transform: translateX(-100%); animation: shimmer 3s ease infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }
.cta-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 48px var(--accent-glow); }
.cta-whatsapp svg { width: 20px; height: 20px; }
.cta-glow { position: absolute; top: 50%; left: 50%; width: 350px; height: 350px; transform: translate(-50%,-50%); background: var(--warm-glow); animation: ctaPulse 5s ease-in-out infinite; filter: blur(20px); }
@keyframes ctaPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.3); } }

/* ---- Footer ---- */
.footer { padding: 36px 48px; border-top: 1px solid var(--glass-border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; font-size: 12px; color: var(--text-muted); }
.footer-brand { font-family: var(--font-head); font-size: 14px; font-weight: 700; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); font-size: 12px; transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-family: var(--font-mono); font-size: 11px; }

/* ---- Global Player ---- */
.global-player {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(12,11,16,0.85); backdrop-filter: var(--blur);
  border-top: 1px solid var(--glass-border);
  padding: 10px 36px; display: flex; align-items: center; gap: 14px;
  transform: translateY(100%); transition: transform 0.5s var(--ease);
}
.global-player.active { transform: translateY(0); }
.global-player-vinyl {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(from 0deg, #1a1a2e 0deg, #252540 90deg, #1a1a2e 180deg, #252540 270deg, #1a1a2e 360deg);
  position: relative; animation: spin 2s linear infinite; animation-play-state: paused;
}
.global-player-vinyl::before { content: ''; position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; transform: translate(-50%,-50%); }
.global-player.active .global-player-vinyl { animation-play-state: running; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.global-player-info { min-width: 110px; }
.global-player-title { font-family: var(--font-head); font-size: 13px; font-weight: 600; }
.global-player-genre { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); }
.global-player-controls { display: flex; align-items: center; }
.global-play-btn {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid rgba(220,38,38,0.3);
  background: var(--accent-soft); color: var(--accent-light); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 11px; transition: all 0.3s;
}
.global-play-btn:hover, .global-play-btn.playing { background: var(--accent); border-color: var(--accent); color: #fff; }
.global-player-progress { flex: 1; height: 3px; background: rgba(255,255,255,0.06); cursor: pointer; border-radius: 2px; overflow: hidden; }
.global-player-progress-fill { height: 100%; background: var(--accent); border-radius: 2px; width: 0%; transition: width 0.1s linear; }
.global-player-time { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); min-width: 65px; text-align: center; }
.global-player-volume { display: flex; align-items: center; gap: 5px; opacity: 0.45; }
.volume-slider { -webkit-appearance: none; width: 55px; height: 2px; background: rgba(255,255,255,0.12); border-radius: 2px; outline: none; }
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); cursor: pointer; }
.global-player-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 16px; padding: 4px; transition: color 0.3s; }
.global-player-close:hover { color: var(--text); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-title { font-size: clamp(42px, 10vw, 64px); letter-spacing: -1.5px; }
  .section-title { font-size: clamp(30px, 7vw, 44px); }
  .cta-section h2 { font-size: clamp(32px, 8vw, 52px); }
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(12,11,16,0.95); backdrop-filter: var(--blur); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--glass-border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 20px; }
  .section-header-flex { flex-direction: column; align-items: flex-start; gap: 12px; }
  .beats-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-photo { height: 350px; }
  .about-photo-glow { width: 240px; height: 360px; }
  .about-stats { justify-content: center; flex-wrap: wrap; gap: 28px; }
  .work-card { grid-template-columns: 1fr; gap: 14px; }
  .work-card-play { display: none; }
  .work-card-stats { justify-content: flex-start; }
  .global-player { padding: 12px 20px; gap: 10px; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
  .global-player-volume, .global-player-time { display: none; }
  .global-player-vinyl { width: 26px; height: 26px; }
  .global-player-info { min-width: 80px; }
  .global-player-title { font-size: 12px; }
  .global-play-btn { width: 34px; height: 34px; font-size: 13px; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
  .cta-section { padding: 80px 20px; }
  .hero { padding: 76px 20px 48px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 24px; }
  .hero-tag { margin-bottom: 14px; font-size: 11px; }
  .hero-equalizer { margin-top: 24px; height: 28px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  /* Mobile Headlines */
  .hero-title { font-size: 44px; letter-spacing: -1px; }
  .section-title { font-size: 32px; }
  .cta-section h2 { font-size: 34px; }
  .stat-number { font-size: 36px; }
  .beat-card-title { font-size: 20px; }
  .beat-card-price { font-size: 26px; }
  .work-card-song { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero { padding: 70px 16px 40px; }
  .hero-title { font-size: 38px; letter-spacing: -0.8px; }
  .hero-subtitle { font-size: 14px; }
  .section { padding: 60px 16px; }
  .section-title { font-size: 28px; }
  .cta-section h2 { font-size: 30px; }
  .beat-card { padding: 18px; }
  .stat-number { font-size: 32px; }
  .hero-photo { width: auto; height: 240px; }
  .hero-photo-glow { width: 220px; height: 260px; }
}
