@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #080810;
  --surface: #0f0f1a;
  --surface2: #16162a;
  --surface3: #1e1e35;
  --accent: #e11d48;
  --accent2: #fb4d6e;
  --accent-glow: rgba(225,29,72,0.25);
  --sport: #f59e0b;
  --text: #f0f0f8;
  --muted: #5a5a7a;
  --muted2: #8080a0;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --radius: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}

/* ── HEADER ── */
#header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.logo span { color: var(--accent); }

.header-nav { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.18s; text-decoration: none;
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent-glow); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }

.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-danger { background: rgba(225,29,72,0.15); color: var(--accent); border: 1px solid rgba(225,29,72,0.3); }
.btn-danger:hover { background: rgba(225,29,72,0.3); }

/* ── USER MENU ── */
.user-menu {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; position: relative;
}
.user-avatar-sm {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.user-avatar-placeholder {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface3);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--accent);
}
.user-name-sm { font-size: 13px; font-weight: 600; }
.streamer-badge {
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
  letter-spacing: 0.5px;
}

.dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 180px;
  display: none;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.dropdown.open { display: block; }
.dropdown-item {
  padding: 9px 12px; border-radius: 6px;
  font-size: 13px; cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; gap: 8px;
}
.dropdown-item:hover { background: var(--surface3); }
.dropdown-item.danger { color: var(--accent); }
.dropdown-sep { height: 1px; background: var(--border); margin: 4px 0; }

/* ── HOME PAGE ── */
.home-hero {
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 700px; margin: 0 auto;
}
.home-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 16px;
}
.home-hero h1 span { color: var(--accent); }
.home-hero p { color: var(--muted2); font-size: 16px; }

.channels-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 24px;
}

.channel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none; color: inherit;
  display: block;
}
.channel-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.channel-thumb {
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  overflow: hidden;
}
.channel-thumb-inner {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 40%, #1a0010 0%, #050008 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.offline-icon { font-size: 36px; opacity: 0.3; }
.offline-text { font-size: 13px; color: var(--muted); }

.live-overlay {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  background: var(--accent);
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: #fff;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1.3s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.viewer-overlay {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.75);
  padding: 3px 10px; border-radius: 6px;
  font-size: 12px; color: #fff;
  display: flex; align-items: center; gap: 5px;
}

.channel-info {
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.channel-avatar-wrap { position: relative; flex-shrink: 0; }
.channel-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--surface3);
}
.channel-avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--accent);
  border: 2px solid var(--border2);
}
.live-ring { border-color: var(--accent) !important; box-shadow: 0 0 0 3px var(--accent-glow); }
.channel-meta { flex: 1; min-width: 0; }
.channel-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.channel-status { font-size: 12px; color: var(--muted2); }

/* ── STREAM PAGE ── */
.stream-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto 1fr;
  min-height: calc(100vh - 60px);
  max-width: 1600px; margin: 0 auto;
}

.stream-main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

.video-container {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  border: 1px solid var(--border);
}
.video-container video { width: 100%; height: 100%; display: block; object-fit: contain; }
.video-offline {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: radial-gradient(ellipse at center, #120020 0%, #05000a 100%);
  color: var(--muted);
}
.video-offline .big-icon { font-size: 52px; opacity: 0.25; }
.video-offline p { font-size: 14px; }

/* Контролы плеера */
.player-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.player-controls.visible, .video-container:hover .player-controls {
  opacity: 1; pointer-events: all;
}
.player-left, .player-right { display: flex; align-items: center; gap: 8px; }
.player-btn {
  background: none; border: none; cursor: pointer;
  font-size: 18px; padding: 4px; color: #fff;
  line-height: 1; transition: transform 0.1s;
}
.player-btn:hover { transform: scale(1.15); }
.volume-slider {
  -webkit-appearance: none; appearance: none;
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.3); border-radius: 2px; outline: none; cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: #fff; cursor: pointer;
}
.player-live-badge {
  background: #e11d48; color: #fff; font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 4px;
}

/* Фуллскрин */
.video-container:fullscreen { border-radius: 0; }
.video-container:-webkit-full-screen { border-radius: 0; }

.stream-title-row {
  display: flex; align-items: center; gap: 14px;
}
.stream-streamer-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border2);
  flex-shrink: 0;
}
.stream-streamer-avatar-ph {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--accent);
  border: 2px solid var(--border2); flex-shrink: 0;
}
.stream-title-info h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.stream-title-info .sub { font-size: 13px; color: var(--muted2); display: flex; align-items: center; gap: 10px; }

.live-badge-inline {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 9px; border-radius: 5px;
}
.offline-badge-inline {
  display: inline-flex; align-items: center; gap: 5px;
  background: #374151; color: #9ca3af;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 9px; border-radius: 5px;
}
.offline-dot-sm {
  width: 6px; height: 6px; border-radius: 50%; background: #9ca3af;
}
.offline-badge-overlay {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  background: #374151cc;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: #9ca3af;
}
.live-badge-overlay {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  background: #e11d48cc;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: #fff;
}
.offline-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #9ca3af;
}
.chat-msg { position: relative; }
.chat-delete-btn {
  display: none;
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: rgba(239,68,68,0.15);
  border: none; border-radius: 4px;
  color: #ef4444; font-size: 11px; font-weight: 700;
  width: 20px; height: 20px; cursor: pointer;
  align-items: center; justify-content: center;
  line-height: 1;
}
.chat-msg:hover .chat-delete-btn { display: flex; }

/* ── BANNERS ── */
.banners-section { display: flex; flex-direction: column; gap: 8px; }
.banners-title { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }

.banner-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: var(--surface);
  cursor: pointer; text-decoration: none; color: var(--text);
  transition: all 0.18s;
}
.banner-item:hover { background: var(--surface2); transform: translateX(4px); border-color: var(--accent); }
.banner-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.banner-item-title { flex: 1; font-size: 14px; font-weight: 600; }
.banner-item-url { font-size: 11px; color: var(--muted2); }
.banner-arrow { color: var(--muted); font-size: 16px; }

/* ── CHAT SIDEBAR ── */
.chat-sidebar {
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  height: calc(100vh - 60px);
  position: sticky; top: 60px;
}
.chat-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.chat-header-title { font-size: 13px; font-weight: 700; color: var(--muted2); letter-spacing: 0.5px; text-transform: uppercase; }
.viewers-count { font-size: 13px; font-weight: 600; color: var(--accent2); display: flex; align-items: center; gap: 5px; }

.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 12px 14px;
  display: flex; flex-direction: column-reverse; gap: 10px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 2px; }

.chat-msg { display: flex; gap: 8px; align-items: flex-start; }
.chat-msg-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; margin-top: 1px;
}
.chat-msg-avatar-ph {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--accent);
  flex-shrink: 0; margin-top: 1px;
}
.chat-msg-body { flex: 1; min-width: 0; }
.chat-msg-user { font-size: 12px; font-weight: 700; color: var(--accent2); margin-bottom: 2px; }
.chat-msg-user.is-streamer { color: var(--sport); }
.chat-msg-text { font-size: 13px; color: #c8c8e8; line-height: 1.45; word-break: break-word; }

.chat-input-area {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-input-wrap { position: relative; }
.chat-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 10px 44px 10px 12px;
  color: var(--text);
  font-size: 13px;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.chat-input:focus { border-color: var(--accent); }
.chat-input::placeholder { color: var(--muted); }
.chat-send-btn {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--accent); font-size: 18px; padding: 4px;
  transition: transform 0.15s;
}
.chat-send-btn:hover { transform: translateY(-50%) scale(1.2); }
.chat-login-prompt {
  text-align: center; font-size: 13px; color: var(--muted2); padding: 8px 0;
}
.chat-login-prompt span { color: var(--accent); cursor: pointer; font-weight: 600; }
.chat-login-prompt span:hover { text-decoration: underline; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.hidden { display: none; }

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%; max-width: 400px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 22px; line-height: 1;
  transition: color 0.15s;
}
.modal-close-btn:hover { color: var(--text); }
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 2px;
  margin-bottom: 6px;
}
.modal-sub { font-size: 13px; color: var(--muted2); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 700; color: var(--muted2); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 7px; }
.form-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--muted); }
.form-error { font-size: 12px; color: var(--accent); margin-top: 8px; min-height: 16px; }

.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.modal-switch { text-align: center; font-size: 13px; color: var(--muted2); margin-top: 16px; }
.modal-switch span { color: var(--accent); cursor: pointer; font-weight: 600; }
.modal-switch span:hover { text-decoration: underline; }

/* ── PROFILE / CABINET ── */
.cabinet-layout {
  max-width: 900px; margin: 0 auto; padding: 40px 24px;
}
.cabinet-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 2px; margin-bottom: 32px;
}
.cabinet-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.cabinet-section-title { font-size: 14px; font-weight: 700; color: var(--muted2); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }

.avatar-upload-row { display: flex; align-items: center; gap: 20px; }
.current-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--border2);
}
.current-avatar-ph {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: var(--accent);
  border: 3px solid var(--border2);
}
.avatar-upload-info p { font-size: 13px; color: var(--muted2); margin-top: 4px; }

.file-input-wrap { position: relative; display: inline-block; }
.file-input-wrap input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.banners-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.banner-edit-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.banner-edit-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.banner-edit-info { flex: 1; min-width: 0; }
.banner-edit-title { font-size: 14px; font-weight: 600; }
.banner-edit-url { font-size: 11px; color: var(--muted2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.add-banner-form {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.add-banner-row { display: flex; gap: 10px; }
.color-picker-wrap { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted2); }
.color-picker-wrap input[type=color] { width: 32px; height: 32px; border: none; border-radius: 6px; cursor: pointer; background: none; padding: 0; }

/* ── TOAST ── */
#toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: slideIn 0.25s ease;
  max-width: 300px;
}
.toast.success { border-color: rgba(34,197,94,0.4); color: #86efac; }
.toast.error { border-color: rgba(225,29,72,0.4); color: #fda4af; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ── UTILS ── */
.hidden { display: none !important; }
.text-muted { color: var(--muted2); }
.text-accent { color: var(--accent); }
.w-full { width: 100%; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

@media (max-width: 900px) {
  .stream-layout { grid-template-columns: 1fr; }
  .chat-sidebar { height: 400px; position: static; }
  .channels-grid { grid-template-columns: 1fr; }
}

/* ── BANNER IMAGE ── */
.banner-image-item {
  display: block; position: relative; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border2);
  text-decoration: none; cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}
.banner-image-item:hover { transform: translateY(-2px); border-color: var(--accent); }
.banner-image { display: block; width: 100%; height: auto; max-height: 120px; object-fit: cover; }
.banner-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 16px 12px 8px;
  color: #fff; font-size: 13px; font-weight: 600;
  opacity: 0; transition: opacity 0.15s;
}
.banner-image-item:hover .banner-image-overlay { opacity: 1; }

/* ── HEADER NAV ── */
.header-main-nav {
  display: flex; gap: 8px; align-items: center;
}
.header-nav-link {
  font-size: 14px; font-weight: 500; color: var(--muted2);
  cursor: pointer; padding: 6px 12px; border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.header-nav-link:hover { color: var(--text); background: var(--surface2); }

/* ── SCHEDULE PAGE ── */
.schedule-page {
  max-width: 680px; margin: 0 auto; padding: 32px 16px;
}
.schedule-page-title {
  font-size: 26px; font-weight: 700; margin-bottom: 32px;
  color: var(--text);
}
.schedule-group { margin-bottom: 32px; }
.schedule-group-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--accent); margin-bottom: 12px;
  border-bottom: 1px solid var(--border); padding-bottom: 8px;
}
.schedule-match-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}
.schedule-match-card:hover { border-color: var(--accent); }
.schedule-team-img {
  width: 64px; height: 64px; object-fit: contain;
  border-radius: 0; background: transparent;
}
.schedule-vs {
  font-size: 20px; font-weight: 900; color: var(--accent);
  flex-shrink: 0; letter-spacing: 2px;
}
.schedule-time {
  margin-left: auto; font-size: 16px; font-weight: 600;
  color: var(--text); white-space: nowrap;
}

/* ── HEADER MOBILE FIXES ── */
@media (max-width: 700px) {
  .header-main-nav {
    display: none;
  }
  .header-inner {
    flex-wrap: wrap;
  }
}
@media (min-width: 701px) and (max-width: 900px) {
  .header-nav-link {
    font-size: 13px;
    padding: 5px 8px;
  }
}
