/* ============================================
   ANGEL'S RADIO - Selectah Slim J
   "One Love" Reggae Vibes
   ============================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Permanent+Marker&display=swap');

/* === CSS VARIABLES === */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8960C;
  --red: #E63946;
  --red-dark: #9B1B24;
  --green: #2DB84B;
  --green-dark: #1A7A30;
  --yellow: #FFD700;
  --rasta-red: #E63946;
  --rasta-yellow: #FFD700;
  --rasta-green: #2DB84B;
  --white: #f5f5f5;
  --white-muted: #cccccc;
  --gray: #888888;
  --gray-dark: #444444;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Permanent Marker', cursive;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--gold);
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === RASTA STRIPE ACCENT === */
.rasta-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--rasta-green) 33%, var(--rasta-yellow) 33%, var(--rasta-yellow) 66%, var(--rasta-red) 66%);
}

.rasta-stripe-thick {
  height: 6px;
  background: linear-gradient(90deg, var(--rasta-green) 33%, var(--rasta-yellow) 33%, var(--rasta-yellow) 66%, var(--rasta-red) 66%);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  animation: pulse-glow 3s ease-in-out infinite;
}

.nav-logo-text {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--white-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #000 !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(45, 184, 75, 0.08) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 25%; animation-delay: 1.5s; }
.hero-particle:nth-child(3) { left: 40%; animation-delay: 3s; }
.hero-particle:nth-child(4) { left: 55%; animation-delay: 0.8s; }
.hero-particle:nth-child(5) { left: 70%; animation-delay: 2.2s; }
.hero-particle:nth-child(6) { left: 85%; animation-delay: 4s; }
.hero-particle:nth-child(7) { left: 15%; animation-delay: 5s; }
.hero-particle:nth-child(8) { left: 60%; animation-delay: 6s; }
.hero-particle:nth-child(9) { left: 35%; animation-delay: 1s; }
.hero-particle:nth-child(10) { left: 90%; animation-delay: 3.5s; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--rasta-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.3));
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--white-muted);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-tagline em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 0 20px;
  opacity: 0.2;
}

.hero-waveform .bar {
  width: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  animation: waveform 1.5s ease-in-out infinite;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45, 184, 75, 0.4);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* === SECTION STYLES === */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.section-title .gold {
  color: var(--gold);
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    linear-gradient(225deg, rgba(230, 57, 70, 0.08) 0%, transparent 50%);
  font-size: 5rem;
  opacity: 0.8;
}

.about-image-placeholder span {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 20px;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rasta-green), var(--rasta-yellow), var(--rasta-red));
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.about-text p {
  color: var(--white-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-stat:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.about-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.about-stat .label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* === FEATURED MUSIC SECTION (HOME) === */
.featured-tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.track-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.track-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.track-card-art {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.track-card-art-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.track-card-art-placeholder.art-1 {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}
.track-card-art-placeholder.art-2 {
  background: linear-gradient(135deg, #2d132c, #801336, #c72c41);
}
.track-card-art-placeholder.art-3 {
  background: linear-gradient(135deg, #1b4332, #2d6a4f, #52b788);
}
.track-card-art-placeholder.art-4 {
  background: linear-gradient(135deg, #3d0c02, #7b2d26, #d4a373);
}

.track-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: var(--transition);
}

.track-card:hover .track-card-play {
  opacity: 1;
}

.track-card-play-btn {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  transform: scale(0.8);
  transition: var(--transition);
}

.track-card:hover .track-card-play-btn {
  transform: scale(1);
}

.track-card-info {
  padding: 20px;
}

.track-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.track-card-artist {
  font-size: 0.85rem;
  color: var(--gray);
}

.track-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
}

.track-card-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

.track-card-duration {
  font-size: 0.8rem;
  color: var(--gray);
}

/* === MUSIC PAGE - AUDIO PLAYER === */
.music-player {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.music-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rasta-green), var(--rasta-yellow), var(--rasta-red));
}

.player-main {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.player-album-art {
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.player-album-art .vinyl-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.player-album-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.player-info {
  flex: 1;
}

.player-now-playing {
  font-size: 0.7rem;
  color: var(--rasta-green);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-now-playing .eq-bars {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 12px;
}

.player-now-playing .eq-bar {
  width: 3px;
  background: var(--rasta-green);
  border-radius: 2px;
  animation: eq-bar 0.8s ease-in-out infinite;
}

.player-now-playing .eq-bar:nth-child(1) { height: 4px; animation-delay: 0s; }
.player-now-playing .eq-bar:nth-child(2) { height: 8px; animation-delay: 0.2s; }
.player-now-playing .eq-bar:nth-child(3) { height: 6px; animation-delay: 0.4s; }
.player-now-playing .eq-bar:nth-child(4) { height: 10px; animation-delay: 0.1s; }

.player-track-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.player-track-artist {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.player-progress {
  margin-bottom: 20px;
}

.player-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-primary);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.player-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  width: 35%;
  transition: width 0.1s;
  position: relative;
}

.player-progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-card);
  opacity: 0;
  transition: var(--transition);
}

.player-progress-bar:hover .player-progress-fill::after {
  opacity: 1;
}

.player-times {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-btn {
  background: none;
  border: none;
  color: var(--white-muted);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 50%;
}

.player-btn:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.player-btn-play {
  width: 56px;
  height: 56px;
  background: var(--gold) !important;
  color: #000 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.player-btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.player-volume-slider {
  width: 100px;
  height: 4px;
  background: var(--bg-primary);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.player-volume-fill {
  height: 100%;
  width: 70%;
  background: var(--gold);
  border-radius: 2px;
}

/* Playlist */
.playlist {
  margin-top: 40px;
}

.playlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.playlist-header h3 {
  font-size: 1.3rem;
}

.playlist-count {
  font-size: 0.85rem;
  color: var(--gray);
}

.playlist-item {
  display: grid;
  grid-template-columns: 40px 50px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.playlist-item:hover {
  background: var(--glass);
  border-color: var(--glass-border);
}

.playlist-item.active {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

.playlist-item-num {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.playlist-item.active .playlist-item-num {
  color: var(--gold);
}

.playlist-item-art {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
}

.playlist-item-art-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.playlist-item-info {
  min-width: 0;
}

.playlist-item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item.active .playlist-item-title {
  color: var(--gold);
}

.playlist-item-album {
  font-size: 0.8rem;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item-duration {
  font-size: 0.85rem;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}

.playlist-item-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.playlist-item-buy {
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.playlist-item-buy:hover {
  background: var(--gold);
  color: #000;
}

/* === MERCH SECTION === */
.merch-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.merch-filter {
  padding: 8px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white-muted);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.merch-filter.active,
.merch-filter:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.merch-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.merch-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.merch-card-badge.new {
  background: var(--rasta-green);
  color: #000;
}

.merch-card-badge.limited {
  background: var(--red);
  color: var(--white);
}

.merch-card-badge.sale {
  background: var(--gold);
  color: #000;
}

.merch-card-image {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.merch-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
}

.merch-card-image-placeholder span {
  font-size: 0.8rem;
  color: var(--gray);
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.merch-card-quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  transform: translateY(100%);
  transition: var(--transition);
}

.merch-card:hover .merch-card-quick-view {
  transform: translateY(0);
}

.merch-card-body {
  padding: 20px;
}

.merch-card-category {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.merch-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.merch-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.merch-card-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
}

.merch-card-price .old-price {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.merch-card-cart-btn {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white-muted);
  font-size: 1rem;
}

.merch-card-cart-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* === EVENTS SECTION === */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rasta-green), var(--rasta-yellow), var(--rasta-red));
}

.event-card:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  transform: translateX(8px);
}

.event-card-date {
  text-align: center;
  padding: 16px;
  background: var(--glass);
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
}

.event-card-date .month {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.event-card-date .day {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 4px 0;
}

.event-card-date .year {
  font-size: 0.75rem;
  color: var(--gray);
}

.event-card-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.event-card-info .venue {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.event-card-info .location {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.event-card-info .lineup {
  font-size: 0.8rem;
  color: var(--white-muted);
}

.event-card-info .lineup strong {
  color: var(--gold);
}

.event-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.event-status {
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-status.upcoming {
  background: rgba(45, 184, 75, 0.15);
  color: var(--green);
  border: 1px solid rgba(45, 184, 75, 0.3);
}

.event-status.soldout {
  background: rgba(230, 57, 70, 0.15);
  color: var(--red);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.event-status.live-now {
  background: rgba(230, 57, 70, 0.15);
  color: var(--red);
  border: 1px solid rgba(230, 57, 70, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

/* === LIVE STREAM SECTION === */
.live-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
}

.live-player {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.live-player-screen {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.live-offline-msg {
  text-align: center;
}

.live-offline-msg .icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.live-offline-msg h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--white-muted);
}

.live-offline-msg p {
  color: var(--gray);
  font-size: 0.9rem;
}

.live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--red);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.live-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.live-viewer-count {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--white-muted);
}

.live-player-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-player-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.live-player-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}

/* Chat */
.live-chat {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 600px;
}

.live-chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-chat-header h4 {
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.live-chat-online {
  font-size: 0.75rem;
  color: var(--rasta-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-chat-online .dot {
  width: 6px;
  height: 6px;
  background: var(--rasta-green);
  border-radius: 50%;
}

.live-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: fadeInUp 0.3s ease;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  font-weight: 600;
}

.chat-avatar.green { background: rgba(45, 184, 75, 0.2); color: var(--green); }
.chat-avatar.gold { background: rgba(212, 175, 55, 0.2); color: var(--gold); }
.chat-avatar.red { background: rgba(230, 57, 70, 0.2); color: var(--red); }

.chat-body {
  flex: 1;
  min-width: 0;
}

.chat-username {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.chat-username.mod {
  color: var(--gold);
}

.chat-text {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.4;
  word-break: break-word;
}

.chat-time {
  font-size: 0.65rem;
  color: var(--gray-dark);
  margin-top: 2px;
}

.live-chat-input {
  padding: 16px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 10px;
}

.live-chat-input input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.live-chat-input input:focus {
  border-color: var(--gold);
}

.live-chat-input input::placeholder {
  color: var(--gray-dark);
}

.live-chat-input button {
  padding: 12px 20px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.live-chat-input button:hover {
  background: var(--gold-light);
}

/* === LIVE SCHEDULE === */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.schedule-card:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}

.schedule-card-day {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.schedule-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.schedule-card-time {
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.schedule-card-desc {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* === MEMBERSHIP SECTION === */
.membership-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.membership-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--bg-card) 50%);
  transform: scale(1.05);
}

.membership-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.membership-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.membership-card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.membership-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.membership-card-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.membership-card-price {
  margin-bottom: 24px;
}

.membership-card-price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
}

.membership-card-price .period {
  font-size: 0.85rem;
  color: var(--gray);
}

.membership-card-features {
  text-align: left;
  margin-bottom: 30px;
}

.membership-card-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--glass-border);
}

.membership-card-features li:last-child {
  border-bottom: none;
}

.membership-card-features li .check {
  color: var(--rasta-green);
  font-weight: bold;
}

.membership-card-features li .x {
  color: var(--gray-dark);
}

/* === FOOTER === */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 0;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter {
  margin-top: 16px;
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-newsletter input:focus {
  border-color: var(--gold);
}

.footer-newsletter input::placeholder {
  color: var(--gray-dark);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-legal a {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* === ANIMATIONS === */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.7); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

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

@keyframes eq-bar {
  0%, 100% { height: 4px; }
  50% { height: 12px; }
}

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

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

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

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === PAGE HERO (subpages) === */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    var(--bg-primary);
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--gray-dark);
  border-radius: 4px;
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .live-container {
    grid-template-columns: 1fr;
  }

  .live-chat {
    height: 400px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .event-card {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }

  .event-card-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .player-main {
    grid-template-columns: 150px 1fr;
    gap: 24px;
  }

  .player-album-art {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .player-album-art {
    margin: 0 auto;
  }

  .player-controls {
    justify-content: center;
  }

  .player-volume {
    display: none;
  }

  .playlist-item {
    grid-template-columns: 30px 1fr auto;
  }

  .playlist-item-art,
  .playlist-item-price {
    display: none;
  }

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

  .event-card::before {
    left: 0;
    top: 0;
    right: 0;
    bottom: unset;
    width: 100%;
    height: 4px;
  }

  .event-card-date {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .event-card-date .day {
    font-size: 1.5rem;
    margin: 0;
  }

  .event-card-actions {
    justify-content: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .membership-card.featured {
    transform: none;
  }

  .membership-card.featured:hover {
    transform: translateY(-8px);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .merch-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .music-player {
    padding: 20px;
  }

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

  .membership-tiers {
    grid-template-columns: 1fr;
  }
}
