/* KISS Radio - Dark Theme Prototype */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --accent: #cc0000;
  --accent-hover: #e60000;
  --accent-dark: #990000;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-input: #1e1e1e;
  --border: #2a2a2a;
  --border-light: #333333;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --text-dim: #444444;
  --success: #00cc66;
  --warning: #ffaa00;
  --info: #3399ff;
  --gradient-accent: linear-gradient(135deg, #cc0000, #ff3333);
  --gradient-dark: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 4px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: 80px;
  padding-bottom: 80px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; }

/* Buttons */
button, .btn {
  cursor: pointer;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(204,0,0,0.4); }
.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--text-muted); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius); }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 50%; }

/* Inputs */
input, select, textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 100%;
  background: var(--bg-input);
  color: var(--text-primary);
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.15);
}
input::placeholder { color: var(--text-muted); }
label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 14px; color: var(--text-secondary); }
.form-group { margin-bottom: 20px; }
select option { background: var(--bg-card); color: var(--text-primary); }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 32px;
}
.header-logo {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  margin-right: 24px;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(204,0,0,0.3), 2px 2px 0 rgba(255,255,255,0.15);
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo:hover { color: var(--accent); text-decoration: none; }

.header-live {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
  padding: 8px 16px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.header-live .live-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 8px var(--accent);
}
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 8px var(--accent); } 50% { opacity: .4; box-shadow: 0 0 2px var(--accent); } }

.header-live .play-btn {
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.header-live .play-btn:hover { background: var(--accent-hover); transform: scale(1.1); }

.header-song-info {
  font-size: 13px;
  line-height: 1.4;
  margin-right: auto;
  min-width: 0;
  flex-shrink: 1;
}
.header-song-info .current { font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-song-info .prev { color: var(--text-muted); font-size: 11px; }

.header-show {
  font-size: 12px;
  color: var(--text-secondary);
  margin-right: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  gap: 2px;
  margin-right: 16px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.2s;
}
.header-nav a:hover,
.header-nav a.active {
  background: rgba(204,0,0,0.15);
  color: var(--accent);
  text-decoration: none;
}

.header-search {
  margin-right: 12px;
  flex-shrink: 0;
}
.header-search button {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  border-radius: 50%;
  font-size: 16px;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.header-search button:hover { background: var(--bg-card-hover); color: #fff; }

.header-auth { white-space: nowrap; flex-shrink: 0; }
.header-auth .user-name { font-size: 13px; margin-right: 8px; font-weight: 600; color: var(--accent); }

/* Search Modal */
.search-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.search-overlay.hidden { display: none; }
.search-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow);
}
.search-box input {
  font-size: 20px;
  padding: 16px 20px;
  background: var(--bg-primary);
}

/* ==================== PLAYER BAR ==================== */
.player-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 16px;
}
.player-bar .player-play {
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: all 0.2s;
}
.player-bar .player-play:hover { background: var(--accent-hover); transform: scale(1.05); }
.player-bar .player-song { flex: 1; min-width: 0; }
.player-bar .player-song .title { font-weight: 700; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-bar .player-song .artist { font-size: 12px; color: var(--text-muted); }
.player-bar .player-prev,
.player-bar .player-next {
  width: 36px; height: 36px;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}
.player-bar .player-prev:hover,
.player-bar .player-next:hover { background: var(--bg-card); color: #fff; }
.player-bar .player-progress {
  flex: 1; max-width: 360px;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.player-bar .player-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 0%;
  transition: width 0.2s linear;
}
.player-bar .player-time { font-size: 11px; color: var(--text-muted); white-space: nowrap; min-width: 90px; text-align: center; font-variant-numeric: tabular-nums; }
.player-bar .player-volume { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.player-bar .player-volume .vol-icon { color: var(--text-secondary); font-size: 14px; }
.player-bar .player-volume input[type=range] {
  width: 100px;
  -webkit-appearance: none;
  background: var(--border-light);
  height: 4px;
  border-radius: 2px;
  border: none;
  padding: 0;
}
.player-bar .player-volume input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
.player-bar .player-live-badge {
  background: var(--accent);
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* ==================== LAYOUT ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { margin-bottom: 48px; }
.section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: '';
  width: 4px;
  height: 28px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-link { font-size: 14px; color: var(--accent); font-weight: 600; margin-top: 16px; display: inline-flex; align-items: center; gap: 4px; }
.section-link:hover { color: var(--accent-hover); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ==================== CARDS ==================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow); }
a.card { color: inherit; }
a.card:hover { text-decoration: none; }
.card-img {
  width: 100%;
  height: 200px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(26,26,26,0.8));
}
.card-body { padding: 20px; }
.card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.card-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.card-meta { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* Badges */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-premium { background: var(--warning); color: #000; }
.badge-login { background: var(--accent); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-cat { background: rgba(204,0,0,0.15); color: var(--accent); }
.badge-exclusive { background: rgba(153,0,204,0.2); color: #cc66ff; }
.badge-live { background: var(--accent); color: #fff; animation: pulse-badge 2s infinite; }
@keyframes pulse-badge { 0%,100% { opacity: 1; } 50% { opacity: .7; } }

/* ==================== CAROUSEL ==================== */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.carousel-slides { display: flex; transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-slide {
  min-width: 100%;
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--accent), #ff3333);
  color: #fff;
  position: relative;
}
.carousel-slide::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}
.carousel-slide > * { position: relative; z-index: 1; }
.carousel-slide h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; line-height: 1.2; }
.carousel-slide p { font-size: 18px; margin-bottom: 24px; opacity: .9; max-width: 600px; }
.carousel-slide .btn { background: #fff; color: var(--accent); font-weight: 700; padding: 14px 32px; }
.carousel-slide .btn:hover { background: #f0f0f0; }
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.carousel-dots .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.carousel-dots .dot.active { background: #fff; transform: scale(1.2); }

/* ==================== SCHEDULE ==================== */
.schedule-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}
.schedule-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  min-width: 220px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.schedule-item:hover { border-color: var(--border-light); }
.schedule-item.now { border-left: 4px solid var(--accent); background: rgba(204,0,0,0.05); }
.schedule-item .time { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.schedule-item .name { font-weight: 700; font-size: 15px; margin: 4px 0; }
.schedule-item .mod { font-size: 12px; color: var(--text-secondary); }

/* ==================== PLAYLIST TABLE ==================== */
.playlist-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.playlist-table th,
.playlist-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.playlist-table th {
  background: var(--bg-secondary);
  font-weight: 700;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.playlist-table tr:hover { background: rgba(204,0,0,0.03); }
.playlist-table tr:last-child td { border-bottom: none; }

/* Star rating - NO LOGIN REQUIRED */
.star-rating { color: var(--text-dim); cursor: pointer; font-size: 18px; white-space: nowrap; }
.star-rating .star { transition: color 0.15s; display: inline-block; }
.star-rating .star.filled { color: var(--warning); }
.star-rating .star:hover,
.star-rating:hover .star { color: var(--warning); }
.star-rating .star:hover ~ .star { color: var(--text-dim); }

/* ==================== CHART / HITPARADA ==================== */
.chart-list {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.chart-row {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background 0.2s;
}
.chart-row:hover { background: rgba(204,0,0,0.03); }
.chart-row:last-child { border-bottom: none; }
.chart-pos { font-size: 24px; font-weight: 900; width: 40px; text-align: center; color: var(--text-muted); }
.chart-row:nth-child(1) .chart-pos { color: var(--accent); }
.chart-row:nth-child(2) .chart-pos { color: var(--text-secondary); }
.chart-row:nth-child(3) .chart-pos { color: var(--text-secondary); }
.chart-move { width: 28px; text-align: center; font-size: 14px; font-weight: 700; }
.chart-move.up { color: var(--success); }
.chart-move.down { color: var(--accent); }
.chart-move.new { color: var(--info); font-size: 11px; }
.chart-info { flex: 1; }
.chart-info .artist { font-weight: 700; }
.chart-info .song { color: var(--text-secondary); font-size: 13px; }

/* ==================== MODERATORS ==================== */
.mod-card { text-align: center; }
.mod-card .mod-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 3px solid var(--border);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  transition: border-color 0.3s;
}
.mod-card:hover .mod-photo { border-color: var(--accent); }

/* ==================== CALENDAR ==================== */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.cal-header {
  background: var(--accent);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}
.cal-day {
  padding: 12px;
  min-height: 90px;
  font-size: 13px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s;
}
.cal-day:hover { background: var(--bg-card-hover); }
.cal-day .day-num { font-weight: 700; margin-bottom: 6px; }
.cal-day .event-dot {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  display: inline-block;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.cal-day .event-dot:hover { background: var(--accent-hover); }
.cal-day.other-month { background: var(--bg-primary); color: var(--text-dim); }
.cal-day.today { border-color: var(--accent); }

/* ==================== TABS ==================== */
.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}
.tab {
  padding: 12px 24px;
  font-size: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: inherit;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab:hover { color: var(--text-secondary); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ==================== FILTERS ==================== */
.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow);
}
.modal h3 { margin-bottom: 16px; font-size: 22px; }
.modal p { color: var(--text-secondary); margin-bottom: 24px; font-size: 14px; }
.modal .btn { margin: 0 6px; }

/* ==================== PREMIUM ==================== */
.premium-blur { position: relative; }
.premium-blur .blurred { filter: blur(6px); user-select: none; pointer-events: none; }
.premium-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.8);
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
}
.premium-overlay p { font-weight: 700; font-size: 18px; margin-bottom: 16px; }

/* ==================== POLL ==================== */
.poll-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.poll-bar .label { width: 160px; font-size: 13px; text-align: right; color: var(--text-secondary); }
.poll-bar .bar-wrap { flex: 1; background: var(--bg-secondary); border-radius: var(--radius-xs); height: 28px; overflow: hidden; }
.poll-bar .bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  transition: width 0.5s ease;
}

/* ==================== VIDEO ==================== */
.video-thumb { position: relative; cursor: pointer; }
.video-thumb .play-overlay {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  background: rgba(204,0,0,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
  z-index: 1;
  transition: all 0.3s;
}
.video-thumb:hover .play-overlay { background: var(--accent-hover); transform: translate(-50%,-50%) scale(1.1); }

/* Video preroll */
.video-preroll {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.95);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10;
  border-radius: var(--radius);
}
.video-preroll .preroll-label {
  background: var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.video-preroll .preroll-countdown {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.video-preroll .preroll-skip {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==================== COUNTDOWN ==================== */
.countdown {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  text-align: center;
  margin: 20px 0;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(204,0,0,0.3);
}

/* ==================== CATCH-UP TIMELINE ==================== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border-light);
}
.timeline-item {
  position: relative;
  margin-bottom: 16px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 20px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border-light);
  border: 2px solid var(--bg-primary);
}
.timeline-item.now::before {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 48px 0 120px;
  font-size: 13px;
}
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 15px; font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.site-footer a { color: var(--text-secondary); transition: color 0.2s; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.footer-newsletter { display: flex; gap: 8px; margin-top: 12px; }
.footer-newsletter input { flex: 1; padding: 10px 14px; font-size: 13px; }
.footer-newsletter .btn { flex-shrink: 0; }
.footer-bottom { margin-top: 36px; text-align: center; color: var(--text-dim); padding-top: 24px; border-top: 1px solid var(--border); }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }

/* ==================== QUIZ ==================== */
.quiz-timer {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 4px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
}
.quiz-timer.warning { border-color: var(--warning); color: var(--warning); animation: shake 0.5s; }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.quiz-option {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quiz-option:hover { border-color: var(--accent); background: rgba(204,0,0,0.05); }
.quiz-option.selected { border-color: var(--accent); background: rgba(204,0,0,0.1); }
.quiz-option.correct { border-color: var(--success); background: rgba(0,204,102,0.1); }
.quiz-option.wrong { border-color: var(--accent); background: rgba(204,0,0,0.1); opacity: 0.6; }
.quiz-option .option-letter {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

/* Leaderboard */
.leaderboard { width: 100%; }
.leaderboard-row {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.leaderboard-row:nth-child(1) { background: rgba(204,0,0,0.05); }
.leaderboard-rank { width: 36px; font-size: 18px; font-weight: 900; color: var(--text-muted); text-align: center; }
.leaderboard-row:nth-child(1) .leaderboard-rank { color: var(--accent); }
.leaderboard-name { flex: 1; font-weight: 600; }
.leaderboard-score { font-weight: 800; color: var(--accent); }

/* ==================== FREQUENCY MAP ==================== */
.freq-map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}
.freq-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.freq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.freq-item .city { font-weight: 700; }
.freq-item .freq { color: var(--accent); font-weight: 800; font-size: 18px; }

/* ==================== NEWSLETTER BLOCK ==================== */
.newsletter-block {
  background: var(--gradient-accent);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 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='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 20L20 0h20v20L20 40H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.newsletter-block > * { position: relative; z-index: 1; }
.newsletter-block h2 { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.newsletter-block p { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form .btn { background: #fff; color: var(--accent); font-weight: 700; }
.newsletter-form .btn:hover { background: #f0f0f0; }

/* ==================== PODCAST ==================== */
.podcast-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
}
.podcast-cover {
  width: 120px; height: 120px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
}
.podcast-info { flex: 1; }
.podcast-platforms { display: flex; gap: 8px; margin-top: 12px; }

/* ==================== CONTACT ==================== */
.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-block h3 { margin-bottom: 16px; color: var(--accent); }

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.hidden { display: none !important; }

/* Module disabled overlay */
.module-disabled-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.95);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
}
.module-disabled-msg { text-align: center; padding: 40px; }
.module-disabled-msg h2 { margin-bottom: 12px; }
.module-disabled-msg p { margin-bottom: 24px; color: var(--text-secondary); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
  .header-show { display: none; }
  .header-search { display: none; }
  .site-header { padding: 0 16px; height: 70px; }
  .header-logo { font-size: 28px; margin-right: 16px; }
  .container { padding: 0 16px; }
  .carousel-slide { padding: 40px 24px; }
  .carousel-slide h2 { font-size: 24px; }
  .newsletter-block { padding: 32px 20px; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .player-bar .player-progress { display: none; }
  .player-bar .player-time { display: none; }
}

/* Grouped navigation dropdowns */
.nav-group { position: relative; display: inline-flex; }
.nav-group-label { color: rgba(255,255,255,0.7); padding: 8px 12px; cursor: pointer; font-size: 14px; transition: color 0.2s; }
.nav-group-label:hover { color: #fff; }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: #1a1a1a; border: 1px solid #333; border-radius: 8px; min-width: 160px; padding: 8px 0; z-index: 100; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.nav-group:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 8px 16px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; white-space: nowrap; }
.nav-dropdown a:hover { background: rgba(204,0,0,0.15); color: #fff; }
