:root {
  --bg-primary: #0f172a;
  --bg-surface: #1e293b;
  --bg-card: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  --bg-card-hover: linear-gradient(145deg, rgba(51, 65, 85, 0.95), rgba(30, 41, 59, 0.98));
  --accent: #2563eb;
  --accent-glow: rgba(37, 99, 235, 0.35);
  --accent-gold: #fbbf24;
  --accent-red: #f43f5e;
  --accent-green: #10b981;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: linear-gradient(145deg, #ffffff, #f1f5f9);
  --bg-card-hover: linear-gradient(145deg, #f8fafc, #e2e8f0);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #cbd5e1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #0f172a;
  background-image: url('/assets/stadium-pattern.svg'), radial-gradient(circle at center top, #1e293b 0%, #0f172a 100%);
  background-size: cover, cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-main);
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Live Goal Push Notification Toast Banner */
.goal-toast-banner {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 440px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.goal-toast-banner.active {
  top: 14px;
}

.toast-icon {
  font-size: 1.8rem;
  animation: bounce 0.8s infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

.toast-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.toast-desc {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 2px;
}

/* Pulsing Live Dot */
.live-dot-pulse {
  width: 10px;
  height: 10px;
  background-color: var(--accent-red);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse-red 1.6s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Form Group & Input Styling */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group input, 
.form-group select {
  width: 100%;
  background-color: #0b1324;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.form-group input:focus, 
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  background-color: #0f192e;
}

.btn {
  background-color: var(--accent);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  opacity: 0.9;
}

.btn-danger { background-color: var(--accent-red); }
.btn-gold { background-color: var(--accent-gold); color: black; }

/* Auth Card Modal (Estetik Kurumsal Tasarım) */
.auth-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  padding: 32px 24px;
  border-radius: 24px;
  width: 92%;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.auth-icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(30, 41, 59, 0.6));
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Estetik Kurumsal Kayar Duyuru Bandı */
.marquee-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  color: #f8fafc;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.marquee-content {
  display: inline-block;
  animation: marquee 22s linear infinite;
  color: #fbbf24;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* App Header */
.app-header {
  background-color: rgba(19, 27, 46, 0.85);
  backdrop-filter: blur(12px);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-left: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}

.icon-btn:active {
  transform: scale(0.9);
}

/* League Chips */
.league-bar {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  overflow-x: auto;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  scrollbar-width: none;
}

.league-bar::-webkit-scrollbar { display: none; }

.league-chip {
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  background-color: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.league-chip.active {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 12px var(--accent-glow);
}

/* Global Responsive Auto-Scaling Images */
img {
  max-width: 100%;
  height: auto;
}

/* Estetik Kurumsal Reklam & Sponsor Alanı (Tam Otomatik Boyutlanma) */
.banner-ad {
  margin: 14px 16px 0 16px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: block;
  padding: 0;
  backdrop-filter: blur(12px);
  position: relative;
}

.banner-ad a {
  display: block;
  width: 100%;
}

.banner-ad img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.banner-ad img:hover {
  transform: scale(1.02);
}

/* Matches List */
.matches-container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.match-card:hover, .match-card:active {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.league-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-live { background-color: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.4); }
.status-upcoming { background-color: rgba(245, 158, 11, 0.2); color: var(--accent-gold); border: 1px solid rgba(245, 158, 11, 0.4); }
.status-ended { background-color: rgba(148, 163, 184, 0.2); color: var(--text-muted); }

.teams-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.team-logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.team-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vs-score {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-gold);
  padding: 0 12px;
  letter-spacing: 1px;
}

/* Estetik Kurumsal Oran & Sponsor Bahis Butonları */
.odds-bar {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
}

.odds-group {
  display: flex;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

.odds-item {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  padding: 4px 10px;
  border-radius: 8px;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.bet-link {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  font-weight: 900;
  text-decoration: none;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  transition: all 0.2s ease;
}

.bet-link:hover, .bet-link:active {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
}

/* YAYIN ODASI (STREAM ROOM MODAL - KURUMSAL EKRAN) */
.player-screen {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
  background-image: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.15), transparent 70%), url('/assets/stadium-pattern.svg');
  background-size: cover, cover;
  z-index: 99999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.player-screen.active {
  display: flex !important;
}

.player-header {
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.95));
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(251, 191, 36, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.player-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.player-header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.room-match-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-title {
  font-size: 0.96rem;
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: -0.2px;
}

.room-sub-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.tv-channel-badge {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(30, 41, 59, 0.6));
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.4);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.viewers-count-tag {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(15, 23, 42, 0.6));
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.room-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-btn {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.room-btn:hover, .room-btn:active {
  transform: scale(1.08);
  border-color: #fbbf24;
  color: #fbbf24;
}

.room-btn.close-btn {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.5);
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 9999999 !important;
  position: relative !important;
}

.room-btn.close-btn:hover, .room-btn.close-btn:active {
  transform: scale(1.12);
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.video-container {
  width: calc(100% - 24px);
  margin: 10px 12px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 14px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.video-container.expanded {
  width: 100%;
  margin: 0;
  border-radius: 0;
  aspect-ratio: auto;
  height: 60vh;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

/* In-Video Top Floating Controls Bar */
.in-video-controls-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px 8px;
  border-radius: 24px;
  z-index: 30;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.in-video-btn {
  background: transparent;
  border: none;
  color: #f8fafc;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.in-video-btn:active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 0.2);
}

.in-video-btn.quality-pill {
  width: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  font-weight: 800;
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.in-video-btn.expand-pill {
  color: #fbbf24;
}

/* Preroll Ad Layer */
.preroll-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #000;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preroll-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.skip-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.9);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}

/* Stream Pill Selector Bar (Disabled / Hidden) */
.stream-controls, #stream-servers-bar {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.stream-controls::-webkit-scrollbar { display: none; }

.stream-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.stream-btn.active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-color: #3b82f6;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

/* Room Tabs (Ultra-Compact & Aesthetic Icon-Only Bar) */
.detail-tabs {
  display: flex;
  background: rgba(11, 17, 32, 0.85);
  padding: 4px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  gap: 8px;
  align-items: center;
  justify-content: space-around;
}

.tab-btn {
  flex: 1;
  height: 28px;
  padding: 0;
  text-align: center;
  font-size: 0.95rem;
  color: #94a3b8;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.tab-btn:hover {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(217, 119, 6, 0.14));
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

/* All Player Tab Contents: Fixed Consistent Height & Smooth Scroll */
.player-tab-content {
  height: 270px;
  max-height: 270px;
  min-height: 270px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

#player-tab-chat {
  display: flex;
  flex-direction: column;
  height: 270px;
  max-height: 270px;
  min-height: 270px;
  overflow: hidden;
  padding: 0;
}

.chat-box {
  flex: 1;
  height: 196px;
  max-height: 196px;
  min-height: 196px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.chat-msg {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.35;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.chat-user {
  font-weight: 800;
  color: #60a5fa;
  margin-right: 6px;
}

.chat-vip {
  color: var(--accent-gold);
}

/* Quick Emoji Bar (Ultra-Compact & Aesthetic) */
.quick-emoji-bar {
  display: flex;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(11, 17, 32, 0.85);
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  scrollbar-width: none;
}

.quick-emoji-bar::-webkit-scrollbar { display: none; }

.quick-emoji-bar span {
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
}

.quick-emoji-bar span:hover {
  background: rgba(51, 65, 85, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.quick-emoji-bar span:active {
  transform: scale(0.94);
}

/* Chat Input Bar (Ultra-Compact & Aesthetic) */
.chat-input-bar {
  padding: 6px 10px;
  background: rgba(11, 17, 32, 0.95);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input-bar input {
  flex: 1;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 14px;
  border-radius: 18px;
  color: #f8fafc;
  font-size: 0.78rem;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
  transition: border-color 0.2s;
}

.chat-input-bar input:focus {
  border-color: #3b82f6;
  background: rgba(30, 41, 59, 0.85);
}

.chat-send-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

.chat-send-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.6);
}

.chat-send-btn:active {
  transform: scale(0.92);
}

/* Stats Progress Cards */
.stats-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
}

.stat-bar-group {
  margin-bottom: 12px;
}

.stat-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-bar {
  height: 8px;
  background-color: var(--bg-primary);
  border-radius: 4px;
  overflow: hidden;
}

.stat-fill-left {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 4px;
}

/* Bottom Nav */
.bottom-nav {
  background-color: rgba(19, 27, 46, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  position: sticky;
  bottom: 0;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
}

.nav-link.active {
  color: var(--accent);
}

/* Dynamic Watermark Overlay (Disabled) */
.dynamic-watermark {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* Live Odds Row & Badges */
.live-odds-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.odds-badge {
  flex: 1;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.odds-badge:hover {
  transform: translateY(-2px);
  background: rgba(245, 158, 11, 0.3);
}

/* Standings Table Style */
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.standings-table th, .standings-table td {
  padding: 8px 6px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.standings-table th {
  color: var(--text-muted);
  font-weight: 700;
}

.standings-table tr:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
