/* ==========================================================================
   INKBRIDGE RÁDIO WEB - STYLE SYSTEM & DESIGN TOKENS
   Theme inspired by InkBridge: Dark Luxury, Gold Accents, Glassmorphism
   ========================================================================== */

:root {
  /* InkBridge Palette */
  --bg-main: #0B0807;
  --bg-surface: #17110E;
  --bg-surface-elevated: #221A16;
  --bg-glass: rgba(23, 17, 14, 0.82);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 165, 106, 0.35);
  
  --gold-primary: #C9A56A;
  --gold-light: #F0D49E;
  --gold-dark: #9A7B44;
  --gold-glow: rgba(201, 165, 106, 0.3);
  
  --text-main: #FFFFFF;
  --text-muted: #C5BFB9;
  --text-dim: #847D78;
  
  --red-live: #EF4444;
  --green-online: #10B981;
  --yt-red: #FF0000;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 10px 30px -5px rgba(201, 165, 106, 0.25);
  --shadow-dark: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 0%, #1a120e 0%, var(--bg-main) 70%);
  background-attachment: fixed;
  overflow-x: hidden;
  padding-top: 74px; /* Offset for fixed header */
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.gold-text {
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.red-text {
  color: var(--yt-red);
}

/* Glassmorphism Utility */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--border-gold);
}

.glass-pill {
  background: rgba(34, 26, 22, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   100% FIXED TOP PLAYER HEADER ("DE FORA A FORA")
   ========================================================================== */

.fixed-player-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  z-index: 1000;
  background: rgba(11, 8, 7, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
}

.header-full-container {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Official Logo Brand */
.brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ink-official-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201, 165, 106, 0.5));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-status-tag {
  font-size: 9px;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  margin-top: 3px;
}

.pulse-icon {
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.4; }
  100% { opacity: 1; text-shadow: 0 0 8px var(--gold-primary); }
}

/* Header Live Track & Show Meta Widget */
.header-now-playing {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 18px 6px 8px;
  max-width: 620px;
  flex: 1;
}

.header-album-cover {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.header-album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-equalizer-bars {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 8px 6px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.playing .header-equalizer-bars {
  opacity: 1;
}

.header-equalizer-bars span {
  width: 3px;
  background: var(--gold-primary);
  border-radius: 2px;
  height: 30%;
  animation: barEq 1s ease-in-out infinite alternate;
}

.header-equalizer-bars span:nth-child(2) { animation-delay: 0.2s; }
.header-equalizer-bars span:nth-child(3) { animation-delay: 0.4s; }
.header-equalizer-bars span:nth-child(4) { animation-delay: 0.1s; }

@keyframes barEq {
  0% { height: 20%; }
  100% { height: 95%; }
}

.header-track-meta {
  overflow: hidden;
  min-width: 140px;
}

.header-song-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-song-artist {
  font-size: 12px;
  color: var(--gold-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.header-track-timer {
  font-size: 11px;
  font-weight: 700;
  color: #a09791;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.header-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.header-show-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.host-avatar-box {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 10px rgba(201, 165, 106, 0.4);
}

.host-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.host-live-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--gold-primary);
  color: #0b0807;
  font-size: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0b0807;
}

.host-info-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header-host-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.1;
}

.host-label {
  font-size: 8px;
  font-weight: 900;
  background: rgba(201, 165, 106, 0.2);
  color: var(--gold-primary);
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid rgba(201, 165, 106, 0.4);
  letter-spacing: 0.8px;
}

.header-program-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Header Audio Controls */
.header-player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-control-btn {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.header-control-btn.primary {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  font-size: 16px;
  box-shadow: 0 4px 14px var(--gold-glow);
}

.header-control-btn.primary:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(201, 165, 106, 0.5);
}

.header-control-btn.secondary {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 14px;
}

.header-control-btn.secondary:hover {
  color: var(--gold-primary);
  border-color: var(--border-gold);
}

.header-volume-slider {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.header-volume-slider input[type="range"] {
  width: 70px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.volume-val-txt {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 28px;
}

.btn-config-stream {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.btn-config-stream:hover {
  background: var(--gold-primary);
  color: #000;
}

.live-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
}

.live-pill.online {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.live-pill.offline {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.live-pill.online .live-dot {
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: blink 1.2s infinite;
}

.live-pill.offline .live-dot {
  background-color: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: none;
  opacity: 0.7;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ==========================================================================
   SUB NAVIGATION BAR
   ========================================================================== */

.sub-nav-bar {
  background: #120C09;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

.sub-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.sub-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.sub-link:hover, .sub-link.active {
  color: var(--gold-primary);
}

.gold-sub-link {
  color: var(--gold-primary);
  background: rgba(201, 165, 106, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.listeners-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.listeners-pill i {
  color: var(--gold-primary);
}

/* ==========================================================================
   FULL BANNER SLIDER SECTION (1080p FULL WIDTH 4 SLIDES)
   ========================================================================== */

.full-banner-slider-section {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}

.slider-viewport {
  width: 100%;
  height: 100%;
  position: relative;
}

.slides-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  width: 25%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.slide-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(11,8,7,0.95) 0%, rgba(11,8,7,0.6) 50%, rgba(11,8,7,0.2) 100%);
  padding: 40px 0;
}

.slide-badge-gold {
  background: rgba(201, 165, 106, 0.18);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.slide-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  max-width: 750px;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.slide-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.slide-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-fast);
}

.btn-hero-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.btn-hero-secondary:hover {
  border-color: var(--border-gold);
  color: var(--gold-primary);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(23, 17, 14, 0.7);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-arrow:hover {
  background: var(--gold-primary);
  color: #000;
}

.slider-dots-container {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots-container .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dots-container .dot.active {
  width: 32px;
  border-radius: 6px;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */

.section-padding {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.section-header.center-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 10px;
}

/* ==========================================================================
   TOP 10 CHARTS
   ========================================================================== */

.chart-period {
  display: flex;
  gap: 8px;
}

.period-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.period-pill.active, .period-pill:hover {
  background: rgba(201, 165, 106, 0.15);
  border-color: var(--border-gold);
  color: var(--gold-primary);
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.chart-item-card {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.chart-item-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 28px -6px rgba(201, 165, 106, 0.25);
}

.chart-rank {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-primary);
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.chart-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.chart-info {
  flex: 1;
  overflow: hidden;
}

.chart-song-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-main);
}

.chart-artist-name {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chart-genre-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(201, 165, 106, 0.12);
  border: 1px solid rgba(201, 165, 106, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

.chart-plays {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}

.chart-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-play-chart {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #000;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 12px rgba(201, 165, 106, 0.3);
}

.btn-play-chart:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(201, 165, 106, 0.5);
}

.btn-like-song {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}

.btn-like-song:hover, .btn-like-song.liked {
  color: #EF4444;
}

/* ==========================================================================
   YOUTUBE FEATURED VIDEO SECTION
   ========================================================================== */

.youtube-section {
  background: radial-gradient(circle at 50% 50%, rgba(201,165,106,0.05) 0%, transparent 80%);
}

.youtube-player-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  overflow: hidden;
}

.main-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.main-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.playlist-sidebar {
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.playlist-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.playlist-items {
  flex: 1;
  overflow-y: auto;
  max-height: 420px;
}

.playlist-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.playlist-item:hover, .playlist-item.active {
  background: rgba(201, 165, 106, 0.1);
}

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

.playlist-thumb {
  width: 90px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.playlist-item-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.playlist-item-author {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* In-Content Middle Ad Banner */
.ad-middle-banner {
  margin-top: 40px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, rgba(201,165,106,0.12) 0%, rgba(23,17,14,0.95) 100%);
  border: 1px solid var(--border-gold);
}

.ad-badge {
  background: rgba(201, 165, 106, 0.15);
  color: var(--gold-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  white-space: nowrap;
}

.ad-middle-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
}

.ad-text-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.ad-text-block p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.btn-ad-action {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

/* ==========================================================================
   SCHEDULE GRID & INTERACTIVE SECTIONS
   ========================================================================== */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.schedule-card {
  padding: 20px;
}

.schedule-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(201, 165, 106, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 10px;
}

.schedule-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.schedule-dj {
  font-size: 13px;
  color: var(--text-muted);
}

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

.request-card, .history-card {
  padding: 28px;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.gold-icon {
  font-size: 24px;
  color: var(--gold-primary);
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.08);
}

.btn-submit-request {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  font-weight: 800;
  padding: 14px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 14px;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.toast-message {
  margin-top: 14px;
  padding: 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #10B981;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}

.toast-message.hidden { display: none; }

.history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-primary);
}

.history-track {
  font-weight: 700;
  font-size: 14px;
}

.history-artist {
  font-size: 12px;
  color: var(--text-muted);
}

.history-time {
  font-size: 11px;
  color: var(--text-dim);
}

/* ==========================================================================
   ADVERTISING PARTNERS SECTION
   ========================================================================== */

.ad-partner-card {
  padding: 48px;
  text-align: center;
}

.ad-partner-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  margin: 12px 0;
}

.badge-gold {
  background: rgba(201, 165, 106, 0.15);
  color: var(--gold-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.ad-stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 36px 0;
}

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.ad-partner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-contact-ad {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-gold);
}

.btn-contact-wsp {
  background: #25D366;
  color: #fff;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.hidden { display: none; }

.modal-card {
  max-width: 500px;
  width: 100%;
  padding: 28px;
}

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

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.preset-urls {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.btn-cancel {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.btn-save-stream {
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

/* Footer */
.footer {
  background: #070504;
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ink-footer-logo {
  height: 28px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 450px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .header-now-playing { display: none; }
  .grid-two-columns { grid-template-columns: 1fr; }
  .youtube-player-wrapper { grid-template-columns: 1fr; }
  .slide-main-title { font-size: 36px; }
  .full-banner-slider-section { height: 420px; }
}

@media (max-width: 768px) {
  .fixed-player-header { height: auto; padding: 12px 0; }
  .header-full-container { flex-direction: column; gap: 12px; }
  body { padding-top: 130px; }
  .slide-main-title { font-size: 28px; }
  .full-banner-slider-section { height: 380px; }
  .ad-stats-grid { flex-direction: column; gap: 20px; }
}

/* ==========================================================================
   AD BLOCKS — BANNER FINO (ABAIXO TOP 10)
   ========================================================================== */

.ad-thin-fullbanner {
  margin-top: 32px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: linear-gradient(90deg, rgba(201,165,106,0.12) 0%, rgba(23,17,14,0.98) 100%);
}

.ad-thin-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  flex-wrap: wrap;
}

.ad-badge-gold-sm {
  background: rgba(201,165,106,0.2);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ad-thin-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
}

.ad-link-gold {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.ad-link-gold:hover {
  text-decoration: underline;
}

.ad-thin-side-slots {
  flex-shrink: 0;
}

.ad-slot-tag {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.15);
  color: var(--text-dim);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ==========================================================================
   AD IMAGE CARD BLOCKS — QUADROS COM IMAGEM
   ========================================================================== */

.ad-image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.ad-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(201,165,106,0.2);
}

.ad-image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter var(--transition-normal);
}

.ad-image-card:hover img {
  filter: brightness(0.95);
}

.ad-image-card-body {
  padding: 14px 18px 18px;
  background: linear-gradient(180deg, rgba(23,17,14,0.9) 0%, var(--bg-surface) 100%);
}

.ad-image-card-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  background: rgba(201,165,106,0.15);
  border: 1px solid var(--border-gold);
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}

.ad-image-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.ad-image-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.ad-image-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.ad-image-card-btn:hover {
  transform: scale(1.04);
}

.ad-image-card-overlay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Grid for multiple ad image cards */
.ad-image-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Full width image ad banner */
.ad-fullwidth-image-banner {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-gold);
  margin-top: 32px;
}

.ad-fullwidth-image-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
}

.ad-fullwidth-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
  background: linear-gradient(90deg, rgba(11,8,7,0.9) 0%, rgba(11,8,7,0.3) 100%);
}

.ad-fullwidth-text {
  flex: 1;
}

.ad-fullwidth-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.ad-fullwidth-text p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   LARGE SPONSOR BLOCK (ABAIXO DO STUDIO PARTNER)
   ========================================================================== */

.ad-large-sponsor-block {
  margin-top: 32px;
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.ad-large-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(201,165,106,0.08);
  border-bottom: 1px solid var(--border-gold);
}

.ad-dimensions-tag {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 600;
}

.ad-large-body {
  padding: 0;
}

.ad-large-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  flex-wrap: wrap;
}

.ad-icon-lg {
  width: 60px;
  height: 60px;
  background: rgba(201,165,106,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.ad-info-lg {
  flex: 1;
}

.ad-info-lg h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.ad-info-lg p {
  font-size: 13px;
  color: var(--text-muted);
}

.btn-ad-large {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ==========================================================================
   SCHEDULE PROGRAM CARDS WITH IMAGE BANNERS
   ========================================================================== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.schedule-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 10px 25px rgba(201, 165, 106, 0.2);
}

.schedule-card-img-wrap {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.schedule-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.schedule-card:hover .schedule-card-img-wrap img {
  transform: scale(1.08);
}

.schedule-time {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(11, 8, 7, 0.85);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.schedule-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.schedule-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.schedule-dj {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   SCHEDULE AD CARDS
   ========================================================================== */

.schedule-ad-card {
  background: linear-gradient(135deg, rgba(201,165,106,0.1) 0%, rgba(23,17,14,0.95) 100%) !important;
  border-color: var(--border-gold) !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.ad-badge-sm {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-primary);
  background: rgba(201,165,106,0.15);
  border: 1px solid var(--border-gold);
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
}

.schedule-ad-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
}

.schedule-ad-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.btn-schedule-ad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  background: rgba(201,165,106,0.1);
  transition: all var(--transition-fast);
  margin-top: 4px;
  width: fit-content;
}

.btn-schedule-ad:hover {
  background: var(--gold-primary);
  color: #000;
}

/* ==========================================================================
   FOOTER AD BLOCK (BANNER FULL WIDTH NO RODAPÉ)
   ========================================================================== */

.ad-footer-block {
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(90deg, rgba(11,8,7,0.98) 0%, rgba(26,18,14,0.98) 100%);
  padding: 20px 0;
}

.ad-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ad-footer-image-wrap {
  width: 180px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.ad-footer-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-footer-meta {
  flex: 1;
}

.ad-footer-meta h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 3px;
}

.ad-footer-meta p {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-ad-footer {
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   INKBRIDGE LIVE CHAT COMMUNITY SYSTEM
   ========================================================================== */

.chat-section {
  background: linear-gradient(180deg, rgba(15, 11, 9, 0.95) 0%, rgba(26, 18, 14, 0.98) 100%);
  border-top: 1px solid var(--border-gold);
}

.chat-online-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-main);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pulse-green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 2s infinite;
}

.chat-main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}

.chat-feed-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-feed-box {
  height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) rgba(0, 0, 0, 0.3);
}

.chat-feed-box::-webkit-scrollbar {
  width: 6px;
}

.chat-feed-box::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 3px;
}

/* Chat Message Bubbles */
.chat-msg-bubble {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.chat-msg-bubble:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 165, 106, 0.4);
}

.chat-msg-bubble.is-dj {
  background: linear-gradient(135deg, rgba(201, 165, 106, 0.12) 0%, rgba(20, 14, 11, 0.8) 100%);
  border-color: var(--border-gold);
}

.chat-msg-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.chat-msg-content {
  flex: 1;
}

.chat-msg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.chat-msg-user-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-msg-username {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
}

.badge-tag-dj {
  font-size: 9px;
  font-weight: 900;
  background: var(--gold-primary);
  color: #000;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.badge-tag-vip {
  font-size: 9px;
  font-weight: 900;
  background: rgba(201, 165, 106, 0.2);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 2px 6px;
  border-radius: 3px;
}

.chat-msg-time {
  font-size: 11px;
  color: var(--text-muted);
}

.chat-msg-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  word-break: break-word;
}

.chat-msg-reactions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.reaction-pill {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reaction-pill:hover {
  background: rgba(201, 165, 106, 0.2);
  border-color: var(--gold-primary);
}

/* Quick Emoji Reactions Bar */
.chat-quick-reactions {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.reactions-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.btn-reaction {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
}

.btn-reaction:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
  transform: scale(1.08);
}

/* Chat Input Form */
.chat-input-form {
  margin-top: 4px;
}

.chat-input-row {
  display: flex;
  gap: 10px;
}

.chat-input-name {
  width: 180px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-main);
  font-size: 13px;
  font-family: inherit;
}

.chat-input-name:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.chat-input-msg-wrap {
  flex: 1;
  display: flex;
  gap: 8px;
}

.chat-input-msg {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-main);
  font-size: 13px;
  font-family: inherit;
}

.chat-input-msg:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.btn-send-chat {
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-send-chat:hover {
  background: #e5bd7c;
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* Chat Sidebar */
.chat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-dj-card {
  padding: 16px;
  background: linear-gradient(135deg, rgba(201, 165, 106, 0.1) 0%, rgba(20, 14, 11, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
}

.dj-status-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.chat-dj-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.badge-dj-live {
  font-size: 9px;
  font-weight: 900;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
}

.chat-dj-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
}

.chat-dj-show {
  font-size: 11px;
  color: var(--text-muted);
}

.chat-dj-quote {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

.chat-active-users-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  flex: 1;
}

.users-box-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.active-users-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 250px;
  overflow-y: auto;
}

.active-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.user-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.user-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  margin-left: auto;
}

/* Responsive Media Query for Chat */
@media (max-width: 992px) {
  .chat-main-grid {
    grid-template-columns: 1fr;
  }

  .chat-input-row {
    flex-direction: column;
  }

  .chat-input-name {
    width: 100%;
  }

  .chat-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .chat-dj-card, .chat-active-users-box {
    flex: 1 1 280px;
  }
}

/* ==========================================================================
   INKBRIDGE SINGLE PAGE STORE SYSTEM & SHOPPING CART DRAWER
   ========================================================================== */

/* Utility Hidden */
.hidden {
  display: none !important;
}

/* Header Cart Button */
.btn-cart-header {
  position: relative;
  background: rgba(201, 165, 106, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition-fast);
}

.btn-cart-header:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 12px var(--gold-glow);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red-live);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #0b0807;
}

/* Store Section Styles */
.store-section {
  background: linear-gradient(180deg, rgba(11, 8, 7, 0.8) 0%, rgba(20, 14, 11, 0.95) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-color);
}

.store-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(34, 26, 22, 0.95) 0%, rgba(15, 11, 9, 0.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.store-hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

.store-hero-content {
  max-width: 600px;
  z-index: 2;
}

.store-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  margin: 12px 0 14px;
  letter-spacing: -0.5px;
}

.store-hero-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.store-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-item {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-hero-img-wrap {
  width: 240px;
  height: 240px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.store-hero-preview-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  animation: floatImg 4s ease-in-out infinite alternate;
}

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

/* Category Filters & Header */
.store-catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.category-pills-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 30px rgba(201, 165, 106, 0.25);
}

.product-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-primary);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  z-index: 3;
}

.product-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
}

.product-zoom-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11, 8, 7, 0.85);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  transition: all var(--transition-fast);
}

.product-img-wrap:hover .product-zoom-badge {
  background: var(--gold-primary);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.product-img-wrap img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

/* Full Screen Image Zoom Lightbox Overlay (Lupa Zoom HD) */
.image-zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-zoom-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.image-zoom-card {
  position: relative;
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-zoom-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.image-zoom-close:hover {
  color: var(--gold-primary);
}

.zoom-img-container {
  width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.zoom-img-container img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.zoom-img-container img:hover {
  transform: scale(1.25);
  cursor: zoom-in;
}

.zoom-img-caption {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-primary);
  margin-top: 14px;
  text-align: center;
}

.product-meta-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin: 4px 0 8px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold-primary);
}

.btn-buy-product {
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.btn-buy-product:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* Cart Drawer Overlays & Drawer Panel */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  background: #0f0b09;
  border-left: 1px solid var(--border-gold);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.85);
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.cart-drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.cart-item-thumb {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.cart-item-size {
  font-size: 11px;
  color: var(--text-muted);
}

.cart-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-primary);
  margin-top: 2px;
}

.btn-remove-cart-item {
  background: none;
  border: none;
  color: var(--red-live);
  font-size: 14px;
  cursor: pointer;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.4);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.cart-subtotal-val {
  color: var(--gold-primary);
  font-size: 20px;
}

.cart-shipping-notice {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-checkout-primary {
  width: 100%;
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Modals Z-Index 3000 */
.modal-overlay {
  z-index: 3000 !important;
}

/* Quick View Product Modal */
.product-modal-card {
  width: 100%;
  max-width: 780px;
  padding: 30px;
  position: relative;
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.product-modal-img-wrap {
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.product-modal-img-wrap img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.modal-category-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
}

.modal-product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-main);
  margin: 6px 0 10px;
}

.modal-product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.modal-product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.modal-options-group {
  margin-bottom: 18px;
}

.modal-options-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.size-buttons {
  display: flex;
  gap: 8px;
}

.size-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.size-btn:hover,
.size-btn.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  width: fit-content;
  border: 1px solid var(--border-color);
}

.qty-btn {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  width: 24px;
}

.qty-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  min-width: 20px;
}

.btn-add-to-cart-lg {
  width: 100%;
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  transition: all var(--transition-fast);
}

.btn-add-to-cart-lg:hover {
  box-shadow: 0 6px 20px var(--gold-glow);
  transform: translateY(-2px);
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  font-size: 22px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(201, 165, 106, 0.6);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

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

.floating-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red-live);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

/* Checkout Modal */
.checkout-modal-card {
  width: 100%;
  max-width: 520px;
  padding: 30px;
  position: relative;
}

.checkout-modal-header {
  margin-bottom: 20px;
}

.checkout-modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.checkout-modal-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-order-summary {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  margin: 6px 0;
}

.checkout-order-summary h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.checkout-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  border-top: 1px solid var(--border-color);
  padding-top: 8px;
  margin-top: 8px;
}

.checkout-total-line strong {
  color: var(--gold-primary);
  font-size: 18px;
}

.btn-submit-checkout {
  width: 100%;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-submit-checkout:hover {
  background: #1ebd59;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (MOBILE, TABLET, DESKTOP)
   ========================================================================== */

/* 1. Large Laptops / Tablets Landscape (Max-width: 1024px) */
@media (max-width: 1024px) {
  .fixed-player-header {
    height: auto;
    padding: 10px 0;
  }

  .header-full-container {
    padding: 0 16px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .header-now-playing {
    order: 3;
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    margin-top: 4px;
    justify-content: space-between;
  }

  .sub-nav-bar {
    margin-top: 130px;
  }

  .main-content-wrapper {
    margin-top: 0;
  }

  .full-banner-slider-section {
    height: 480px;
  }

  .slide-main-title {
    font-size: 34px;
  }

  .charts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .youtube-player-wrapper {
    flex-direction: column;
  }

  .main-video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .playlist-sidebar {
    width: 100%;
    max-height: 300px;
  }
}

/* 2. Tablets Portrait / Mobile Devices (Max-width: 768px) */
@media (max-width: 768px) {
  .brand-status-tag {
    display: none;
  }

  .brand-title {
    font-size: 16px;
  }

  .ink-official-logo {
    height: 30px;
  }

  .header-divider {
    display: none;
  }

  .header-now-playing {
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-md);
  }

  .header-album-cover {
    width: 38px;
    height: 38px;
  }

  .host-avatar-box {
    width: 32px;
    height: 32px;
  }

  .header-track-meta {
    max-width: 130px;
  }

  .header-song-title {
    font-size: 12px;
  }

  .header-song-artist {
    font-size: 11px;
  }

  .header-host-name {
    font-size: 11px;
  }

  .header-program-name {
    font-size: 10px;
  }

  .header-volume-slider input[type="range"] {
    width: 50px;
  }

  .sub-nav-container {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .sub-nav-container::-webkit-scrollbar {
    display: none;
  }

  .sub-nav-links {
    display: flex;
    white-space: nowrap;
    gap: 8px;
  }

  .sub-link {
    padding: 6px 12px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .listeners-pill {
    display: none;
  }

  .full-banner-slider-section {
    height: 420px;
  }

  .slide-badge-gold {
    font-size: 10px;
    padding: 4px 10px;
  }

  .slide-main-title {
    font-size: 26px;
  }

  .slide-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .slide-cta-group {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }

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

  .grid-two-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ad-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .ad-footer-image-wrap {
    width: 100%;
    height: 120px;
  }

  .btn-ad-footer {
    width: 100%;
    text-align: center;
  }
}

/* 3. Small Smartphones (Max-width: 480px) */
@media (max-width: 480px) {
  .header-volume-slider {
    display: none;
  }

  .header-player-controls {
    gap: 8px;
  }

  .live-pill {
    padding: 4px 8px;
    font-size: 10px;
  }

  .header-track-meta {
    max-width: 100px;
  }

  .host-info-text {
    max-width: 110px;
  }

  .section-title {
    font-size: 20px;
  }

  .chart-item-card {
    padding: 10px;
  }

  .chart-thumb {
    width: 44px;
    height: 44px;
  }

  .chart-song-name {
    font-size: 13px;
  }
}

