/* ===== La Cuchotk – Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Raleway:wght@400;500;600&display=swap');

:root {
  --gold: #d4920a;
  --gold-bright: #f0a820;
  --gold-dark: #a36c00;
  --bg-dark: #0d0600;
  --bg-card: #1a0c02;
  --bg-nav: rgba(10,4,0,0.97);
  --blog-bg: #f0e8d8;
  --blog-card: #faf5ed;
  --text-white: #ffffff;
  --text-cream: #f0ddb8;
  --text-muted: #c0a070;
  --red-tag: #c0392b;
  --green-tag: #27ae60;
  --border-gold: rgba(212,146,10,0.3);
  --shadow-gold: 0 0 30px rgba(212,146,10,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-gold);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 56px; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

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

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-cream);
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-cream);
  font-size: 0.8rem;
  transition: all 0.2s;
}

.nav-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,146,10,0.1);
}

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

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0600 0%, #1a0c02 40%, #2a1200 70%, #1a0800 100%);
  display: flex;
  flex-direction: column;
}

.hero-slider {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; position: relative; }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(180,100,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(100,50,0,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative ON AIR sign on right */
.hero-onair {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 520px;
}

.hero-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: floatUp 1s ease-out;
}

.hero-mic {
  width: 200px;
  filter: drop-shadow(0 0 40px rgba(212,146,10,0.5));
  animation: micFloat 4s ease-in-out infinite;
}

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

.hero-notes {
  position: absolute;
  font-size: 2rem;
  color: var(--gold-bright);
  animation: noteFloat 3s ease-in-out infinite;
  opacity: 0.8;
}
.hero-note-1 { top: 30%; left: 5%; animation-delay: 0s; }
.hero-note-2 { top: 15%; left: 14%; animation-delay: 0.5s; font-size: 1.5rem; }
.hero-note-3 { bottom: 25%; left: 8%; animation-delay: 1s; }
.hero-note-4 { top: 10%; left: 22%; animation-delay: 1.5s; font-size: 2.5rem; }

@keyframes noteFloat {
  0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.8; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 0.4; }
}

.hero-badge {
  background: linear-gradient(135deg, #8B4513 0%, #5D2906 50%, #3D1A00 100%);
  border: 3px solid var(--gold);
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,146,10,0.3);
}

.hero-badge .brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-badge .brand-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  color: var(--text-cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text-section {
  padding: 0 2rem;
  animation: slideInRight 1s ease-out 0.2s both;
}

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

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

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-headline .line-gold { color: var(--gold-bright); }
.hero-headline .line-white { color: var(--text-white); }

.hero-subtext {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: var(--text-cream);
  line-height: 1.7;
  margin: 1.2rem 0 2rem;
  max-width: 420px;
  opacity: 0.9;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: #1a0600;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212,146,10,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,146,10,0.6);
  background: linear-gradient(135deg, var(--gold-bright) 0%, #ffc040 50%, var(--gold-bright) 100%);
}

.btn-gold .play-icon {
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #1a0600;
}

.hero-right-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatUp 1s ease-out 0.4s both;
}

.hero-mic-right {
  width: 160px;
  filter: drop-shadow(0 0 30px rgba(212,146,10,0.4));
  opacity: 0.85;
}

/* ON AIR badge */
.on-air-badge {
  background: linear-gradient(135deg, #8B0000, #c0392b, #8B0000);
  color: #ff6b35;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  box-shadow: 0 0 30px rgba(192,57,43,0.6), inset 0 0 20px rgba(0,0,0,0.4);
  text-shadow: 0 0 10px rgba(255,100,50,0.8);
  animation: onairPulse 2s ease-in-out infinite;
}

@keyframes onairPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(192,57,43,0.6), inset 0 0 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 50px rgba(192,57,43,0.9), inset 0 0 20px rgba(0,0,0,0.4); }
}

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  background: var(--gold-bright);
  width: 24px;
  border-radius: 4px;
}

/* ===== RADIO PLAYER BAR ===== */
.player-bar {
  background: linear-gradient(90deg, #0a0400 0%, #1a0c02 50%, #0a0400 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.8rem 2rem;
}

.player-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.player-play-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.player-play-btn:hover, .player-play-btn.playing {
  background: var(--gold);
  color: #1a0600;
}
.player-play-btn .play-tri {
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid currentColor;
  margin-left: 3px;
}
.player-play-btn.playing .play-tri { display: none; }
.player-pause-icon { display: none; font-size: 1.1rem; font-weight: bold; letter-spacing: 2px; }
.player-play-btn.playing .player-pause-icon { display: block; }

.player-info {
  flex: 0 0 auto;
}
.player-info .player-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}
.player-info .player-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.player-now-playing {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.player-song-info {
  font-size: 0.85rem;
  color: var(--text-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

/* Equalizer bars */
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
}
.eq-bar {
  width: 4px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  animation: eqBounce 0.5s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.eq-bar:nth-child(1) { animation-delay: 0s; height: 40%; }
.eq-bar:nth-child(2) { animation-delay: 0.1s; height: 80%; }
.eq-bar:nth-child(3) { animation-delay: 0.05s; height: 60%; }
.eq-bar:nth-child(4) { animation-delay: 0.15s; height: 100%; }
.eq-bar:nth-child(5) { animation-delay: 0.08s; height: 70%; }
.eq-bar:nth-child(6) { animation-delay: 0.2s; height: 50%; }
.eq-bar:nth-child(7) { animation-delay: 0.03s; height: 85%; }
.eq-bar:nth-child(8) { animation-delay: 0.12s; height: 45%; }
.eq-bar:nth-child(9) { animation-delay: 0.18s; height: 75%; }
.eq-bar:nth-child(10) { animation-delay: 0.07s; height: 55%; }
.eq-bar:nth-child(11) { animation-delay: 0.14s; height: 90%; }
.eq-bar:nth-child(12) { animation-delay: 0.06s; height: 35%; }
.eq-bars.paused .eq-bar { animation-play-state: paused; }

@keyframes eqBounce {
  from { transform: scaleY(0.3); }
  to { transform: scaleY(1); }
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.player-volume svg { color: var(--text-muted); font-size: 1rem; }
.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 120px; height: 4px;
  background: linear-gradient(to right, var(--gold) 70%, rgba(255,255,255,0.2) 70%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 6px rgba(212,146,10,0.6);
  cursor: pointer;
}

.btn-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-live:hover {
  background: var(--gold);
  color: #1a0600;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ===== BLOG / NOTICIAS ===== */
.blog-section {
  background: var(--blog-bg);
  padding: 4rem 2rem;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1a0600;
  letter-spacing: 0.05em;
}

.btn-outline-dark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #1a0600;
  color: #1a0600;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-outline-dark:hover {
  background: #1a0600;
  color: var(--gold-bright);
}

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

.blog-card {
  background: var(--blog-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: linear-gradient(135deg, #2a1200, #4a2a00);
}

.blog-card-img-placeholder {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #2a1200 0%, #5a3a10 50%, #2a1200 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.5rem;
}

.blog-card-body {
  padding: 1.2rem;
}

.blog-date-badge {
  display: inline-block;
  background: var(--red-tag);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.blog-category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a0600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: #5a4030;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 0.7rem; color: var(--gold); }

/* ===== VIDEOS SECTION ===== */
.videos-section {
  background: var(--bg-dark);
  padding: 4rem 2rem;
}

.videos-section .section-title { color: var(--text-white); }
.videos-section .btn-outline-dark {
  border-color: var(--gold);
  color: var(--gold);
}
.videos-section .btn-outline-dark:hover {
  background: var(--gold);
  color: #1a0600;
}

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

.video-card {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: all 0.3s;
}
.video-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.video-thumb {
  position: relative;
  padding-top: 56.25%;
  background: #1a0800;
  cursor: pointer;
}
.video-thumb iframe, .video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  object-fit: cover;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.video-card:hover .video-play-overlay { background: rgba(0,0,0,0.1); }
.video-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,146,10,0.9);
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn::after {
  content: '';
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #1a0600;
  margin-left: 4px;
}

.video-info {
  padding: 1rem;
}
.video-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--text-cream);
  margin-bottom: 0.4rem;
}
.video-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0d0600 0%, #050200 100%);
  border-top: 1px solid var(--border-gold);
  padding: 3rem 2rem 1rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-gold);
}

.footer-brand img { height: 80px; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-nav-title,
.footer-social-title,
.footer-contact-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 0.6rem; }
.footer-nav ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--gold-bright); }

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--gold-bright); }
.footer-social-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact-item svg { color: var(--gold); font-size: 0.9rem; }

.btn-gold-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #1a0600;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: #5a3a20;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .blog-grid,
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr 1fr; }
  .hero-right-section { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bg-nav);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-gold);
    gap: 1rem;
  }
  .nav-hamburger { display: flex; }
  .nav-social { display: none; }

  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 2rem 1rem; }
  .hero-logo-section { display: none; }
  .hero-subtext { margin-left: auto; margin-right: auto; }

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

  .player-inner { flex-wrap: wrap; gap: 0.8rem; }
  .volume-slider { width: 80px; }
  .player-song-info { display: none; }
}

/* ===== UTILITIES ===== */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.text-gold { color: var(--gold-bright); }
.font-heading { font-family: 'Oswald', sans-serif; }

/* Microphone SVG placeholder */
.mic-svg-container { position: relative; text-align: center; }

/* Loading state */
.loading-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
