/* =====================================================
   RADYOSEVER THEME - main.css
   Dark Mode | Neon | Glassmorphism | Responsive
===================================================== */

/* ---- CSS Variables ---- */
/* ============================================================
   TEMA DEĞİŞKENLERİ — Dark (varsayılan)
============================================================ */
:root,
[data-theme="dark"] {
  --rs-bg:          #0a0a0f;
  --rs-bg-2:        #0f0f1a;
  --rs-bg-3:        #141428;
  --rs-surface:     rgba(255,255,255,0.05);
  --rs-surface-2:   rgba(255,255,255,0.08);
  --rs-border:      rgba(255,255,255,0.08);
  --rs-border-2:    rgba(255,255,255,0.12);

  --rs-text:        #e2e8f0;
  --rs-text-2:      #94a3b8;
  --rs-text-3:      #64748b;

  --rs-card-bg:     rgba(255,255,255,0.04);
  --rs-player-bg:   rgba(10,10,15,0.97);
  --rs-input-bg:    rgba(255,255,255,0.06);
  --rs-header-bg:   rgba(10,10,15,0.9);
  --rs-footer-bg:   #07070e;
}

/* Light Mode */
[data-theme="light"] {
  --rs-bg:          #f0f4f8;
  --rs-bg-2:        #ffffff;
  --rs-bg-3:        #e8edf3;
  --rs-surface:     rgba(0,0,0,0.04);
  --rs-surface-2:   rgba(0,0,0,0.07);
  --rs-border:      rgba(0,0,0,0.10);
  --rs-border-2:    rgba(0,0,0,0.15);

  --rs-text:        #1a202c;
  --rs-text-2:      #4a5568;
  --rs-text-3:      #718096;

  --rs-card-bg:     #ffffff;
  --rs-player-bg:   rgba(255,255,255,0.97);
  --rs-input-bg:    rgba(0,0,0,0.05);
  --rs-header-bg:   rgba(255,255,255,0.95);
  --rs-footer-bg:   #1a202c;
}

/* Sabit (tema bağımsız) değişkenler */
:root {
  --rs-primary:     #7c3aed;
  --rs-primary-2:   #5b21b6;
  --rs-accent:      #06b6d4;
  --rs-accent-2:    #0e7490;
  --rs-pink:        #ec4899;
  --rs-green:       #10b981;

  --rs-neon-blue:   #00d4ff;
  --rs-neon-purple: #bf00ff;
  --rs-neon-pink:   #ff0077;

  --rs-radius:      12px;
  --rs-radius-lg:   20px;
  --rs-radius-sm:   8px;

  --rs-shadow:      0 4px 24px rgba(0,0,0,0.4);
  --rs-shadow-lg:   0 8px 40px rgba(0,0,0,0.6);
  --rs-glow:        0 0 20px rgba(124,58,237,0.3);
  --rs-glow-cyan:   0 0 20px rgba(6,182,212,0.3);

  --rs-sidebar-w:          260px;
  --rs-sidebar-collapsed:  68px;
  --rs-header-h:    64px;
  --rs-player-h:    72px;
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--rs-bg);
  color: var(--rs-text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rs-accent); }

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

button { cursor: pointer; border: none; background: none; font-family: inherit; }

ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--rs-bg-2); }
::-webkit-scrollbar-thumb { background: var(--rs-primary); border-radius: 3px; }

/* =====================================================
   LAYOUT
===================================================== */
.rs-main-wrapper {
  margin-left: var(--rs-sidebar-collapsed);
  min-height: 100vh;
  padding-bottom: calc(var(--rs-player-h) + 20px);
  transition: margin-left 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* Sidebar açıkken (hover veya pin) içerik sağa kayar */
body.rs-sidebar-expanded .rs-main-wrapper {
  margin-left: var(--rs-sidebar-w);
}

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

.rs-container-narrow {
  max-width: 860px;
}

/* =====================================================
   SIDEBAR — Hover-to-expand + Pin + Theme toggle
===================================================== */
.rs-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--rs-sidebar-collapsed);
  background: var(--rs-bg-2);
  border-right: 1px solid var(--rs-border);
  z-index: 200;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Hover veya pin ile genişle (body class üzerinden) */
body.rs-sidebar-expanded .rs-sidebar {
  width: var(--rs-sidebar-w);
  box-shadow: 4px 0 30px rgba(0,0,0,0.4);
}

.rs-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  width: var(--rs-sidebar-w); /* İçerik genişliği sabit, sidebar clip eder */
}

.rs-sidebar-logo {
  padding: 16px;
  min-height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--rs-border);
  overflow: hidden;
  white-space: nowrap;
}

.rs-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--rs-text);
  text-decoration: none;
}

.rs-logo-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }

.rs-logo-text {
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
}

body.rs-sidebar-expanded .rs-logo-text { opacity: 1; }

/* Custom Logo in Sidebar */
.rs-sidebar .custom-logo { height: 34px; width: auto; }
.rs-sidebar .custom-logo-link { display: flex; align-items: center; }

/* Nav */
.rs-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 0;
}

.rs-nav-list { list-style: none; padding: 0; margin: 0; }

.rs-nav-item { position: relative; }

.rs-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px;
  color: var(--rs-text-2);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  position: relative;
  text-decoration: none;
}

.rs-nav-link:hover,
.rs-nav-item.active > .rs-nav-link {
  color: var(--rs-text);
  background: var(--rs-surface);
}

.rs-nav-item.active > .rs-nav-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--rs-primary);
  border-radius: 0 3px 3px 0;
}

.rs-nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-nav-icon svg { width: 18px; height: 18px; }

.rs-nav-label {
  opacity: 0;
  transition: opacity 0.2s ease;
  overflow: hidden;
  flex: 1;
}

body.rs-sidebar-expanded .rs-nav-label { opacity: 1; }

/* Subnav */
.rs-subnav {
  display: none;
  padding-left: 52px;
  background: rgba(0,0,0,0.15);
  list-style: none;
}

body.rs-sidebar-expanded .rs-nav-has-sub:hover .rs-subnav,
body.rs-sidebar-expanded .rs-nav-has-sub.open .rs-subnav {
  display: block;
}

.rs-subnav li a {
  display: block;
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--rs-text-3);
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.rs-subnav li a:hover { color: var(--rs-accent); }

/* ---- Sidebar Alt Alan ---- */
.rs-sidebar-bottom {
  padding: 8px;
  border-top: 1px solid var(--rs-border);
  flex-shrink: 0;
}

/* Tema Toggle Butonu */
.rs-theme-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: var(--rs-surface);
  border-radius: var(--rs-radius-sm);
  color: var(--rs-text-2);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  text-align: left;
}

.rs-theme-toggle:hover {
  background: var(--rs-surface-2);
  color: var(--rs-text);
}

.rs-theme-icon { font-size: 16px; flex-shrink: 0; line-height: 1; }

.rs-theme-text {
  opacity: 0;
  transition: opacity 0.2s ease;
  overflow: hidden;
}

body.rs-sidebar-expanded .rs-theme-text { opacity: 1; }

/* Pin Toggle Butonu (3 çizgi) */
.rs-sidebar-toggle {
  margin: 8px;
  padding: 10px;
  background: var(--rs-surface);
  border-radius: var(--rs-radius-sm);
  color: var(--rs-text-2);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}

.rs-sidebar-toggle svg { width: 18px; height: 18px; }
.rs-sidebar-toggle:hover { background: var(--rs-surface-2); color: var(--rs-text); }

/* Pin aktifken vurgulu */
.rs-sidebar-toggle.pinned {
  color: var(--rs-primary);
  background: rgba(124,58,237,0.12);
}

/* Mobile Overlay */
.rs-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 190;
  backdrop-filter: blur(4px);
}

.rs-sidebar-overlay.active { display: block; }

/* =====================================================
   HEADER
===================================================== */
.rs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--rs-header-bg, rgba(10,10,15,0.85));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rs-border);
  height: var(--rs-header-h);
}

.rs-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}

.rs-mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}

.rs-mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rs-text);
  border-radius: 2px;
  transition: var(--transition);
}

.rs-header-logo {
  display: none;
  font-weight: 700;
  font-size: 16px;
}

.rs-header-logo img { height: 36px; width: auto; }
.rs-header-logo-text { display: flex; align-items: center; gap: 6px; }

.rs-header-search {
  flex: 1;
  max-width: 480px;
}

.rs-header-search form {
  display: flex;
  align-items: center;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.rs-header-search form:focus-within {
  border-color: var(--rs-primary);
  box-shadow: var(--rs-glow);
}

.rs-header-search input {
  flex: 1;
  background: none;
  border: none;
  color: var(--rs-text);
  font-size: 13.5px;
  padding: 10px 16px;
  outline: none;
}

.rs-header-search input::placeholder { color: var(--rs-text-3); }

.rs-header-search button {
  padding: 10px 16px;
  color: var(--rs-text-3);
  transition: color 0.2s;
  flex-shrink: 0;
}

.rs-header-search button svg { width: 16px; height: 16px; display: block; }
.rs-header-search button:hover { color: var(--rs-accent); }

.rs-header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* =====================================================
   BUTTONS
===================================================== */
.rs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.rs-btn-primary {
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  color: #fff;
}

.rs-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.5);
  color: #fff;
}

.rs-btn-ghost {
  background: var(--rs-surface);
  border: 1px solid var(--rs-border-2);
  color: var(--rs-text);
}

.rs-btn-ghost:hover {
  background: var(--rs-surface-2);
  border-color: var(--rs-primary);
  color: var(--rs-text);
}

.rs-btn-lg { padding: 14px 28px; font-size: 15px; }

.rs-btn-xs { padding: 5px 12px; font-size: 12px; }

.rs-btn-icon {
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  justify-content: center;
}

.rs-btn-disabled {
  background: var(--rs-surface);
  color: var(--rs-text-3);
  cursor: not-allowed;
  opacity: 0.6;
}

.rs-btn-live {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  animation: rs-pulse-btn 2s infinite;
}

.rs-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: rs-blink 1.2s infinite;
}

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

@keyframes rs-pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

/* =====================================================
   GLASS CARD
===================================================== */
.glass-card {
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--rs-border-2);
  box-shadow: var(--rs-shadow);
}

/* =====================================================
   BADGE
===================================================== */
.rs-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.rs-badge:hover { background: rgba(124,58,237,0.25); color: #a78bfa; }

.rs-badge-sm { font-size: 10px; padding: 2px 8px; }

.rs-badge-news {
  background: rgba(6,182,212,0.15);
  border-color: rgba(6,182,212,0.3);
  color: #67e8f9;
}

.rs-badge-news:hover { background: rgba(6,182,212,0.25); color: #67e8f9; }

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

.rs-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(6,182,212,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 100%, rgba(236,72,153,0.1) 0%, transparent 50%),
              var(--rs-bg);
}

/* Radio Waves Animation */
.rs-hero-waves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.rs-wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.15);
  animation: rs-wave-expand 4s ease-out infinite;
}

.rs-wave-1 { width: 300px; height: 300px; animation-delay: 0s; }
.rs-wave-2 { width: 500px; height: 500px; animation-delay: 1.3s; }
.rs-wave-3 { width: 700px; height: 700px; animation-delay: 2.6s; }

@keyframes rs-wave-expand {
  0%   { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Particles */
.rs-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rs-particle {
  position: absolute;
  border-radius: 50%;
  animation: rs-float linear infinite;
}

@keyframes rs-float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.rs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.rs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fca5a5;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.rs-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--rs-text);
}

.rs-gradient-text {
  background: linear-gradient(135deg, var(--rs-neon-blue), var(--rs-neon-purple), var(--rs-neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rs-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--rs-text-2);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.rs-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.rs-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.rs-stat { text-align: center; }
.rs-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rs-neon-blue), var(--rs-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rs-stat-label { font-size: 12px; color: var(--rs-text-3); margin-top: 2px; }
.rs-stat-divider { width: 1px; height: 40px; background: var(--rs-border); }

/* =====================================================
   SECTIONS
===================================================== */
.rs-section {
  padding: 64px 0;
}

.rs-section-alt {
  background: linear-gradient(180deg, var(--rs-bg-2), var(--rs-bg-3), var(--rs-bg-2));
}

.rs-section-news {
  background: var(--rs-bg-2);
}

.rs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.rs-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-section-icon { font-size: 1.4rem; }

.rs-section-title-sm {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rs-see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--rs-accent);
  padding: 6px 14px;
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 100px;
  transition: var(--transition);
}

.rs-see-all:hover {
  background: rgba(6,182,212,0.1);
  color: var(--rs-accent);
}

/* =====================================================
   RADIO CARDS
===================================================== */
.rs-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

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

.rs-radio-grid-featured {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.rs-radio-card {
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.rs-radio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 12px 40px rgba(124,58,237,0.2);
}

.rs-radio-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rs-radio-card-logo {
  position: relative;
  aspect-ratio: 1;
  background: var(--rs-bg-3);
  overflow: hidden;
}

.rs-radio-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rs-radio-card:hover .rs-radio-card-logo img {
  transform: scale(1.05);
}

.rs-radio-card-live-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(239,68,68,0.9);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 100px;
}

.rs-radio-card-info {
  padding: 12px 14px 8px;
  flex: 1;
}

.rs-radio-card-title {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.rs-radio-card-title a { color: var(--rs-text); }
.rs-radio-card-title a:hover { color: var(--rs-accent); }

.rs-radio-card-city {
  font-size: 11.5px;
  color: var(--rs-text-3);
  margin-bottom: 6px;
}

.rs-radio-card-cats { margin-bottom: 4px; }

.rs-radio-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 12px;
  border-top: 1px solid var(--rs-border);
  gap: 8px;
}

.rs-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
}

.rs-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(124,58,237,0.5);
}

.rs-play-btn.playing {
  background: linear-gradient(135deg, var(--rs-pink), var(--rs-primary));
  animation: rs-pulse-btn 1.5s infinite;
}

.rs-play-btn-disabled {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rs-surface-2);
  color: var(--rs-text-3);
}

.rs-listen-count {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--rs-text-3);
}

/* Mini radio item (sidebar) */
.rs-mini-radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rs-border);
}

.rs-mini-radio-item:last-child { border-bottom: none; }

.rs-mini-radio-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--rs-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.rs-mini-radio-info { flex: 1; overflow: hidden; }

.rs-mini-radio-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--rs-text);
}

.rs-mini-radio-title:hover { color: var(--rs-accent); }

.rs-mini-radio-city { font-size: 11px; color: var(--rs-text-3); }

.rs-mini-play-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rs-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.rs-mini-play-btn:hover { transform: scale(1.1); background: var(--rs-accent); }

/* =====================================================
   NEWS CARDS
===================================================== */
.rs-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.rs-news-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.rs-news-card {
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.rs-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,182,212,0.3);
  box-shadow: 0 8px 32px rgba(6,182,212,0.1);
}

.rs-news-card-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--rs-bg-3);
}

.rs-news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rs-news-card:hover .rs-news-card-thumb img {
  transform: scale(1.04);
}

.rs-news-card-cat-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(6,182,212,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rs-news-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rs-news-card-cats { margin-bottom: 8px; }

.rs-news-card-title {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
}

.rs-news-card-title a { color: var(--rs-text); }
.rs-news-card-title a:hover { color: var(--rs-accent); }

.rs-news-card-excerpt {
  font-size: 12.5px;
  color: var(--rs-text-2);
  line-height: 1.5;
  margin-bottom: 12px;
}

.rs-news-card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--rs-text-3);
  margin-top: auto;
}

/* Featured News Card */
.rs-news-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.rs-news-featured-card {
  overflow: hidden;
}

.rs-news-featured-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--rs-bg-3);
}

.rs-news-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rs-news-featured-card:hover .rs-news-featured-thumb img {
  transform: scale(1.04);
}

.rs-news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rs-news-featured-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 8px 0 6px;
}

.rs-news-featured-title a { color: #fff; }
.rs-news-featured-title a:hover { color: var(--rs-accent); }

.rs-news-featured-meta { font-size: 11.5px; color: rgba(255,255,255,0.7); }

/* =====================================================
   NEWS TABS
===================================================== */
.rs-news-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.rs-news-tab {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  color: var(--rs-text-2);
  transition: var(--transition);
  cursor: pointer;
}

.rs-news-tab:hover,
.rs-news-tab.active {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.4);
  color: #a78bfa;
}

/* =====================================================
   FILTER BAR
===================================================== */
.rs-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.rs-filter-tag {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  color: var(--rs-text-2);
  transition: var(--transition);
}

.rs-filter-tag:hover,
.rs-filter-tag.active {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.5);
  color: #a78bfa;
}

/* =====================================================
   ARCHIVE PAGE
===================================================== */
.rs-archive-page { padding: 48px 0 64px; }

.rs-archive-header { margin-bottom: 32px; }

.rs-archive-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.rs-archive-desc { color: var(--rs-text-2); font-size: 14px; }

/* =====================================================
   SINGLE RADIO PAGE
===================================================== */
.rs-single-radio-page { padding: 40px 0 64px; }

.rs-radio-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--rs-radius-lg);
  margin-bottom: 32px;
}

.rs-radio-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.3);
  transform: scale(1.1);
}

.rs-radio-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.rs-radio-hero-logo {
  flex-shrink: 0;
}

.rs-radio-hero-logo img {
  width: 140px;
  height: 140px;
  border-radius: var(--rs-radius);
  object-fit: cover;
  box-shadow: var(--rs-shadow-lg);
  border: 2px solid var(--rs-border-2);
}

.rs-radio-hero-info { flex: 1; }

.rs-radio-hero-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }

.rs-radio-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.rs-radio-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rs-stream-type-badge {
  display: inline-flex;
  padding: 2px 8px;
  background: rgba(124,58,237,0.3);
  border: 1px solid rgba(124,58,237,0.5);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #a78bfa;
  letter-spacing: 0.05em;
}

.rs-radio-hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.rs-radio-single-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

.rs-card {
  padding: 24px;
  margin-bottom: 20px;
}

.rs-card h2, .rs-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rs-border);
}

.rs-info-table { width: 100%; border-collapse: collapse; }
.rs-info-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--rs-border);
  font-size: 13.5px;
}
.rs-info-table td:first-child { color: var(--rs-text-3); font-weight: 600; width: 40%; }

/* =====================================================
   SINGLE NEWS PAGE
===================================================== */
.rs-single-news-page { padding: 40px 0 64px; }

.rs-article {}

.rs-article-header { margin-bottom: 28px; }

.rs-article-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }

.rs-article-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.rs-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--rs-text-3);
  flex-wrap: wrap;
}

.rs-article-meta svg { vertical-align: middle; }
.rs-article-date, .rs-article-source { display: flex; align-items: center; gap: 5px; }
.rs-article-source a { color: var(--rs-accent); }

.rs-article-thumb {
  border-radius: var(--rs-radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.rs-article-thumb img { width: 100%; }

.rs-article-body {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d5db;
}

.rs-entry-content h2 { font-size: 1.4rem; margin: 1.5em 0 0.5em; color: var(--rs-text); }
.rs-entry-content h3 { font-size: 1.2rem; margin: 1.3em 0 0.5em; color: var(--rs-text); }
.rs-entry-content p { margin-bottom: 1.2em; }
.rs-entry-content a { color: var(--rs-accent); text-decoration: underline; }
.rs-entry-content ul, .rs-entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.rs-entry-content li { margin-bottom: 0.4em; }
.rs-entry-content blockquote {
  border-left: 3px solid var(--rs-primary);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: var(--rs-surface);
  border-radius: 0 var(--rs-radius-sm) var(--rs-radius-sm) 0;
  font-style: italic;
  color: var(--rs-text-2);
}
.rs-entry-content img { border-radius: var(--rs-radius-sm); }
.rs-entry-content code {
  background: var(--rs-surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--rs-accent);
}

.rs-article-footer { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--rs-border); }

.rs-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border-2);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rs-accent);
  transition: var(--transition);
}

.rs-source-link:hover { background: rgba(6,182,212,0.1); color: var(--rs-accent); }

.rs-related-news { margin-top: 48px; }

/* =====================================================
   RADIO PLAYER
===================================================== */
.rs-player {
  position: fixed;
  bottom: 0;
  left: var(--rs-sidebar-collapsed);
  right: 0;
  z-index: 300;
  background: var(--rs-player-bg, rgba(10,10,15,0.97));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--rs-border-2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              left 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}

/* Sidebar açıkken player da sağa kayar */
body.rs-sidebar-expanded .rs-player {
  left: var(--rs-sidebar-w);
}

.rs-player.visible {
  transform: translateY(0);
}

.rs-player-inner {
  height: var(--rs-player-h);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.rs-player-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.rs-player-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.rs-player-logo {
  width: 46px;
  height: 46px;
  border-radius: var(--rs-radius-sm);
  object-fit: cover;
  border: 2px solid var(--rs-border-2);
}

.rs-player-equalizer {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  border-radius: var(--rs-radius-sm);
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 8px 6px 6px;
}

.rs-player-equalizer.active { display: flex; }

.rs-player-equalizer span {
  display: block;
  width: 4px;
  background: var(--rs-accent);
  border-radius: 2px;
  animation: rs-eq-bar 0.8s ease-in-out infinite alternate;
}

.rs-player-equalizer span:nth-child(1) { height: 60%; animation-delay: 0s; }
.rs-player-equalizer span:nth-child(2) { height: 90%; animation-delay: 0.2s; }
.rs-player-equalizer span:nth-child(3) { height: 40%; animation-delay: 0.1s; }
.rs-player-equalizer span:nth-child(4) { height: 70%; animation-delay: 0.3s; }

@keyframes rs-eq-bar {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}

.rs-player-text { overflow: hidden; }

.rs-player-name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--rs-text);
}

.rs-player-status {
  font-size: 11.5px;
  color: var(--rs-text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rs-player-status.playing { color: var(--rs-green); }
.rs-player-status.loading { color: var(--rs-accent); }
.rs-player-status.error   { color: #ef4444; }

.rs-player-controls { flex-shrink: 0; }

.rs-player-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.rs-player-play-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--rs-glow);
}

.rs-player-loading-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--rs-accent);
  animation: rs-spin 0.8s linear infinite;
  display: none;
}

.rs-player-loading-ring.active { display: block; }

@keyframes rs-spin { to { transform: rotate(360deg); } }

.rs-player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.rs-player-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rs-text-2);
  transition: var(--transition);
  flex-shrink: 0;
}

.rs-player-btn:hover { color: var(--rs-text); background: var(--rs-surface); }
.rs-player-btn.active { color: var(--rs-pink); }

.rs-volume-slider-wrap { width: 80px; }

.rs-volume-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--rs-surface-2);
  outline: none;
  cursor: pointer;
}

.rs-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rs-primary);
  cursor: pointer;
  transition: var(--transition);
}

.rs-volume-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }

.rs-player-extra { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }

.rs-player-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(239,68,68,0.1);
  border-top: 1px solid rgba(239,68,68,0.2);
  font-size: 12.5px;
  color: #fca5a5;
}

.rs-player-retry-btn {
  padding: 4px 12px;
  background: rgba(239,68,68,0.2);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 100px;
  font-size: 11.5px;
  color: #fca5a5;
  cursor: pointer;
  transition: var(--transition);
}

.rs-player-retry-btn:hover { background: rgba(239,68,68,0.3); }

/* =====================================================
   BREADCRUMB
===================================================== */
.breadcrumb { margin-bottom: 24px; }

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--rs-text-3);
}

.breadcrumb a { color: var(--rs-text-3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rs-accent); }
.breadcrumb-sep { color: var(--rs-border-2); }
.breadcrumb [aria-current="page"] { color: var(--rs-text-2); }

/* =====================================================
   PAGINATION
===================================================== */
.rs-pagination { margin-top: 48px; }

.rs-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rs-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--rs-radius-sm);
  font-size: 13px;
  font-weight: 600;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  color: var(--rs-text-2);
  transition: var(--transition);
}

.rs-pagination .page-numbers:hover,
.rs-pagination .page-numbers.current {
  background: var(--rs-primary);
  border-color: var(--rs-primary);
  color: #fff;
}

.rs-pagination .prev, .rs-pagination .next { width: auto; padding: 0 16px; }

/* =====================================================
   FOOTER
===================================================== */
.rs-footer {
  background: var(--rs-bg-2);
  border-top: 1px solid var(--rs-border);
  padding: 48px 0 24px;
}

.rs-footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

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

.rs-footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--rs-text);
  display: block;
  margin-bottom: 12px;
}

.rs-footer-tagline {
  font-size: 13px;
  color: var(--rs-text-3);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.rs-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rs-text-2);
  transition: var(--transition);
}

.rs-social-link svg { width: 16px; height: 16px; }

.rs-social-link:hover {
  background: var(--rs-primary);
  border-color: var(--rs-primary);
  color: #fff;
}

.rs-footer-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--rs-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.rs-footer-links { display: flex; flex-direction: column; gap: 8px; }

.rs-footer-links a {
  font-size: 13px;
  color: var(--rs-text-3);
  transition: color 0.2s;
}

.rs-footer-links a:hover { color: var(--rs-accent); }

.rs-footer-bottom {
  border-top: 1px solid var(--rs-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--rs-text-3);
}

/* =====================================================
   EMPTY STATE
===================================================== */
.rs-empty-state {
  text-align: center;
  padding: 80px 24px;
}

.rs-empty-icon { font-size: 4rem; margin-bottom: 20px; opacity: 0.4; }

.rs-empty-state h2 { font-size: 1.5rem; margin-bottom: 8px; }
.rs-empty-state p { color: var(--rs-text-2); margin-bottom: 24px; }

.rs-empty-msg { color: var(--rs-text-3); font-size: 13px; padding: 16px 0; }
.rs-empty-msg-sm { font-size: 12.5px; color: var(--rs-text-3); }

/* =====================================================
   404 PAGE
===================================================== */
.rs-404-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.rs-404-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.rs-404-waves { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.rs-404-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.rs-404-page h1 { font-size: 1.8rem; margin-bottom: 12px; }
.rs-404-page p { color: var(--rs-text-2); margin-bottom: 32px; }
.rs-404-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* =====================================================
   SEARCH PAGE
===================================================== */
.rs-search-form-full {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.rs-search-form-full input {
  flex: 1;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  color: var(--rs-text);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.rs-search-form-full input:focus { border-color: var(--rs-primary); }

.rs-search-results { display: flex; flex-direction: column; gap: 12px; }

.rs-search-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.rs-search-thumb { flex-shrink: 0; }
.rs-search-thumb img { width: 80px; height: 60px; object-fit: cover; border-radius: var(--rs-radius-sm); }
.rs-no-thumb { width: 80px; height: 60px; background: var(--rs-bg-3); border-radius: var(--rs-radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }

.rs-search-content h2 { font-size: 14.5px; font-weight: 600; margin: 6px 0 4px; }
.rs-search-content h2 a { color: var(--rs-text); }
.rs-search-content h2 a:hover { color: var(--rs-accent); }
.rs-search-excerpt { font-size: 12.5px; color: var(--rs-text-2); }

/* =====================================================
   PAGE CONTENT (generic)
===================================================== */
.rs-page-content {
  padding: 48px 0 64px;
}

.rs-page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.rs-content-block { margin-bottom: 24px; }

/* =====================================================
   SKELETON LOADING
===================================================== */
.rs-skeleton {
  background: linear-gradient(90deg, var(--rs-surface) 25%, var(--rs-surface-2) 50%, var(--rs-surface) 75%);
  background-size: 200% 100%;
  animation: rs-skeleton-wave 1.5s infinite;
  border-radius: var(--rs-radius-sm);
}

@keyframes rs-skeleton-wave {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =====================================================
   SHARE MODAL
===================================================== */
.rs-share-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rs-share-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}

.rs-share-modal-content {
  position: relative;
  z-index: 1;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border-2);
  border-radius: var(--rs-radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--rs-shadow-lg);
}

.rs-share-modal-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }

.rs-share-url-input {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.rs-share-url-input input {
  flex: 1;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius-sm);
  color: var(--rs-text-2);
  font-size: 12.5px;
  padding: 8px 12px;
  outline: none;
}

.rs-share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }

.rs-share-btn-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rs-text);
  transition: var(--transition);
  cursor: pointer;
}

.rs-share-btn-item:hover { background: var(--rs-surface-2); border-color: var(--rs-primary); }

.rs-share-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rs-text-3);
  background: var(--rs-surface);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.rs-share-modal-close:hover { color: var(--rs-text); background: var(--rs-surface-2); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1200px) {
  .rs-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rs-radio-single-grid { grid-template-columns: 1fr 280px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBİL RESPONSIVE — Tam Sıfırlama
   Breakpoint: 1024px (tablet), 768px (mobil), 480px, 360px
═══════════════════════════════════════════════════════════ */

/* ── 1024px: Tablet — Sidebar overlay moduna gir ──────── */
@media (max-width: 1024px) {

  /* CSS değişkeni: artık collapsed sidebar genişliği 0 */
  :root {
    --rs-sidebar-collapsed: 0px;
    --rs-mobile-nav-height: 60px;
    --rs-player-height:     72px;
  }

  /* Sidebar varsayılan: ekranın dışına çekilmiş */
  .rs-sidebar {
    position: fixed !important;
    top:    0 !important;
    left:   0 !important;
    bottom: 0 !important;
    height: 100dvh !important;
    width:  min(82vw, 320px) !important;
    transform: translateX(-110%) !important;
    z-index: 9999 !important;
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Sidebar açık: body'ye class eklenir */
  body.rs-mobile-menu-open .rs-sidebar {
    transform: translateX(0) !important;
  }

  /* Sidebar genişliği layout'u itmesin */
  .rs-main-wrapper {
    margin-left: 0 !important;
    width: 100% !important;
  }

  /* İçerik tam genişlik */
  .rs-content,
  #rs-page-content,
  .rs-page-content {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Player sidebar'a göre kaymasın */
  .rs-player {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  /* Hamburger görünsün */
  .rs-mobile-menu-btn { display: flex !important; }
  .rs-header-logo     { display: flex !important; }

  /* Mobil açıkken tüm nav etiketleri görünsün */
  body.rs-mobile-menu-open .rs-sidebar .rs-nav-label,
  body.rs-mobile-menu-open .rs-sidebar .rs-theme-text,
  body.rs-mobile-menu-open .rs-sidebar .rs-logo-text,
  body.rs-mobile-menu-open .rs-sidebar .rs-menu-text,
  body.rs-mobile-menu-open .rs-sidebar .rs-nav-text,
  body.rs-mobile-menu-open .rs-sidebar .menu-text,
  body.rs-mobile-menu-open .rs-sidebar .sidebar-label,
  body.rs-mobile-menu-open .rs-sidebar .rs-link-text,
  body.rs-mobile-menu-open .rs-sidebar .rs-sidebar-text {
    opacity:    1 !important;
    visibility: visible !important;
    width:      auto !important;
    display:    inline-flex !important;
    max-width:  200px !important;
  }

  /* Sidebar iç genişlik mobilse tam kullan */
  body.rs-mobile-menu-open .rs-sidebar-inner {
    width: 100% !important;
  }

  /* Pin toggle mobilde gizle */
  .rs-sidebar-toggle { display: none !important; }

  /* Grid düzeltmeleri */
  .rs-radio-single-grid      { grid-template-columns: 1fr; }
  .rs-radio-hero-content     { flex-direction: column; text-align: center; padding: 32px 20px; }
  .rs-radio-hero-info .rs-radio-hero-cats { justify-content: center; }
  .rs-radio-hero-meta        { justify-content: center; }
  .rs-radio-hero-actions     { justify-content: center; }
}

/* ── Overlay: menü açıkken arka plan kararsın ─────────── */
.rs-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 9998;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.rs-sidebar-overlay.active {
  display: block;
  animation: rs-overlay-in 0.2s ease;
}

@keyframes rs-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Body scroll lock menü açıkken */
body.rs-mobile-menu-open {
  overflow: hidden !important;
  position: relative;
}

/* ── 768px: Mobil ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* Viewport: 100dvh ile Safari/iPhone uyumlu */
  html { height: 100%; }
  body { min-height: 100dvh; overflow-x: hidden; }

  /* Yatay taşmayı önle */
  * { max-width: 100%; }
  img, video, iframe { max-width: 100%; height: auto; }

  /* Container */
  .rs-container { padding: 0 14px; }

  /* Header */
  .rs-header { left: 0 !important; right: 0 !important; width: 100% !important; }
  .rs-header-inner {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 14px !important;
    height: 56px !important;
  }
  /* Arama alanı mobilde gizle (hero'da ayrı var) */
  .rs-header-search { display: none !important; }
  /* Header actions daralt */
  .rs-header-actions { margin-left: auto; flex-shrink: 0; }
  .rs-btn-live { padding: 6px 12px !important; font-size: 12px !important; }

  /* Body alt padding: mobil nav + player + safe-area */
  body {
    padding-bottom: calc(
      var(--rs-mobile-nav-height, 60px)
      + var(--rs-player-height, 72px)
      + env(safe-area-inset-bottom, 0px)
    ) !important;
  }

  /* Player — tam genişlik, mobil nav'ın üstüne otur */
  .rs-player {
    left:   0 !important;
    right:  0 !important;
    bottom: calc(var(--rs-mobile-nav-height, 60px) + env(safe-area-inset-bottom, 0px)) !important;
    width:  100% !important;
    border-radius: 0 !important;
  }

  /* Player içi dar ekrana göre */
  .rs-player-inner  { padding: 0 12px; gap: 8px; }
  .rs-player-volume { display: none !important; }
  .rs-player-extra  {
    gap: 6px !important;
    /* Sleep ve favori göster, diğerlerini gizle */
  }
  .rs-player-extra .rs-sleep-timer-wrap,
  .rs-player-extra .rs-player-fav-btn,
  .rs-player-extra .rs-player-close-btn { display: flex !important; }
  .rs-player-extra .rs-player-share-btn,
  .rs-player-extra .rs-report-btn-player { display: none !important; }

  /* Mobil nav — tam altta */
  .rs-mobile-nav {
    display: flex !important;
    left:   0 !important;
    right:  0 !important;
    width:  100% !important;
    bottom: 0 !important;
    height: calc(var(--rs-mobile-nav-height, 60px) + env(safe-area-inset-bottom, 0px)) !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    z-index: 9490 !important;
  }

  /* İçerik grid'leri */
  .rs-radio-grid,
  .rs-radio-grid-lg { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

  .rs-news-grid      { grid-template-columns: 1fr; gap: 16px; }
  .rs-footer-grid    { grid-template-columns: 1fr 1fr; gap: 20px; }
  .rs-footer-brand   { grid-column: 1/-1; }
  .rs-section        { padding: 32px 0; }
  .rs-section-header { flex-wrap: wrap; gap: 8px; }

  /* Hero */
  .rs-hero { min-height: 70dvh; padding: 60px 0 40px; }

  /* Single radio */
  .rs-single-grid { grid-template-columns: 1fr; }
  .rs-radio-single-grid { grid-template-columns: 1fr; }
  .rs-radio-hero-content { flex-direction: column; text-align: center; padding: 24px 16px; }
  .rs-radio-hero-logo img { width: 90px; height: 90px; }
  .rs-radio-hero-title { font-size: 1.4rem; }
  .rs-radio-hero-meta { justify-content: center; }
  .rs-radio-hero-actions { justify-content: center; }

  /* Stats */
  .rs-hero-stats { gap: 12px; }
  .rs-stat-num   { font-size: 1.3rem; }

  /* Radyo haberler */
  .rs-news-featured-grid { grid-template-columns: 1fr; }

  /* Keşif paneli */
  .rs-discovery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Şu an dinlenenler */
  .rs-now-grid,
  .rs-now-listening-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Category hero */
  .category-hero { padding: 24px 16px !important; }
  .category-hero__content { flex-direction: column !important; align-items: center !important; text-align: center !important; }
  .category-hero__badges  { justify-content: center !important; }
  .category-stats         { justify-content: center !important; }

  /* Category chips — mobilde yatay scroll */
  .radio-category-chips {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 92%, transparent) !important;
    mask-image: linear-gradient(to right, transparent, black 5%, black 92%, transparent) !important;
  }
  .radio-category-chips::-webkit-scrollbar { display: none !important; }
  .radio-category-chip { flex: 0 0 auto !important; }

  /* Saat kartları */
  .rs-time-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── 480px: Küçük mobil ───────────────────────────────── */
@media (max-width: 480px) {
  .rs-container { padding: 0 12px; }

  .rs-radio-grid,
  .rs-radio-grid-lg { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }

  .rs-hero-actions { flex-direction: column; align-items: stretch; }
  .rs-btn-lg, .rs-btn-random-hero { width: 100%; justify-content: center; }

  .rs-footer-grid   { grid-template-columns: 1fr; }
  .rs-footer-bottom { flex-direction: column; text-align: center; }

  .rs-discovery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .rs-discovery-card { padding: 16px 12px; }
  .rs-discovery-icon { font-size: 26px; }

  .rs-now-grid,
  .rs-now-listening-grid { grid-template-columns: 1fr; }

  /* Single hero dikey */
  .rs-single-hero-inner { flex-direction: column; align-items: center; text-align: center; padding: 16px; }
  .rs-single-logo-wrap  { width: 80px; height: 80px; }
  .rs-single-badges,
  .rs-single-stat-row,
  .rs-single-actions    { justify-content: center; }

  /* Category chips min-width */
  .radio-category-chip .chip-title { max-width: 80px !important; }
}

/* ── 360px: En küçük ──────────────────────────────────── */
@media (max-width: 360px) {
  .rs-container { padding: 0 10px; }
  .rs-hero { padding: 48px 0 28px; }
  .rs-hero-title { font-size: 22px !important; }
  .rs-radio-grid,
  .rs-radio-grid-lg { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .rs-header-inner  { padding: 0 10px !important; }
  .rs-btn-live      { font-size: 11px !important; padding: 5px 9px !important; }
  .rs-discovery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .rs-mobile-nav-item span { font-size: 9px; }
}

/* =====================================================
   ANIMATIONS / TRANSITIONS
===================================================== */
.rs-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rs-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page load animation */
@keyframes rs-page-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rs-content {
  animation: rs-page-in 0.4s ease;
}

/* Toast notification */
.rs-toast {
  position: fixed;
  bottom: calc(var(--rs-player-h) + 16px);
  right: 20px;
  z-index: 400;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border-2);
  border-radius: var(--rs-radius);
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--rs-shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
}

.rs-toast.show { transform: translateX(0); }
.rs-toast.success { border-color: rgba(16,185,129,0.4); color: #6ee7b7; }
.rs-toast.error   { border-color: rgba(239,68,68,0.4); color: #fca5a5; }
.rs-toast.info    { border-color: rgba(6,182,212,0.4); color: #67e8f9; }

/* =====================================================
   CATEGORY SHOWCASE SECTION
===================================================== */
.rs-category-showcase {
    position: relative;
    padding: 88px 24px;
    background:
        radial-gradient(circle at 15% 40%, rgba(88,101,242,0.18) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(236,72,153,0.14) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(6,182,212,0.10) 0%, transparent 35%),
        #080912;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Subtle grid background */
.rs-catshow-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* Section head */
.rs-section-head {
    text-align: center;
    margin-bottom: 44px;
}

.rs-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: #8fb3ff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.rs-section-head h2 {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.15;
}

.rs-section-head p {
    color: #8f9bb7;
    font-size: 16px;
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Category grid */
.rs-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

/* Category card */
.rs-category-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 110px;
    padding: 20px;
    border-radius: 22px;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.07);
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
                border-color 0.28s ease,
                background 0.28s ease,
                box-shadow 0.28s ease;
}

.rs-category-card:hover {
    transform: translateY(-7px) scale(1.02);
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45),
                0 0 0 1px rgba(255,255,255,0.1),
                inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Glow blob */
.rs-category-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cat-color-1, #5865f2), var(--cat-color-2, #ec4899));
    filter: blur(22px);
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.rs-category-card:hover .rs-category-glow {
    opacity: 0.75;
    transform: scale(1.2);
}

/* Pulse ring animation */
.rs-category-pulse {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cat-color-1, #5865f2);
    opacity: 0;
    transition: opacity 0.3s;
}

.rs-category-card:hover .rs-category-pulse {
    opacity: 1;
    animation: rs-cat-pulse 1.2s ease-out infinite;
}

@keyframes rs-cat-pulse {
    0%   { box-shadow: 0 0 0 0 var(--cat-color-1, #5865f2); opacity: 1; }
    70%  { box-shadow: 0 0 0 10px transparent; opacity: 0; }
    100% { box-shadow: 0 0 0 0 transparent; opacity: 0; }
}

/* Icon */
.rs-category-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 26px;
    background: linear-gradient(135deg, var(--cat-color-1, #5865f2), var(--cat-color-2, #ec4899));
    box-shadow: 0 8px 20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    flex-shrink: 0;
}

.rs-category-card:hover .rs-category-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 12px 28px rgba(0,0,0,0.45), 0 0 20px var(--cat-color-1, rgba(88,101,242,0.5));
}

/* Content */
.rs-category-content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

.rs-category-content h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rs-category-content p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
}

/* Arrow */
.rs-category-arrow {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: color 0.25s ease, transform 0.25s ease;
}

.rs-category-card:hover .rs-category-arrow {
    color: rgba(255,255,255,0.85);
    transform: translateX(5px);
}

/* Footer "view all" link */
.rs-catshow-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.rs-catshow-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.rs-catshow-all-link:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .rs-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .rs-category-showcase {
        padding: 60px 16px;
    }
    .rs-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .rs-category-card {
        min-height: 96px;
        padding: 16px;
        border-radius: 18px;
        gap: 12px;
    }
    .rs-category-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 22px;
        border-radius: 13px;
    }
    .rs-category-content h3 { font-size: 13.5px; }
    .rs-category-content p  { font-size: 11px; }
    .rs-category-arrow      { display: none; }
    .rs-section-head { margin-bottom: 32px; }
}

@media (max-width: 440px) {
    .rs-category-grid {
        grid-template-columns: 1fr;
    }
    .rs-category-card { min-height: auto; }
}

/* =====================================================
   RadyoSever v2 — Düzeltmeler & Eklemeler
===================================================== */

/* .rs-play-radio = yeni class adı; .rs-play-radio-btn ile aynı stil */
.rs-play-radio {
  /* .rs-play-btn ile aynı görünüm için alias */
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.rs-play-radio:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(124,58,237,0.5);
}
.rs-play-radio.playing {
  background: linear-gradient(135deg, var(--rs-pink), var(--rs-primary));
  animation: rs-pulse-btn 1.5s infinite;
}

/* Kart detay linki */
.rs-card-detail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--rs-text-3);
  transition: color 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.rs-card-detail-link:hover {
  color: var(--rs-accent);
}

/* Grid — minimum kart boyutu artırıldı, çakışma önlendi */
.rs-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  align-items: start;
}
.rs-radio-grid-lg {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Kart iç yapı düzeltme — flex sütun, tam yükseklik */
.rs-radio-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0; /* grid taşmayı önle */
}
.rs-radio-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Logo aspect-ratio sabit */
.rs-radio-card-logo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--rs-bg-3);
  overflow: hidden;
  flex-shrink: 0;
}
.rs-radio-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Actions satırı — play butonu sol, dinlenme orta, detay sağ */
.rs-radio-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 12px;
  border-top: 1px solid var(--rs-border);
  margin-top: auto;
}
.rs-radio-card-actions .rs-listen-count {
  flex: 1;
  justify-content: center;
}

/* Responsive düzeltmeler */
@media (max-width: 600px) {
  .rs-radio-grid,
  .rs-radio-grid-lg {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .rs-radio-card-logo {
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 360px) {
  .rs-radio-grid,
  .rs-radio-grid-lg {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}


/* =====================================================
   LIGHT MODE — Genel renk uyumu
===================================================== */
[data-theme="light"] body {
  background: var(--rs-bg);
  color: var(--rs-text);
}

[data-theme="light"] .rs-header {
  background: var(--rs-header-bg);
  border-bottom-color: var(--rs-border);
}

[data-theme="light"] .rs-sidebar {
  background: var(--rs-bg-2);
  border-right-color: var(--rs-border);
}

[data-theme="light"] .glass-card,
[data-theme="light"] .rs-radio-card,
[data-theme="light"] .rs-news-card,
[data-theme="light"] .rs-news-featured-card {
  background: var(--rs-card-bg);
  border-color: var(--rs-border);
}

[data-theme="light"] .rs-player {
  background: var(--rs-player-bg);
  border-top-color: var(--rs-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}

[data-theme="light"] .rs-player-name { color: var(--rs-text); }
[data-theme="light"] .rs-player-status { color: var(--rs-text-2); }
[data-theme="light"] .rs-player-btn { color: var(--rs-text-2); }
[data-theme="light"] .rs-player-btn:hover { background: var(--rs-surface); color: var(--rs-text); }

[data-theme="light"] .rs-header-search input {
  background: var(--rs-input-bg);
  color: var(--rs-text);
  border-color: var(--rs-border);
}

[data-theme="light"] .rs-header-search input::placeholder { color: var(--rs-text-3); }

[data-theme="light"] .rs-footer {
  background: var(--rs-footer-bg);
}

[data-theme="light"] .rs-nav-link { color: var(--rs-text-2); }
[data-theme="light"] .rs-nav-link:hover,
[data-theme="light"] .rs-nav-item.active > .rs-nav-link {
  color: var(--rs-text);
  background: var(--rs-surface);
}

[data-theme="light"] .rs-sidebar-toggle,
[data-theme="light"] .rs-theme-toggle {
  background: var(--rs-surface);
  color: var(--rs-text-2);
}

[data-theme="light"] .rs-radio-card-title a { color: var(--rs-text); }
[data-theme="light"] .rs-news-card-title a  { color: var(--rs-text); }

[data-theme="light"] ::-webkit-scrollbar-track { background: var(--rs-bg-2); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: var(--rs-primary); }

/* =====================================================
   RS-PJAX — Sayfa Geçiş Animasyonu (güncellendi)
===================================================== */
#rs-page-content {
  transition: opacity 0.18s ease;
}

body.rs-page-loading #rs-page-content {
  opacity: 0.45;
  pointer-events: none;
}

body:not(.rs-page-loading) #rs-page-content {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════
   RADYOSEVER ENHANCED — YENİ BİLEŞENLER
   Hero güçlendirme | Mood | Son Dinlenenler | Favoriler | SEO
   Kategoriler | İstatistik Bandı | Genel iyileştirmeler
═══════════════════════════════════════════════════════════════ */

/* ── HERO GÜÇLENDİRME ────────────────────────────────────── */

/* Equalizer animasyonu */
.rs-hero-eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 80px;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0.15;
  pointer-events: none;
}

.rs-eq-bar {
  flex: 1;
  max-width: 18px;
  min-height: 4px;
  background: var(--rs-primary);
  border-radius: 3px 3px 0 0;
  animation: rsEqAnim 1.2s ease-in-out infinite alternate;
}

.rs-eq-bar:nth-child(even)  { background: var(--rs-accent); animation-duration: 0.9s; }
.rs-eq-bar:nth-child(3n)    { animation-duration: 1.5s; }
.rs-eq-bar:nth-child(4n)    { animation-duration: 0.7s; }
.rs-eq-bar:nth-child(5n)    { background: var(--rs-pink); animation-duration: 1.1s; }

@keyframes rsEqAnim {
  0%   { height: 8px; }
  100% { height: 60px; }
}

/* Hero Arama */
.rs-hero-search {
  margin: 28px auto 0;
  max-width: 560px;
}

.rs-hero-search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 8px 8px 18px;
  transition: var(--transition);
}

.rs-hero-search-inner:focus-within {
  border-color: var(--rs-primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2), var(--rs-glow);
  background: rgba(255,255,255,0.12);
}

.rs-hero-search-inner svg { color: var(--rs-text-2); flex-shrink: 0; }

.rs-hero-search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--rs-text);
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
}

.rs-hero-search-inner input::placeholder { color: var(--rs-text-3); }

.rs-hero-search-inner .rs-btn {
  flex-shrink: 0;
  border-radius: 40px;
  padding: 8px 22px;
  font-size: 14px;
}

[data-theme="light"] .rs-hero-search-inner {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.12);
}

[data-theme="light"] .rs-hero-search-inner:focus-within {
  background: #fff;
  border-color: var(--rs-primary);
}

/* Hero Kategori Pills */
.rs-hero-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.rs-hero-cat-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: var(--rs-text);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.rs-hero-cat-pill:hover {
  background: var(--rs-primary);
  border-color: var(--rs-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--rs-glow);
}

[data-theme="light"] .rs-hero-cat-pill {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.1);
}

/* ── SECTION GENEL İYİLEŞTİRME ─────────────────────────── */
.rs-section-header-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.rs-section-subtitle {
  color: var(--rs-text-2);
  font-size: 14px;
  margin: 0;
  max-width: 480px;
}

/* ── RUH HALİ (MOOD) SEKSİYONU ─────────────────────────── */
.rs-mood-section { background: transparent; }

.rs-mood-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.rs-mood-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 12px;
  border-radius: var(--rs-radius-lg);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rs-border);
}

.rs-mood-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  opacity: 0;
  transition: var(--transition);
}

.rs-mood-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rs-shadow-lg), var(--rs-glow);
  border-color: var(--rs-primary);
}

.rs-mood-card:hover::before { opacity: 0.12; }

.rs-mood-emoji {
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.rs-mood-card:hover .rs-mood-emoji { transform: scale(1.2) rotate(-5deg); }

.rs-mood-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--rs-text);
  position: relative;
  z-index: 1;
}

.rs-mood-count {
  font-size: 11px;
  color: var(--rs-text-3);
  position: relative;
  z-index: 1;
}

/* ── KATEGORİ KARTLARI ──────────────────────────────────── */
.rs-categories-section { }

.rs-category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.rs-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 10px 14px;
  border-radius: var(--rs-radius);
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--rs-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.rs-cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--rs-primary);
  box-shadow: var(--rs-glow);
  color: var(--rs-text);
}

.rs-cat-card-icon { font-size: 26px; line-height: 1; }
.rs-cat-card-name { font-size: 12.5px; font-weight: 600; color: var(--rs-text); }
.rs-cat-card-count { font-size: 11px; color: var(--rs-text-3); }

/* ── İSTATİSTİK BANDI ───────────────────────────────────── */
.rs-stats-band {
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.rs-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.rs-stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.rs-stats-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: #fff;
}

.rs-stats-band-icon { font-size: 28px; line-height: 1; opacity: 0.9; }

.rs-stats-band-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.rs-stats-band-label {
  font-size: 13px;
  opacity: 0.85;
  font-weight: 500;
}

.rs-stats-band-label-big {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  opacity: 1;
}

/* ── FAVORİ BUTONU (KALP) ───────────────────────────────── */
.rs-favorite-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rs-border-2);
  color: var(--rs-text-3);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.rs-favorite-btn:hover {
  border-color: var(--rs-pink);
  color: var(--rs-pink);
  background: rgba(236,72,153,0.1);
  transform: scale(1.15);
}

.rs-favorite-btn.active {
  border-color: var(--rs-pink);
  color: var(--rs-pink);
  background: rgba(236,72,153,0.15);
}

.rs-favorite-btn.active:hover { transform: scale(1.1); }

/* ── FAVORİLER MODALİ ───────────────────────────────────── */
.rs-favorites-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rs-favorites-modal[hidden] { display: none; }

.rs-favorites-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.rs-favorites-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  border-radius: var(--rs-radius-lg);
  border: 1px solid var(--rs-border-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: rsFavModalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes rsFavModalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.rs-favorites-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--rs-border);
  flex-shrink: 0;
}

.rs-favorites-modal-header h2 {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.rs-favorites-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rs-text-2);
  background: var(--rs-surface-2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.rs-favorites-modal-close:hover { background: var(--rs-surface); color: var(--rs-text); }

.rs-favorites-modal-body {
  overflow-y: auto;
  padding: 20px 24px;
  flex: 1;
}

.rs-fav-loading, .rs-fav-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  color: var(--rs-text-2);
  text-align: center;
}

.rs-fav-empty span { font-size: 40px; }
.rs-fav-empty p { font-size: 14px; line-height: 1.6; }

.rs-fav-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rs-fav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--rs-radius);
  border: 1px solid var(--rs-border);
  transition: var(--transition);
}

.rs-fav-item:hover { border-color: var(--rs-primary); }

.rs-fav-item-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--rs-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--rs-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-fav-item-logo img { width: 100%; height: 100%; object-fit: cover; }
.rs-fav-logo-fallback { font-size: 20px; }

.rs-fav-item-info { flex: 1; min-width: 0; }
.rs-fav-item-title { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rs-fav-item-city { font-size: 12px; color: var(--rs-text-3); margin-top: 2px; }

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

.rs-fav-remove-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rs-text-3);
  background: var(--rs-surface-2);
  border: 1px solid var(--rs-border);
  cursor: pointer;
  transition: var(--transition);
}

.rs-fav-remove-btn:hover { background: rgba(239,68,68,0.15); color: #ef4444; border-color: #ef4444; }

.rs-fav-count-badge {
  background: var(--rs-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50px;
  padding: 1px 5px;
  min-width: 18px;
  text-align: center;
  margin-left: 4px;
  vertical-align: middle;
}

body.rs-modal-open { overflow: hidden; }

/* ── SON DİNLENENLER SEKSİYONU ──────────────────────────── */
.rs-recently-played-section .rs-section-header {
  align-items: center;
}

/* ── KATEGORİ SAYFASI — SEO GÜÇLENDİRME ────────────────── */
.rs-category-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 24px;
  border-radius: var(--rs-radius-lg);
  border: 1px solid var(--rs-border-2);
}

.rs-category-hero-icon {
  font-size: 52px;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.15));
  border-radius: var(--rs-radius);
}

.rs-category-hero-info { flex: 1; }

.rs-category-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rs-category-hero-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--rs-text-2);
}

.rs-category-hero-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin: 0 0 8px;
}

.rs-category-hero-desc {
  color: var(--rs-text-2);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* SEO Alt Metin Bloğu */
.rs-category-seo-block {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--rs-surface);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius-lg);
}

.rs-category-seo-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--rs-text);
}

.rs-category-seo-text p {
  color: var(--rs-text-2);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 12px;
}

.rs-category-seo-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-category-seo-facts li {
  font-size: 13px;
  color: var(--rs-text-2);
}

/* ── MOBILE RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .rs-mood-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .rs-stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
  .rs-category-hero { flex-direction: column; text-align: center; }
  .rs-category-hero-meta { justify-content: center; }
}

@media (max-width: 600px) {
  .rs-hero-search { max-width: 100%; }
  .rs-hero-search-inner { padding: 6px 6px 6px 14px; }
  .rs-hero-search-inner .rs-btn { padding: 8px 16px; font-size: 13px; }

  .rs-mood-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .rs-mood-emoji { font-size: 24px; }
  .rs-mood-card { padding: 14px 8px; }

  .rs-stats-band { padding: 32px 0; }
  .rs-stats-band-num, .rs-stats-band-label-big { font-size: 28px; }

  .rs-category-cards { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }

  .rs-favorites-modal-panel { max-height: 90vh; }
  .rs-favorites-modal-header { padding: 16px 16px 12px; }
  .rs-favorites-modal-body { padding: 14px 16px; }

  .rs-hero-cats { gap: 6px; }
  .rs-hero-cat-pill { font-size: 12px; padding: 5px 11px; }
}

@media (max-width: 380px) {
  .rs-mood-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── LIGHT THEME OVERRIDES ──────────────────────────────── */
[data-theme="light"] .rs-stats-band { }
[data-theme="light"] .rs-category-seo-block { background: var(--rs-bg-3); }
[data-theme="light"] .rs-fav-item { background: var(--rs-bg-2); }
[data-theme="light"] .rs-favorites-modal-panel { background: var(--rs-bg-2); }
[data-theme="light"] .rs-mood-card { background: var(--rs-bg-2); }
[data-theme="light"] .rs-cat-card { background: var(--rs-bg-2); }
[data-theme="light"] .rs-category-hero { background: var(--rs-bg-2); }


/* ═══════════════════════════════════════════════════════
   RS V3 — TÜM YENİ ÖZELLİKLER CSS
   Özellikler: 1,2,3,4,5,6,7,8,9,11,12,13,14,15
═══════════════════════════════════════════════════════ */

/* ─── Özellik 1: Bana Radyo Öner ────────────────────── */
.rs-btn-random {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  position: relative;
  overflow: hidden;
}
.rs-btn-random:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239,68,68,.45); }
.rs-btn-random:active { transform: scale(.97); }
.rs-btn-random:disabled { opacity: .7; cursor: wait; }
.rs-btn-random-hero {
  font-size: 16px;
  padding: 14px 32px;
  box-shadow: 0 4px 20px rgba(239,68,68,.35);
}
.rs-btn-random.rs-btn-success { background: linear-gradient(135deg,#10b981,#059669); }
.rs-random-icon { font-size: 20px; animation: rs-spin 1.2s linear infinite; display: inline-block; }
.rs-btn-random:not(:disabled) .rs-random-icon { animation: none; }
.rs-btn-random:disabled .rs-random-icon { animation: rs-spin .8s linear infinite; }
.rs-random-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rs-spin .7s linear infinite;
}
.rs-hero-random-wrap { margin-top: 20px; display: flex; justify-content: center; }

@keyframes rs-spin { to { transform: rotate(360deg); } }

/* ─── Özellik 2: Canlı Arama ────────────────────────── */
.rs-live-search-wrap { position: relative; }

.rs-live-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 360px;
  max-width: 560px;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  z-index: 9000;
  overflow: hidden;
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.rs-live-search-results::-webkit-scrollbar { width: 4px; }
.rs-live-search-results::-webkit-scrollbar-track { background: transparent; }
.rs-live-search-results::-webkit-scrollbar-thumb { background: var(--rs-border); border-radius: 4px; }

.rs-ls-section { padding: 8px 0; }
.rs-ls-section + .rs-ls-section { border-top: 1px solid var(--rs-border); }
.rs-ls-section-title {
  padding: 8px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rs-text-3);
}
.rs-ls-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background .15s;
}
.rs-ls-item:hover { background: var(--rs-bg-3); }
.rs-ls-logo, .rs-ls-thumb {
  width: 40px; height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--rs-bg-3);
}
.rs-ls-info { flex: 1; min-width: 0; }
.rs-ls-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--rs-text);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rs-ls-title:hover { color: var(--rs-accent); }
.rs-ls-cat, .rs-ls-date {
  font-size: 11px;
  color: var(--rs-text-3);
  margin-top: 2px;
  display: block;
}
.rs-ls-play {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .15s;
}
.rs-ls-play:hover { transform: scale(1.1); }
.rs-ls-loading, .rs-ls-empty {
  padding: 24px;
  text-align: center;
  color: var(--rs-text-3);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rs-spinner-sm {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid var(--rs-border);
  border-top-color: var(--rs-accent);
  border-radius: 50%;
  animation: rs-spin .7s linear infinite;
}

/* ─── Özellik 4: İstatistik kartları ────────────────── */
.rs-stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.rs-stat-card {
  padding: 20px 16px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.rs-stat-icon { font-size: 28px; }
.rs-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--rs-text);
  line-height: 1;
}
.rs-stat-label { font-size: 12px; color: var(--rs-text-3); }
.rs-stat-card-hot { border: 1px solid rgba(239,68,68,.3); }
.rs-stat-card-hot .rs-stat-value { color: #ef4444; }
.rs-live-value { color: #ef4444; animation: rs-pulse-text 1.5s ease-in-out infinite; }
@keyframes rs-pulse-text { 0%,100% { opacity:1; } 50% { opacity:.5; } }

/* Canlı yayın aktif etiketi */
.rs-live-indicator-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239,68,68,.15);
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ─── Özellik 5: Haftanın Radyosu ───────────────────── */
.rs-featured-radio-section { padding: 40px 0; }

.rs-featured-radio-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  min-height: 220px;
}
.rs-featured-radio-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .08;
  filter: blur(20px);
  transform: scale(1.1);
}
.rs-featured-radio-logo {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  border: 2px solid var(--rs-border);
}
.rs-featured-radio-logo img { width: 100%; height: 100%; object-fit: cover; }
.rs-featured-radio-info { position: relative; flex: 1; min-width: 0; }
.rs-badge-featured {
  background: linear-gradient(135deg,#f59e0b,#ef4444);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.rs-featured-radio-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--rs-text);
  margin: 0 0 10px;
  line-height: 1.2;
}
.rs-featured-radio-desc {
  color: var(--rs-text-2);
  font-size: 14px;
  margin: 0 0 12px;
  line-height: 1.6;
}
.rs-featured-radio-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--rs-text-3);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.rs-featured-radio-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .rs-featured-radio-card { flex-direction: column; padding: 24px; gap: 20px; text-align: center; }
  .rs-featured-radio-logo { width: 100px; height: 100px; }
  .rs-featured-radio-meta { justify-content: center; }
  .rs-featured-radio-actions { justify-content: center; }
}

/* ─── Özellik 6: Radyo İste Formu ───────────────────── */
.rs-request-form-wrap { max-width: 680px; margin: 0 auto; padding: 20px 0; }
.rs-request-form-inner { border-radius: 20px; overflow: hidden; }
.rs-request-form-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--rs-border);
  text-align: center;
}
.rs-request-icon { font-size: 40px; display: block; margin-bottom: 10px; }
.rs-request-form-header h3 { font-size: 22px; font-weight: 800; margin: 0 0 6px; }
.rs-request-form-header p  { color: var(--rs-text-3); font-size: 14px; margin: 0; }
.rs-request-form { padding: 24px 32px 28px; }
.rs-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.rs-form-group { margin-bottom: 16px; }
.rs-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--rs-text-2);
  margin-bottom: 6px;
}
.rs-required { color: #ef4444; }
.rs-form-group input,
.rs-form-group select,
.rs-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--rs-border);
  background: var(--rs-bg-3);
  color: var(--rs-text);
  font-size: 14px;
  transition: border-color .2s;
  box-sizing: border-box;
  font-family: inherit;
}
.rs-form-group input:focus,
.rs-form-group select:focus,
.rs-form-group textarea:focus {
  outline: none;
  border-color: var(--rs-accent);
  box-shadow: 0 0 0 3px rgba(6,182,212,.15);
}
.rs-form-group small { display: block; font-size: 11px; color: var(--rs-text-3); margin-top: 4px; }
.rs-form-actions { margin-top: 20px; display: flex; justify-content: flex-end; }
.rs-form-message { margin-top: 14px; padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; }
.rs-form-success { background: rgba(16,185,129,.15); color: #10b981; }
.rs-form-error   { background: rgba(239,68,68,.15);  color: #ef4444; }
.rs-btn-submit { min-width: 120px; justify-content: center; }

@media (max-width: 520px) {
  .rs-form-row-2 { grid-template-columns: 1fr; }
  .rs-request-form { padding: 20px 16px; }
}

/* ─── Özellik 7: Uyku Zamanlayıcısı ─────────────────── */
.rs-sleep-timer-wrap { position: relative; }

.rs-sleep-btn.rs-sleep-active { color: var(--rs-accent); }
.rs-sleep-btn.rs-sleep-active svg { stroke: var(--rs-accent); }

.rs-sleep-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border);
  border-radius: 14px;
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  z-index: 9010;
}
.rs-sleep-dropdown-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rs-text-3);
  padding: 4px 10px 8px;
  border-bottom: 1px solid var(--rs-border);
  margin-bottom: 4px;
}
.rs-sleep-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rs-text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.rs-sleep-option:hover { background: var(--rs-bg-3); }
.rs-sleep-cancel { color: #ef4444; margin-top: 2px; border-top: 1px solid var(--rs-border); border-radius: 0 0 8px 8px; }

.rs-player-timer-display {
  font-size: 11px;
  color: var(--rs-accent);
  font-weight: 600;
  margin-top: 2px;
}

/* ─── Özellik 8: Equalizer animasyonu (5 çubuk) ──────── */
.rs-player-equalizer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  height: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
  border-radius: 0 0 8px 8px;
  padding: 0 4px 2px;
}
.rs-player-equalizer.active { display: flex; }
.rs-player-equalizer span {
  display: block;
  width: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--rs-accent);
  animation: rs-eq 0.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.rs-player-equalizer span:nth-child(1) { animation-delay: 0s;    height: 55%; }
.rs-player-equalizer span:nth-child(2) { animation-delay: .15s;  height: 90%; }
.rs-player-equalizer span:nth-child(3) { animation-delay: .08s;  height: 40%; }
.rs-player-equalizer span:nth-child(4) { animation-delay: .25s;  height: 75%; }
.rs-player-equalizer span:nth-child(5) { animation-delay: .05s;  height: 60%; }

/* Kart üzerindeki equalizer — is-playing durumu */
.rs-radio-card .rs-radio-card-logo .rs-player-equalizer {
  height: 18px;
  gap: 1.5px;
}
.rs-radio-card.is-playing .rs-radio-card-logo .rs-player-equalizer { display: flex; }

@keyframes rs-eq {
  from { transform: scaleY(.3); }
  to   { transform: scaleY(1); }
}

/* ─── Özellik 9: Çalan kart vurgulama ───────────────── */
.rs-radio-card.is-playing {
  border: 1.5px solid var(--rs-accent);
  box-shadow: 0 0 0 3px rgba(6,182,212,.2), 0 8px 32px rgba(6,182,212,.15);
}
.rs-radio-card.is-playing .rs-radio-card-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,182,212,.15), transparent);
  border-radius: inherit;
}
.rs-now-playing-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 10px 6px 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─── Özellik 11: SEO Kategori Açıklaması ───────────── */
.rs-cat-seo-block {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border);
  border-radius: 16px;
  border-left: 4px solid var(--rs-accent);
}
.rs-cat-seo-text {
  color: var(--rs-text-2);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* ─── Özellik 12: Popüler Aramalar ─────────────────── */
.rs-popular-searches { margin: 8px 0; }
.rs-popular-searches-section { padding: 32px 0 16px; }
.rs-popular-searches-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--rs-text);
  margin: 0 0 16px;
}
.rs-popular-searches-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rs-popular-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border);
  color: var(--rs-text-2);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.rs-popular-tag:hover {
  background: var(--rs-accent);
  border-color: var(--rs-accent);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── Özellik 13: Reklam Alanları ───────────────────── */
.rs-ad-zone {
  width: 100%;
  text-align: center;
  margin: 20px 0;
  min-height: 1px;
  overflow: hidden;
}
.rs-ad-zone:empty { display: none; margin: 0; }
.rs-ad-header        { margin: 0 0 16px; }
.rs-ad-footer_top    { margin: 16px 0 0; }
.rs-ad-single_bottom { margin: 24px 0; }
.rs-ad-between_cards { grid-column: 1 / -1; margin: 8px 0; }

/* ─── Özellik 15: Bozuk Yayın Bildir ────────────────── */
.rs-report-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(239,68,68,.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,.25);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.rs-report-btn:hover {
  background: rgba(239,68,68,.2);
  border-color: rgba(239,68,68,.5);
}
.rs-report-btn-player {
  /* Player içindeki butonu küçük tut */
  padding: 0;
  background: transparent;
  border: none;
  color: rgba(239,68,68,.7);
}
.rs-report-btn-player:hover { color: #ef4444; background: transparent; border: none; }

/* Modal temel stilleri */
.rs-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.rs-modal[hidden] { display: none; }
.rs-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.rs-modal-box {
  position: relative;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  overflow: hidden;
}
.rs-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--rs-border);
}
.rs-modal-header h3 { margin: 0; font-size: 18px; font-weight: 700; }
.rs-modal-close {
  background: var(--rs-bg-3);
  border: none;
  color: var(--rs-text-3);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.rs-modal-close:hover { background: rgba(239,68,68,.2); color: #ef4444; }
.rs-modal-body { padding: 20px 24px; }
.rs-modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rs-border);
}
body.rs-modal-open { overflow: hidden; }

/* ─── Light mode overrides ───────────────────────────── */
[data-theme="light"] .rs-live-search-results { box-shadow: 0 12px 40px rgba(0,0,0,.15); }
[data-theme="light"] .rs-sleep-dropdown      { box-shadow: 0 8px 24px rgba(0,0,0,.12); }
[data-theme="light"] .rs-modal-box           { box-shadow: 0 16px 60px rgba(0,0,0,.2); }
[data-theme="light"] .rs-featured-radio-bg   { opacity: .05; }
[data-theme="light"] .rs-stat-card           { background: var(--rs-bg-2); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .rs-live-search-results { min-width: 0; left: -60px; right: -10px; }
  .rs-sleep-dropdown      { right: 0; bottom: auto; top: calc(100% + 8px); }
  .rs-stat-cards          { grid-template-columns: repeat(2, 1fr); }
  .rs-modal-box           { border-radius: 16px; }
}
@media (max-width: 480px) {
  .rs-live-search-results { left: 50%; right: auto; transform: translateX(-50%); min-width: 320px; }
  .rs-stat-cards          { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .rs-popular-searches-tags { gap: 6px; }
  .rs-popular-tag         { font-size: 12px; padding: 6px 12px; }
}

/* ════════════════════════════════════════════════════════════
   RS V4 — PREMIUM UX/UI
   Özellikler: 1-15 (kategori filtre, kart, hero, mobile nav,
   footer CTA, animasyonlar, rozetler, keşif paneli, vb.)
════════════════════════════════════════════════════════════ */

/* ─── Ortak animasyon token'ları ──────────────────────── */
:root {
  --rs-glow-primary: rgba(124,58,237,.35);
  --rs-glow-accent:  rgba(6,182,212,.3);
  --rs-card-radius:  16px;
  --rs-transition-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ─── Özellik 10: Giriş animasyonları ────────────────── */
@keyframes rs-fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes rs-fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes rs-slideInL { from { opacity:0; transform:translateX(-16px); } to { opacity:1; transform:translateX(0); } }
@keyframes rs-scaleIn  { from { opacity:0; transform:scale(.94); } to { opacity:1; transform:scale(1); } }
@keyframes rs-pulse-ring { 0%,100% { box-shadow:0 0 0 0 var(--rs-glow-primary); } 50% { box-shadow:0 0 0 8px transparent; } }

.rs-fade-up  { animation: rs-fadeUp .6s ease both; }
.rs-fade-in  { animation: rs-fadeIn .5s ease both; }

/* scroll-triggered — JS'in .visible class'ı eklemesiyle tetiklenir */
.rs-reveal { opacity:0; transform:translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.rs-reveal.visible { opacity:1; transform:none; }

.rs-cards-animate .rs-radio-card { opacity:0; transform:translateY(16px); transition: opacity .4s ease, transform .4s ease; }
.rs-cards-animate .rs-radio-card.visible { opacity:1; transform:none; }

/* reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

/* ─── Özellik 1: Premium Kategori Filtre Barı ─────────── */
.rs-cf-wrap {
  margin: 0 0 32px;
}
.rs-cf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rs-cf-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rs-text-3);
}
.rs-cf-header .rs-cf-count {
  font-size: 12px;
  color: var(--rs-text-3);
  background: var(--rs-bg-3);
  padding: 2px 10px;
  border-radius: 20px;
}

.rs-cf-scroll-wrap {
  position: relative;
  overflow: hidden;
}
.rs-cf-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.rs-cf-bar::-webkit-scrollbar { display: none; }

/* Fade kenarları */
.rs-cf-fade-left,
.rs-cf-fade-right {
  position: absolute;
  top: 0; bottom: 6px;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}
.rs-cf-fade-left  { left: 0;  background: linear-gradient(to right, var(--rs-bg), transparent); }
.rs-cf-fade-right { right: 0; background: linear-gradient(to left,  var(--rs-bg), transparent); }

/* Filtre butonları */
.rs-cf-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1.5px solid var(--rs-border);
  background: var(--rs-bg-2);
  color: var(--rs-text-2);
  text-decoration: none;
  transition: all .2s var(--rs-transition-bounce);
  position: relative;
  flex-shrink: 0;
}
.rs-cf-btn:hover {
  transform: translateY(-2px);
  border-color: var(--rs-accent);
  color: var(--rs-accent);
  background: rgba(6,182,212,.08);
  box-shadow: 0 4px 16px var(--rs-glow-accent);
}
.rs-cf-btn:hover .rs-cf-icon { animation: rs-bounce-icon .4s var(--rs-transition-bounce); }

.rs-cf-btn.rs-cf-active {
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px var(--rs-glow-primary);
  transform: scale(1.04);
}
.rs-cf-btn-all.rs-cf-active {
  background: linear-gradient(135deg, #f59e0b, var(--rs-primary));
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}

.rs-cf-icon { font-size: 16px; flex-shrink: 0; }
.rs-cf-label { max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
.rs-cf-count-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.15);
  padding: 1px 7px;
  border-radius: 20px;
  min-width: 24px;
  text-align: center;
}
.rs-cf-btn:not(.rs-cf-active) .rs-cf-count-badge {
  background: var(--rs-bg-3);
  color: var(--rs-text-3);
}

@keyframes rs-bounce-icon { 0%,100% { transform:scale(1); } 50% { transform:scale(1.3) rotate(-8deg); } }

/* ─── Özellik 12: Premium Kategori Hero ──────────────── */
.rs-cat-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 48px 40px;
  margin-bottom: 32px;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border);
}
.rs-cat-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.rs-cat-hero-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--rs-primary);
  opacity: .08;
  filter: blur(60px);
}
.rs-cat-wave-1,
.rs-cat-wave-2 {
  position: absolute;
  bottom: -20px;
  width: 200%;
  height: 80px;
  border-radius: 50%;
  opacity: .04;
}
.rs-cat-wave-1 { left: -50%; background: var(--rs-accent); animation: rs-wave-move 8s linear infinite; }
.rs-cat-wave-2 { left: -30%; background: var(--rs-primary); animation: rs-wave-move 12s linear infinite reverse; }
@keyframes rs-wave-move { from { transform: translateX(0); } to { transform: translateX(50%); } }

.rs-cat-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
}
.rs-cat-hero-icon-wrap { position: relative; flex-shrink: 0; }
.rs-cat-hero-icon {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 4px 20px var(--rs-glow-primary));
  display: block;
}
.rs-cat-hero-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  margin-top: 8px;
  justify-content: center;
}
.rs-cat-hero-eq span {
  width: 4px;
  background: var(--rs-accent);
  border-radius: 2px;
  animation: rs-eq .8s ease-in-out infinite alternate;
}
.rs-cat-hero-eq span:nth-child(1) { height: 50%; animation-delay:0s; }
.rs-cat-hero-eq span:nth-child(2) { height: 100%; animation-delay:.15s; }
.rs-cat-hero-eq span:nth-child(3) { height: 65%; animation-delay:.08s; }
.rs-cat-hero-eq span:nth-child(4) { height: 80%; animation-delay:.22s; }
.rs-cat-hero-eq span:nth-child(5) { height: 40%; animation-delay:.05s; }

.rs-cat-hero-info { flex: 1; min-width: 0; }
.rs-cat-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.rs-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239,68,68,.15);
  color: #ef4444;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(239,68,68,.25);
}
.rs-cat-hero-count-badge {
  background: var(--rs-bg-3);
  color: var(--rs-text-2);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--rs-border);
}
.rs-cat-hero-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--rs-text);
  margin: 0 0 10px;
  line-height: 1.15;
}
.rs-cat-hero-desc {
  color: var(--rs-text-2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.rs-cat-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.rs-cat-stat { display: flex; flex-direction: column; gap: 2px; }
.rs-cat-stat strong { font-size: 18px; font-weight: 800; color: var(--rs-text); }
.rs-cat-stat span { font-size: 11px; color: var(--rs-text-3); text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 640px) {
  .rs-cat-hero { padding: 28px 20px; }
  .rs-cat-hero-content { flex-direction: column; text-align: center; gap: 20px; }
  .rs-cat-hero-icon { font-size: 52px; }
  .rs-cat-hero-meta { justify-content: center; }
  .rs-cat-hero-stats { justify-content: center; }
}

/* Archive hero */
.rs-archive-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--rs-border);
  margin-bottom: 28px;
}
.rs-archive-hero-icon { font-size: 56px; flex-shrink: 0; }
.rs-archive-hero-title { font-size: clamp(22px,4vw,34px); font-weight: 800; margin: 0 0 6px; }
.rs-archive-hero-desc  { color: var(--rs-text-2); font-size: 14px; margin: 0 0 12px; }
.rs-archive-hero-stats { display: flex; gap: 20px; font-size: 13px; color: var(--rs-text-3); }
.rs-archive-hero-stats strong { color: var(--rs-text); font-weight: 700; }
.rs-archive-hero-eq {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  flex-shrink: 0;
}
.rs-archive-hero-eq span {
  width: 5px;
  background: linear-gradient(to top, var(--rs-primary), var(--rs-accent));
  border-radius: 3px;
  animation: rs-eq .8s ease-in-out infinite alternate;
}
.rs-archive-hero-eq span:nth-child(1) { height: 40%; animation-delay:0s; }
.rs-archive-hero-eq span:nth-child(2) { height: 90%; animation-delay:.12s; }
.rs-archive-hero-eq span:nth-child(3) { height: 60%; animation-delay:.06s; }
.rs-archive-hero-eq span:nth-child(4) { height: 75%; animation-delay:.18s; }
.rs-archive-hero-eq span:nth-child(5) { height: 45%; animation-delay:.03s; }

@media (max-width: 640px) {
  .rs-archive-hero { flex-wrap: wrap; }
  .rs-archive-hero-eq { display: none; }
}

/* ─── Özellik 4 + 11: Premium Radyo Kartı ────────────── */

/* Logo zoom on hover */
.rs-radio-card .rs-radio-card-logo img {
  transition: transform .35s var(--rs-transition-bounce), filter .3s ease;
}
.rs-radio-card:hover .rs-radio-card-logo img {
  transform: scale(1.08);
}

/* Neon glow on hover */
.rs-radio-card {
  transition: box-shadow .3s ease, border-color .3s ease, transform .25s ease;
  position: relative;
}
.rs-radio-card:hover {
  box-shadow: 0 0 0 1.5px rgba(124,58,237,.4), 0 8px 32px rgba(124,58,237,.2);
  transform: translateY(-3px);
}

/* Logo overlay */
.rs-card-logo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.55));
  border-radius: inherit;
  opacity: 0;
  transition: opacity .3s ease;
}
.rs-radio-card:hover .rs-card-logo-overlay { opacity: 1; }

/* Play butonu hover */
.rs-play-btn {
  transition: transform .2s var(--rs-transition-bounce), box-shadow .2s ease !important;
}
.rs-play-btn:hover {
  transform: scale(1.18) !important;
  box-shadow: 0 4px 20px var(--rs-glow-primary) !important;
}

/* Rozetler */
.rs-card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
}
.rs-badge-live-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(239,68,68,.85);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: .06em;
  backdrop-filter: blur(4px);
}
.rs-badge-hd {
  background: rgba(6,182,212,.85);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.rs-badge-new {
  background: rgba(16,185,129,.85);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.rs-badge-popular {
  font-size: 14px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

/* FAVORİ rozeti (JS ekler) */
.rs-card-fav-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #f43f5e;
  font-size: 14px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.3));
  z-index: 3;
}

/* Şu an çalıyor katmanı */
.rs-card-now-playing {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0,0,0,.6);
  border-radius: inherit;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
  z-index: 4;
}
.rs-radio-card.is-playing .rs-card-now-playing { display: flex; }

.rs-card-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
}
.rs-card-eq span {
  width: 3px;
  background: var(--rs-accent);
  border-radius: 2px;
  animation: rs-eq .7s ease-in-out infinite alternate;
}
.rs-card-eq span:nth-child(1) { height:40%; animation-delay:0s; }
.rs-card-eq span:nth-child(2) { height:100%;animation-delay:.1s; }
.rs-card-eq span:nth-child(3) { height:60%; animation-delay:.05s; }
.rs-card-eq span:nth-child(4) { height:80%; animation-delay:.15s; }
.rs-card-eq span:nth-child(5) { height:45%; animation-delay:.02s; }

/* is-playing kart kenarlığı */
.rs-radio-card.is-playing {
  border: 1.5px solid var(--rs-accent) !important;
  box-shadow: 0 0 0 3px rgba(6,182,212,.2), 0 8px 32px rgba(6,182,212,.15) !important;
}

/* ─── Keşif Paneli ───────────────────────────────────── */
.rs-discovery-section { padding: 48px 0; }
.rs-discovery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.rs-discovery-card {
  position: relative;
  border-radius: 20px;
  padding: 28px 20px;
  border: 1px solid var(--rs-border);
  background: var(--rs-bg-2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s var(--rs-transition-bounce), box-shadow .25s ease;
}
.rs-discovery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.rs-discovery-random::before  { background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(239,68,68,.08)); }
.rs-discovery-favs::before    { background: linear-gradient(135deg, rgba(244,63,94,.12), rgba(139,92,246,.08)); }
.rs-discovery-recent::before  { background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(124,58,237,.08)); }
.rs-discovery-popular::before { background: linear-gradient(135deg, rgba(239,68,68,.12), rgba(245,158,11,.08)); }
.rs-discovery-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.rs-discovery-card:hover::before { opacity: 1; }

.rs-discovery-icon { font-size: 36px; line-height: 1; position: relative; }
.rs-discovery-card h3 { font-size: 16px; font-weight: 700; color: var(--rs-text); margin: 0; position: relative; }
.rs-discovery-card p  { font-size: 13px; color: var(--rs-text-3); margin: 0; position: relative; }
.rs-discovery-arrow   { margin-top: auto; font-size: 18px; color: var(--rs-accent); transition: transform .2s ease; }
.rs-discovery-card:hover .rs-discovery-arrow { transform: translateX(4px); }

@media (max-width: 900px) { .rs-discovery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .rs-discovery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ─── Şu An Dinlenenler ──────────────────────────────── */
.rs-now-listening-section { padding: 0 0 48px; }
.rs-live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(239,68,68,.15);
  color: #ef4444;
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid rgba(239,68,68,.2);
  vertical-align: middle;
  margin-left: 8px;
}
.rs-now-listening-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.rs-now-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border);
  transition: all .2s ease;
  position: relative;
}
.rs-now-item:hover { border-color: var(--rs-accent); background: rgba(6,182,212,.05); transform: translateY(-1px); }
.rs-now-item-logo {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.rs-now-item-logo img { width: 100%; height: 100%; object-fit: cover; }
.rs-now-item-eq {
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  height: 12px;
}
.rs-now-item-eq span {
  width: 2.5px;
  background: var(--rs-accent);
  border-radius: 2px;
  animation: rs-eq .8s ease-in-out infinite alternate;
}
.rs-now-item-eq span:nth-child(1) { height:40%; animation-delay:0s; }
.rs-now-item-eq span:nth-child(2) { height:100%;animation-delay:.1s; }
.rs-now-item-eq span:nth-child(3) { height:60%; animation-delay:.05s; }
.rs-now-item-eq span:nth-child(4) { height:80%; animation-delay:.15s; }

.rs-now-item-info { flex: 1; min-width: 0; }
.rs-now-item-title { font-size: 13px; font-weight: 600; color: var(--rs-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rs-now-item-cat   { font-size: 11px; color: var(--rs-text-3); margin-top: 2px; }
.rs-now-item-play {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rs-primary), var(--rs-accent));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.rs-now-item-play:hover { transform: scale(1.12); }

@media (max-width: 900px) { .rs-now-listening-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .rs-now-listening-grid { grid-template-columns: 1fr; gap: 8px; } }

/* ─── Footer CTA ─────────────────────────────────────── */
.rs-cta-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  background: var(--rs-bg-2);
  border-top: 1px solid var(--rs-border);
  border-bottom: 1px solid var(--rs-border);
  margin-bottom: 0;
}
.rs-cta-bg { position: absolute; inset: 0; overflow: hidden; }
.rs-cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .07;
}
.rs-cta-glow-1 { top: -100px; left: -80px;  background: var(--rs-primary); }
.rs-cta-glow-2 { bottom:-80px; right: -60px; background: var(--rs-accent); }
.rs-cta-wave-1,
.rs-cta-wave-2 {
  position: absolute;
  bottom: -30px;
  width: 200%;
  height: 100px;
  border-radius: 50%;
  opacity: .03;
}
.rs-cta-wave-1 { left: -50%; background: var(--rs-primary); animation: rs-wave-move 10s linear infinite; }
.rs-cta-wave-2 { left: -30%; background: var(--rs-accent);  animation: rs-wave-move 14s linear infinite reverse; }
.rs-cta-content  { position: relative; max-width: 640px; margin: 0 auto; }
.rs-cta-icon     { font-size: 56px; margin-bottom: 16px; }
.rs-cta-title    { font-size: clamp(24px,4vw,38px); font-weight: 800; color: var(--rs-text); margin: 0 0 12px; line-height: 1.2; }
.rs-cta-subtitle { font-size: 16px; color: var(--rs-text-2); margin: 0 0 32px; }
.rs-cta-actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.rs-cta-stats    { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.rs-cta-stat     { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.rs-cta-stat strong { font-size: 22px; font-weight: 800; color: var(--rs-text); }
.rs-cta-stat span   { font-size: 12px; color: var(--rs-text-3); text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 480px) {
  .rs-cta-section  { padding: 56px 0; }
  .rs-cta-actions  { flex-direction: column; align-items: center; }
  .rs-cta-stats    { gap: 16px; }
}

/* ─── Mobil Alt Navigasyon ───────────────────────────── */
.rs-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--rs-bg-2);
  border-top: 1px solid var(--rs-border);
  z-index: 9500;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 8px;
  align-items: center;
  justify-content: space-around;
}

/* Player açıkken nav yukarı kayar */
body.rs-player-open .rs-mobile-nav { bottom: var(--rs-player-height, 72px); }

.rs-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--rs-text-3);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
  border-radius: 10px;
  flex: 1;
}
.rs-mobile-nav-item:hover,
.rs-mobile-nav-item.active { color: var(--rs-accent); }
.rs-mobile-nav-item.active { background: rgba(6,182,212,.1); }
.rs-mobile-nav-item:active  { transform: scale(.9); }

/* Mobil body padding-bottom */
@media (max-width: 768px) {
  .rs-mobile-nav { display: flex; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  body.rs-player-open { padding-bottom: calc(60px + var(--rs-player-height, 72px) + env(safe-area-inset-bottom)); }
  .rs-player { bottom: calc(60px + env(safe-area-inset-bottom)) !important; }
}

/* ─── Light mode overrides ───────────────────────────── */
[data-theme="light"] .rs-discovery-card { background: var(--rs-bg-2); }
[data-theme="light"] .rs-now-item       { background: var(--rs-bg-2); }
[data-theme="light"] .rs-cat-hero       { background: var(--rs-bg-2); border-color: var(--rs-border); }
[data-theme="light"] .rs-cta-section    { background: var(--rs-bg-2); }
[data-theme="light"] .rs-cf-btn         { background: var(--rs-bg-2); }
[data-theme="light"] .rs-mobile-nav     { background: rgba(255,255,255,.9); }

/* ════════════════════════════════════════════════════════════
   RS V5 — KATEGORİ SAYFASI TAM YENİDEN TASARIM
   .category-hero · .category-stats · .radio-category-filter
   .category-chip · .radio-grid
════════════════════════════════════════════════════════════ */

/* ── 1. Category Hero ──────────────────────────────────── */
.category-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 44px 40px;
  margin-bottom: 32px;
  border: 1px solid rgba(124,58,237,.25);
  background: rgba(15,12,30,.7);
}

/* Arka plan katmanları */
.category-hero__bg  { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.category-hero__glow {
  position: absolute;
  top: -80px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%);
  filter: blur(40px);
}
.category-hero__wave {
  position: absolute;
  bottom: -40px;
  width: 220%;
  height: 120px;
  border-radius: 50%;
  left: -60%;
  opacity: .035;
}
.category-hero__wave--1 { background: #7c3aed; animation: rs-wave-move 9s linear infinite; }
.category-hero__wave--2 { background: #06b6d4; animation: rs-wave-move 13s linear infinite reverse; left: -40%; }

/* İçerik düzeni */
.category-hero__content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

/* Solda ikon sütunu */
.category-hero__icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.category-hero__icon {
  font-size: 64px;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(124,58,237,.5));
}
.category-hero__eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.category-hero__eq span {
  width: 4px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, #7c3aed, #06b6d4);
  animation: rs-eq .8s ease-in-out infinite alternate;
}
.category-hero__eq span:nth-child(1) { height:40%; animation-delay:.0s; }
.category-hero__eq span:nth-child(2) { height:100%;animation-delay:.12s;}
.category-hero__eq span:nth-child(3) { height:60%; animation-delay:.06s;}
.category-hero__eq span:nth-child(4) { height:80%; animation-delay:.18s;}
.category-hero__eq span:nth-child(5) { height:45%; animation-delay:.03s;}

/* Sağda bilgi sütunu */
.category-hero__info  { flex: 1; min-width: 0; }
.category-hero__badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.category-hero__count-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.3);
  color: #06b6d4;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.category-hero__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.category-hero__desc {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 20px;
  max-width: 560px;
}

/* ── 2. Category Stats — ayrı kartlar ─────────────────── */
.category-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.category-stats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  min-width: 80px;
  transition: background .2s ease, border-color .2s ease;
}
.category-stats__card:hover {
  background: rgba(124,58,237,.15);
  border-color: rgba(124,58,237,.35);
}
.category-stats__card strong {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.category-stats__card span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* Mobil hero */
@media (max-width: 640px) {
  .category-hero            { padding: 24px 18px; }
  .category-hero__content   { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .category-hero__icon      { font-size: 48px; }
  .category-hero__badges    { justify-content: center; }
  .category-hero__desc      { max-width: 100%; }
  .category-stats           { justify-content: center; }
  .category-stats__card     { min-width: 70px; padding: 8px 12px; }
  .category-stats__card strong { font-size: 15px; }
}

/* ── 3. Radio Category Filter — Chip Grid ──────────────── */
.radio-category-filter {
  margin: 0 0 36px;
}
.radio-category-filter__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.radio-category-filter__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin: 0;
  letter-spacing: -.01em;
}
.radio-category-filter__title svg { opacity: .6; flex-shrink: 0; }
.radio-category-filter__meta {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  white-space: nowrap;
}

/* Chip grid — masaüstünde wrap, mobilde yatay scroll */
.radio-category-filter__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── 4. Category Chip ──────────────────────────────────── */
.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.75);
  transition:
    transform .2s cubic-bezier(.34,1.56,.64,1),
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease,
    color .15s ease;
  position: relative;
  overflow: hidden;
}
/* Parlama efekti için pseudo-element */
.category-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(6,182,212,.15));
  opacity: 0;
  transition: opacity .2s ease;
}

/* Hover */
.category-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(124,58,237,.5);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.25);
}
.category-chip:hover::before { opacity: 1; }
.category-chip:hover .category-chip__icon {
  animation: rs-bounce-icon .4s cubic-bezier(.34,1.56,.64,1);
}

/* Aktif */
.category-chip.active {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.4), 0 0 0 1px rgba(124,58,237,.3);
  transform: scale(1.03);
}
.category-chip.active::before { display: none; }
.category-chip.active .category-chip__count {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* Tümü chip özel gradient */
.category-chip--all.active {
  background: linear-gradient(135deg, #f59e0b, #7c3aed);
  box-shadow: 0 4px 20px rgba(245,158,11,.35), 0 0 0 1px rgba(245,158,11,.25);
}

/* Chip içi elemanlar */
.category-chip__icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
}
.category-chip__name {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.category-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  position: relative;
  flex-shrink: 0;
}

/* ── 5. Radio Grid boşluk ──────────────────────────────── */
.radio-grid {
  margin-top: 8px;
}

/* ── 6. Player padding-bottom ──────────────────────────── */
/* Alt player kartların üstüne binmesin */
body {
  padding-bottom: max(80px, env(safe-area-inset-bottom, 0px));
}
@media (max-width: 768px) {
  body {
    /* Mobil nav (60px) + player (~72px) */
    padding-bottom: max(140px, calc(60px + 80px + env(safe-area-inset-bottom, 0px)));
  }
}

/* ── 7. Mobil: yatay scroll gerekirse ──────────────────── */
@media (max-width: 480px) {
  .radio-category-filter__grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* Maskeleme fade kenarı için */
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 92%, transparent 100%);
  }
  .radio-category-filter__grid::-webkit-scrollbar { display: none; }

  .category-chip { flex-shrink: 0; }
  .category-chip__name { max-width: 100px; }
}

/* ── 8. Light mode ─────────────────────────────────────── */
[data-theme="light"] .category-hero {
  background: #fff;
  border-color: rgba(124,58,237,.2);
}
[data-theme="light"] .category-hero__glow {
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
}
[data-theme="light"] .category-hero__title  { color: #1a1a2e; }
[data-theme="light"] .category-hero__desc   { color: #4a4a6a; }
[data-theme="light"] .category-hero__wave--1 { background: #7c3aed; }
[data-theme="light"] .category-hero__wave--2 { background: #06b6d4; }

[data-theme="light"] .category-stats__card {
  background: rgba(124,58,237,.06);
  border-color: rgba(124,58,237,.15);
}
[data-theme="light"] .category-stats__card strong { color: #1a1a2e; }
[data-theme="light"] .category-stats__card span   { color: #6b6b8a; }

[data-theme="light"] .radio-category-filter__header { border-bottom-color: rgba(0,0,0,.08); }
[data-theme="light"] .radio-category-filter__title  { color: #1a1a2e; }
[data-theme="light"] .radio-category-filter__meta   { color: #8888aa; }

[data-theme="light"] .category-chip {
  background: #fff;
  border-color: rgba(124,58,237,.2);
  color: #3a3a5c;
}
[data-theme="light"] .category-chip:hover {
  background: rgba(124,58,237,.07);
  border-color: rgba(124,58,237,.4);
  color: #7c3aed;
}
[data-theme="light"] .category-chip__count {
  background: rgba(124,58,237,.1);
  color: #7c3aed;
}
[data-theme="light"] .category-chip.active .category-chip__count {
  background: rgba(255,255,255,.25);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════
   RS V7 — NOW PLAYING + RANDOM RADIO + MİKRO ANİMASYONLAR
════════════════════════════════════════════════════════════ */

/* ── Now Playing alanı ──────────────────────────────── */
.rs-player-now-playing {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 16px;
  max-width: 220px;
}

@media (max-width: 600px) {
  .rs-player-now-playing { max-width: 130px; }
}

.rs-np-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: rs-np-pulse 1.4s ease-in-out infinite;
}

@keyframes rs-np-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: .45; transform: scale(.75); }
}

.rs-np-text {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity .2s ease;
  display: block;
  max-width: 200px;
}

.rs-np-text.rs-np-updating {
  opacity: 0;
  transition: opacity .2s ease;
}

[data-theme="light"] .rs-np-text { color: rgba(0,0,0,.45); }
[data-theme="light"] .rs-np-dot  { background: #ef4444; }

/* ── Toast bildirimleri ─────────────────────────────── */
.rs-toast {
  position: fixed;
  bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 99998;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(30, 25, 55, 0.95);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rs-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.rs-toast.success { border-color: rgba(16,185,129,.4);  background: rgba(15, 35, 25, .95); }
.rs-toast.error   { border-color: rgba(239,68,68,.4);   background: rgba(35, 15, 15, .95); }
.rs-toast.info    { border-color: rgba(6,182,212,.4);   background: rgba(10, 25, 40, .95); }

/* Mobil player açıkken toast daha yukarı çık */
body.rs-player-open .rs-toast {
  bottom: calc(160px + env(safe-area-inset-bottom, 0px));
}

/* ── Play butonu mikro animasyonları ────────────────── */
.rs-play-btn,
.rs-play-radio {
  transition:
    transform .18s cubic-bezier(.34,1.56,.64,1),
    box-shadow .18s ease !important;
}

.rs-play-btn:not(:disabled):hover,
.rs-play-radio:not(:disabled):hover {
  transform: scale(1.16) !important;
  box-shadow: 0 4px 18px rgba(124,58,237,.5) !important;
}

.rs-play-btn:not(:disabled):active,
.rs-play-radio:not(:disabled):active {
  transform: scale(.94) !important;
}

/* ── Favori kalp animasyonu ─────────────────────────── */
.rs-favorite-btn {
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), color .2s ease !important;
}
.rs-favorite-btn:hover { transform: scale(1.2) !important; }
.rs-favorite-btn.active {
  color: #f43f5e !important;
  animation: rs-heart-pop .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes rs-heart-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* ── Canlı rozeti animasyonu ────────────────────────── */
.rs-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: rs-live-blink 1.3s ease-in-out infinite;
}
@keyframes rs-live-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  50%       { opacity: .6; box-shadow: 0 0 0 5px rgba(239,68,68,.0); }
}

/* ── CTA buton animasyonu ───────────────────────────── */
.rs-cta-section .rs-btn {
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.rs-cta-section .rs-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(124,58,237,.35) !important;
}

/* ── Random buton başarı durumu ─────────────────────── */
.rs-btn-random.rs-btn-success {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}
.rs-btn-random.rs-btn-success::after {
  content: '✓';
  margin-left: 4px;
}

/* ── Saat bazlı öneri section ───────────────────────── */
.rs-time-section { padding: 40px 0; }
.rs-time-header  { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.rs-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  letter-spacing: .04em;
}
.rs-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rs-time-card {
  border-radius: 16px;
  padding: 20px 16px;
  background: var(--rs-bg-2);
  border: 1px solid var(--rs-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rs-time-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.2);
  border-color: rgba(124,58,237,.4);
}
.rs-time-card__icon  { font-size: 32px; }
.rs-time-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--rs-text-3); }
.rs-time-card__title { font-size: 15px; font-weight: 700; color: var(--rs-text); }
.rs-time-card__desc  { font-size: 12px; color: var(--rs-text-3); }
.rs-time-card.rs-time-active {
  border-color: var(--rs-accent);
  background: rgba(6,182,212,.08);
  box-shadow: 0 0 0 1px rgba(6,182,212,.2);
}
.rs-time-card.rs-time-active .rs-time-card__label { color: var(--rs-accent); }

@media (max-width: 700px) { .rs-time-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .rs-time-grid { grid-template-columns: 1fr 1fr; gap: 8px; } }

/* ==========================================================================
   RS SEO — Breadcrumb + Popüler Aramalar stilleri
   ========================================================================== */

/* Breadcrumb */
.rs-breadcrumb {
  padding: 10px 0 6px;
  font-size: 12px;
}
.rs-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}
.rs-breadcrumb-item a {
  color: var(--rs-text-2);
  text-decoration: none;
  transition: color .15s;
}
.rs-breadcrumb-item a:hover { color: var(--rs-primary); }
.rs-breadcrumb-sep { color: var(--rs-text-3); margin: 0 2px; }
.rs-breadcrumb-current { color: var(--rs-text-3); }

/* Popüler Aramalar */
.rs-popular-searches {
  padding: 20px 0 10px;
  border-top: 0.5px solid var(--rs-border);
  margin-top: 24px;
}
.rs-popular-searches-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--rs-text-2);
  margin-bottom: 12px;
}
.rs-popular-searches-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.rs-popular-search-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  border: 0.5px solid var(--rs-border);
  font-size: 12px;
  color: var(--rs-text-2);
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  background: var(--rs-card-bg);
}
.rs-popular-search-tag:hover {
  border-color: var(--rs-primary);
  color: var(--rs-primary);
  background: rgba(124,58,237,.06);
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   END RS SEO
   ========================================================================== */

/* ==========================================================================
   RS Radyo Hakkında — rs-entry-content paragraf stilleri
   ========================================================================== */
.rs-entry-content p {
  color: var(--rs-text-2);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.rs-entry-content p:last-child {
  margin-bottom: 0;
}
.rs-content-block h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--rs-text);
}
/* ==========================================================================
   END RS Radyo Hakkında
   ========================================================================== */

/* ═══════════════════════════════════════════════════════════
   MOBİL RESPONSIVE — DÜZELTME KATMANI (override güvencesi)
   !important ile tüm çakışan kuralları ezer.
═══════════════════════════════════════════════════════════ */

/* ── Sidebar: mobilde ASLA layout genişliği kaplasın ──── */
@media (max-width: 1024px) {
  /* Desktop margin'leri sıfırla */
  body.rs-sidebar-expanded .rs-main-wrapper,
  body.rs-sidebar-collapsed .rs-main-wrapper,
  body.rs-sidebar-hovered  .rs-main-wrapper {
    margin-left: 0 !important;
  }

  /* Desktop expanded player konumunu sıfırla */
  body.rs-sidebar-expanded .rs-player,
  body.rs-sidebar-collapsed .rs-player {
    left: 0 !important;
    width: 100% !important;
  }

  /* Sidebar hover efekti mobilde pasif */
  body.rs-sidebar-hovered .rs-main-wrapper {
    margin-left: 0 !important;
  }
}

/* ── Mobil nav yüksekliği CSS değişkeni ───────────────── */
@media (max-width: 768px) {
  :root {
    --rs-mobile-nav-height: 60px;
    --rs-player-height:     72px;
  }

  /* Sidebar açıkken scroll lock — body doğrudan */
  body.rs-mobile-menu-open {
    overflow: hidden !important;
    touch-action: none;
  }
  /* Sidebar kendi scroll'unu yönetsin */
  body.rs-mobile-menu-open .rs-sidebar {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
  }

  /* Tüm player pozisyon güvencesi */
  .rs-player.visible {
    left:   0 !important;
    right:  0 !important;
    width:  100% !important;
    bottom: calc(var(--rs-mobile-nav-height) + env(safe-area-inset-bottom, 0px)) !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }

  /* Mobile nav z-index güvencesi */
  .rs-mobile-nav {
    z-index: 9490 !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }

  /* Overlay sidebar'ın altında, içeriğin üstünde */
  .rs-sidebar-overlay {
    z-index: 9998 !important;
  }

  /* Sidebar overlay'in üstünde */
  .rs-sidebar {
    z-index: 9999 !important;
  }

  /* Header full width */
  .rs-header {
    left:  0 !important;
    right: 0 !important;
    top:   0 !important;
    width: 100% !important;
    z-index: 9490 !important;
  }

  /* Yatay taşmayı önle */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .rs-main-wrapper {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

/* ==========================================================================
   RS v9 — CTA Bölümü, 320px Mobil Fix, Premium İyileştirmeler
   ========================================================================== */

/* ------------------------------------------------------------------
   CTA Bölümü
   ------------------------------------------------------------------ */
.rs-cta-section { padding: 40px 0; }

.rs-cta-card {
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  border-radius: var(--rs-radius-lg, 20px);
  text-align: center;
}

.rs-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(124,58,237,.18) 0%,
    rgba(6,182,212,.10) 50%,
    rgba(124,58,237,.08) 100%);
  pointer-events: none;
}

.rs-cta-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin-bottom: 16px;
}
.rs-cta-eq span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--rs-primary, #7c3aed), var(--rs-accent, #06b6d4));
  animation: rs-eq-bar 1s ease infinite;
}
.rs-cta-eq span:nth-child(1) { height: 10px; animation-delay: 0s; }
.rs-cta-eq span:nth-child(2) { height: 18px; animation-delay: .2s; }
.rs-cta-eq span:nth-child(3) { height: 12px; animation-delay: .1s; }
.rs-cta-eq span:nth-child(4) { height: 16px; animation-delay: .3s; }
.rs-cta-eq span:nth-child(5) { height: 8px;  animation-delay: .15s; }

.rs-cta-title {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 600;
  color: var(--rs-text);
  margin-bottom: 10px;
}
.rs-cta-desc {
  font-size: 14px;
  color: var(--rs-text-2);
  margin-bottom: 24px;
}
.rs-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rs-cta-btn {
  position: relative;
  overflow: hidden;
  transition: transform .15s ease;
}
.rs-cta-btn:hover { transform: translateY(-2px); }
.rs-cta-btn:active { transform: scale(.97); }

/* ------------------------------------------------------------------
   single-radio — Canlı badge rengi
   ------------------------------------------------------------------ */
.rs-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  color: #f87171;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 9px;
  border-radius: 20px;
}

/* ------------------------------------------------------------------
   320px — Tam mobil fix
   ------------------------------------------------------------------ */
@media (max-width: 360px) {

  /* Hero */
  .rs-hero-content { padding: 20px 14px 24px; }
  .rs-hero-title { font-size: 22px !important; }
  .rs-hero-subtitle { font-size: 13px; }
  .rs-hero-search-inner { flex-direction: column; gap: 8px; padding: 10px; }
  .rs-hero-search-inner input { width: 100%; }
  .rs-hero-search-inner .rs-btn { width: 100%; justify-content: center; }
  .rs-hero-random-wrap { padding: 0 14px; }
  .rs-btn-random-hero { width: 100%; justify-content: center; }
  .rs-hero-cats { gap: 5px; }
  .rs-hero-cat-pill { font-size: 11px; padding: 4px 9px; }
  .rs-hero-stats { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .rs-stat { min-width: calc(50% - 8px); }
  .rs-stat-divider { display: none; }

  /* Kart grid — 1 sütun */
  .rs-radio-grid { grid-template-columns: 1fr !important; gap: 8px; }
  .rs-now-listening-grid { grid-template-columns: 1fr !important; }
  .rs-discovery-grid { grid-template-columns: 1fr 1fr !important; gap: 8px; }

  /* Radyo kartı */
  .rs-radio-card { padding: 10px; }
  .rs-radio-card-logo img { width: 48px; height: 48px; }
  .rs-radio-card-title { font-size: 13px; }
  .rs-radio-card-meta { font-size: 11px; }

  /* Single radio hero */
  .rs-radio-hero-content { flex-direction: column; gap: 14px; padding: 16px; }
  .rs-radio-hero-logo img { width: 80px; height: 80px; border-radius: 14px; }
  .rs-radio-hero-title { font-size: 18px; }
  .rs-radio-hero-actions { flex-wrap: wrap; gap: 8px; }
  .rs-radio-hero-actions .rs-btn-lg { font-size: 13px; padding: 10px 18px; }
  .rs-radio-hero-actions .rs-btn-icon { width: 38px; height: 38px; }

  /* Stat kartları */
  .rs-stat-cards { grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .rs-stat-card { padding: 12px 8px; }
  .rs-stat-value { font-size: 18px; }

  /* Category hero */
  .category-hero__content { flex-direction: column; gap: 12px; padding: 16px; }
  .category-hero__icon { font-size: 36px; width: 64px; height: 64px; }
  .category-hero__title { font-size: 20px; }
  .category-stats { grid-template-columns: 1fr 1fr; gap: 6px; }

  /* Player */
  .rs-player-info { gap: 8px; }
  .rs-player-logo { width: 36px; height: 36px; border-radius: 7px; flex-shrink: 0; }
  .rs-player-name { font-size: 12px; }
  .rs-player-now-playing { font-size: 10px; }
  .rs-player-controls { gap: 4px; }
  .rs-player-btn { width: 28px; height: 28px; }
  .rs-player-play-btn { width: 38px; height: 38px; }

  /* CTA */
  .rs-cta-card { padding: 28px 16px; }
  .rs-cta-title { font-size: 17px; }
  .rs-cta-btns { flex-direction: column; align-items: stretch; }
  .rs-cta-btn { width: 100%; justify-content: center; }

  /* Mobil nav + player çakışma önleme */
  .rs-mobile-nav { padding-bottom: env(safe-area-inset-bottom, 6px); }
  body.rs-player-open .rs-mobile-nav {
    bottom: calc(var(--rs-player-height, 72px) + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Genel overflow önleme */
  .rs-container { padding-left: 14px !important; padding-right: 14px !important; }
  body { overflow-x: hidden; }
  img { max-width: 100%; }
}

/* 320-480 arası ek düzeltmeler */
@media (min-width: 361px) and (max-width: 480px) {
  .rs-radio-grid { grid-template-columns: 1fr 1fr; }
  .rs-hero-title { font-size: 26px; }
  .rs-stat-cards { grid-template-columns: 1fr 1fr; }
  .rs-cta-btns { flex-direction: column; align-items: stretch; }
  .rs-cta-btn { justify-content: center; }
  .rs-radio-hero-actions { flex-wrap: wrap; }
}

/* ==========================================================================
   END RS v9
   ========================================================================== */

/* ==========================================================================
   RS v9 MOCKUP UYGULAMASI — Yeni ve güncellenmiş stiller
   front-page, single-radio, taxonomy-radio_category, 320px mobil
   ========================================================================== */

/* ── Hero: "Sevdiğin radyoyu anında dinle" mockup uyumu ── */
.rs-stat-icon-num {
  font-size: 1.6rem !important;
  -webkit-text-fill-color: initial !important;
  background: none !important;
}

/* ── single-radio.php: Hero içi istatistik kutuları (mockup) ── */
.rs-radio-hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 20px;
}

.rs-radio-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rs-radius-sm);
  min-width: 72px;
  gap: 2px;
}

.rs-radio-hero-stat strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--rs-text);
  letter-spacing: 0.01em;
}

.rs-radio-hero-stat span {
  font-size: 10px;
  font-weight: 600;
  color: var(--rs-text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rs-radio-hero-stat-live strong {
  color: #ef4444;
  animation: rs-live-blink 1.5s ease-in-out infinite;
}

@keyframes rs-live-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

[data-theme="light"] .rs-radio-hero-stat {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
}

/* ── "Şu An Dinlenenler" CANLI rozeti satır içi ── */
.rs-badge-live-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 100px;
  color: #fca5a5;
  vertical-align: middle;
  margin-left: 10px;
  text-transform: uppercase;
}

/* ── front-page hero başlık okunabilirlik düzeltmesi ── */
.rs-hero-title {
  line-height: 1.12;
}

/* ── "Şu An Dinlenenler" grid: mockupla 3 kolon (>900px) ── */
.rs-now-listening-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .rs-now-listening-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .rs-now-listening-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Saat bazlı öneri kartları: mockupla 4 kolon, aktif kart vurgusu ── */
.rs-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.rs-time-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: var(--rs-card-bg);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  text-decoration: none;
  transition: var(--transition);
}

.rs-time-card:hover {
  border-color: var(--rs-accent);
  transform: translateY(-2px);
  background: rgba(6,182,212,0.05);
}

.rs-time-card.rs-time-active {
  border-color: var(--rs-accent);
  background: rgba(6,182,212,0.08);
  box-shadow: 0 0 16px rgba(6,182,212,0.15);
}

.rs-time-card.rs-time-active .rs-time-card__label {
  color: var(--rs-accent);
}

.rs-time-card.rs-time-active .rs-time-card__title {
  color: var(--rs-text);
  font-weight: 800;
}

/* ── Kategori sayfası: chip hover glow ── */
.radio-category-chip:hover,
.radio-category-chip.active {
  box-shadow: 0 0 12px rgba(124,58,237,0.35);
}

/* ── single-radio.php: ilgili radyolar listesi mockup stili ── */
.rs-mini-radio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--rs-radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rs-border);
  margin-bottom: 8px;
  transition: var(--transition);
}

.rs-mini-radio-item:hover {
  border-color: var(--rs-accent);
  background: rgba(6,182,212,0.05);
  transform: translateX(2px);
}

.rs-mini-radio-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.rs-mini-radio-info { flex: 1; min-width: 0; }

.rs-mini-radio-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--rs-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.rs-mini-radio-title:hover { color: var(--rs-accent); }

.rs-mini-radio-cat,
.rs-mini-radio-city {
  display: block;
  font-size: 12px;
  color: var(--rs-text-3);
  margin-top: 2px;
}

.rs-mini-play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}
.rs-mini-play-btn:hover {
  background: var(--rs-accent);
  transform: scale(1.1);
}

[data-theme="light"] .rs-mini-radio-item {
  background: var(--rs-bg-2);
}

/* ── 320px eksiksiz mobil fix (mockup 4. ekran) ── */
@media (max-width: 360px) {
  /* Hero */
  .rs-hero { padding: 56px 0 32px; min-height: auto; }
  .rs-hero-content { padding: 0 14px; }
  .rs-hero-title { font-size: 24px !important; line-height: 1.2; }
  .rs-hero-subtitle { font-size: 13px; margin-bottom: 24px; }

  /* Arama */
  .rs-hero-search { margin-bottom: 14px; }
  .rs-hero-search-inner { flex-direction: column; gap: 8px; padding: 10px; }
  .rs-hero-search-inner input { width: 100%; font-size: 14px; }
  .rs-hero-search-inner .rs-btn { width: 100%; justify-content: center; }

  /* "Bana Radyo Öner" — tam genişlik, belirgin */
  .rs-hero-random-wrap { padding: 0; }
  .rs-btn-random-hero {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    border-radius: var(--rs-radius);
  }

  /* Stats */
  .rs-hero-stats { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .rs-stat { min-width: 64px; }
  .rs-stat-num { font-size: 1.3rem; }
  .rs-stat-divider { display: none; }

  /* Saat kartları: 2 kolon */
  .rs-time-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .rs-time-card { padding: 12px 10px; }
  .rs-time-card__icon { font-size: 22px; }
  .rs-time-card__title { font-size: 13px; }
  .rs-time-card__desc { font-size: 11px; }

  /* Radyo grid: 2 kolon, dar */
  .rs-now-listening-grid { grid-template-columns: 1fr 1fr; }
  .rs-now-item { padding: 8px; gap: 6px; }
  .rs-now-item-logo { width: 36px; height: 36px; }
  .rs-now-item-title { font-size: 11px; }

  /* Radyo kartları grid */
  .rs-radio-grid { grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .rs-radio-card { padding: 10px 8px; }

  /* Single radio hero */
  .rs-radio-hero-content { flex-direction: column; text-align: center; padding: 16px; gap: 12px; }
  .rs-radio-hero-logo img { width: 80px; height: 80px; border-radius: 14px; }
  .rs-radio-hero-title { font-size: 18px; }
  .rs-radio-hero-stats { justify-content: center; }
  .rs-radio-hero-stat { padding: 8px 12px; min-width: 60px; }
  .rs-radio-hero-stat strong { font-size: 0.9rem; }
  .rs-radio-hero-actions { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .rs-radio-hero-actions .rs-btn-lg { font-size: 13px; padding: 10px 16px; }
  .rs-radio-hero-actions .rs-btn-icon { width: 38px; height: 38px; }

  /* Kategori hero */
  .category-hero__content { flex-direction: column; gap: 10px; padding: 14px; }
  .category-hero__icon { font-size: 32px; width: 56px; height: 56px; }
  .category-hero__title { font-size: 18px; }
  .category-stats { grid-template-columns: 1fr 1fr; gap: 6px; }
  .category-stats__card strong { font-size: 16px; }

  /* Chip filtresi yatay scroll */
  .radio-category-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .radio-category-chip { flex-shrink: 0; }

  /* Player */
  .rs-player { padding: 0 10px; }
  .rs-player-logo { width: 36px; height: 36px; }
  .rs-player-name { font-size: 12px; }
  .rs-player-now-playing { font-size: 10px; }
  .rs-player-controls { gap: 4px; }
  .rs-player-btn { width: 28px; height: 28px; }
  .rs-player-play-btn { width: 38px; height: 38px; }

  /* Alt nav + player çakışma */
  .rs-mobile-nav { padding-bottom: env(safe-area-inset-bottom, 6px); }
  body.rs-player-open .rs-mobile-nav {
    bottom: calc(var(--rs-player-height, 72px) + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Genel taşma önleme */
  body { overflow-x: hidden; }
  .rs-container { padding-left: 12px !important; padding-right: 12px !important; }
  * { max-width: 100%; }
}

/* ── 320–480 arası ek kural: Bana Radyo Öner butonu tam genişlik ── */
@media (max-width: 480px) {
  .rs-btn-random-hero {
    width: 100%;
    justify-content: center;
  }
  /* Section padding küçülsün */
  .rs-section { padding: 40px 0; }
  .rs-section-header { margin-bottom: 18px; }
}

/* ==========================================================================
   END RS v9 MOCKUP
   ========================================================================== */

/* ==========================================================================
   RS v9 MOCKUP DEVAM — single-radio & related list
   ========================================================================== */

/* ── single-radio: stat kartları artık hero içinde, ayrı blok gizlendi ── */
/* Ayrı stat-cards bloğu hâlâ sayfada var ama mockupla hero-stats önce gelir */
.rs-stat-cards {
  margin-top: 24px;
  margin-bottom: 32px;
}

/* ── "Radyo Hakkında" opsiyonel blok ── */
.rs-single-about {
  margin-top: 24px;
  padding: 28px 32px;
}
.rs-single-about h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--rs-text);
}

/* ── Benzer radyolar — tam genişlik dikey liste (mockup) ── */
.rs-single-related {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--rs-card-bg);
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius-lg);
  backdrop-filter: blur(10px);
}

.rs-single-related-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rs-border);
}

.rs-single-related-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rs-text);
  margin: 0;
}

.rs-single-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* mini-radio-item zaten tanımlı, burada sadece liste spesifik override */
.rs-single-related-list .rs-mini-radio-item {
  border-radius: 10px;
  margin-bottom: 6px;
  padding: 12px 16px;
}
.rs-single-related-list .rs-mini-radio-item:last-child {
  margin-bottom: 0;
}

[data-theme="light"] .rs-single-related {
  background: var(--rs-bg-2);
}

/* ── Mobil: single related ── */
@media (max-width: 480px) {
  .rs-single-related { padding: 18px 16px; }
  .rs-single-about   { padding: 18px 16px; }
}
@media (max-width: 360px) {
  .rs-single-related { padding: 14px 12px; }
  .rs-single-about   { padding: 14px 12px; }
  .rs-single-related-list .rs-mini-radio-item { padding: 10px 10px; }
}

/* ==========================================================================
   RS v9 MOCKUP screenshot.png preview (HTML'de kullanılmaz, referans CSS)
   ========================================================================== */

/* ==========================================================================
   SINGLE RADIO — Buton taşma ve favori düzeltmesi
   ========================================================================== */

/* Hero kartı overflow görünür olsun, butonlar kırpılmasın */
.rs-radio-hero {
  overflow: visible !important;
}
.rs-radio-hero-bg {
  border-radius: var(--rs-radius-lg);
  overflow: hidden;
}
/* Arka plan blur için ayrı wrapper */
.rs-radio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--rs-radius-lg);
  overflow: hidden;
  z-index: 0;
}

/* Hero içeriği — alt padding artırıldı, butonlar için yer açıldı */
.rs-radio-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start !important;
  gap: 32px;
  padding: 36px 40px 40px !important;
  border-radius: var(--rs-radius-lg);
  overflow: hidden;
}

/* Butonlar satırı — kesinlikle flex wrap, taşmasın */
.rs-radio-hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* "Şimdi Dinle" butonu minimum genişlik */
.rs-radio-hero-actions .rs-btn-lg {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Favori butonu — hero içinde de tam çalışsın */
.rs-radio-hero-actions .rs-favorite-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  transition: all 0.2s ease !important;
  background: rgba(255,255,255,0.08) !important;
  cursor: pointer;
}
.rs-radio-hero-actions .rs-favorite-btn:hover {
  border-color: #ec4899 !important;
  background: rgba(236,72,153,0.15) !important;
}
.rs-radio-hero-actions .rs-favorite-btn.active {
  background: rgba(236,72,153,0.2) !important;
  border-color: #ec4899 !important;
}
.rs-radio-hero-actions .rs-favorite-btn.active svg {
  fill: #ec4899;
  stroke: #ec4899;
}

/* Paylaş ve bozuk yayın butonları */
.rs-radio-hero-actions .rs-btn-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
}
.rs-radio-hero-actions .rs-btn-icon:hover {
  border-color: var(--rs-accent) !important;
  background: rgba(6,182,212,0.15) !important;
}

/* Stat kutuları — daha kompakt */
.rs-radio-hero-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}
.rs-radio-hero-stat {
  padding: 8px 14px;
  min-width: 64px;
}

/* Mobil */
@media (max-width: 640px) {
  .rs-radio-hero-content {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    padding: 24px 20px 28px !important;
    gap: 16px;
  }
  .rs-radio-hero-logo img { width: 100px; height: 100px; }
  .rs-radio-hero-cats { justify-content: center; }
  .rs-radio-hero-actions { justify-content: center; }
  .rs-radio-hero-stats { justify-content: center; }
}

@media (max-width: 360px) {
  .rs-radio-hero-content { padding: 16px 14px 20px !important; }
  .rs-radio-hero-actions .rs-btn-lg { font-size: 13px; padding: 10px 16px; }
}
/* ========================================================================== */
