:root {
  /* HSL Color System - Deep Slate & Premium Dark UI */
  --bg-base: #08090d;
  --bg-surface: #10121a;
  --bg-surface-hover: #161925;
  --bg-input: #151824;
  --bg-card: rgba(16, 18, 26, 0.6);
  --bg-card-hover: rgba(22, 25, 37, 0.85);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  
  --accent: #5c60f5;
  --accent-hover: #474adb;
  --accent-glow: rgba(92, 96, 245, 0.25);
  --accent-gradient: linear-gradient(135deg, #6366f1, #a855f7);
  
  --border-color: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.1);
  --border-glass: rgba(255, 255, 255, 0.06);
  
  --success: #10b981;
  --error: #f43f5e;
  --warning: #f59e0b;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-family: 'Inter', 'Outfit', sans-serif;
}

[data-theme="light"] {
  --bg-base: #f1f5f9;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f8fafc;
  --bg-input: #e2e8f0;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --border-color: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);
  --border-glass: rgba(0, 0, 0, 0.05);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.18);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.32);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.18) transparent;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-base);
  color: var(--text-primary);
  height: 100vh;
  overflow: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

/* Glassmorphism Utility */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
}

/* Main Layout Grid */
.app-container {
  display: flex;
  height: 100dvh;
  position: relative;
  background-color: var(--bg-base);
}

/* Side Dock Navigation (Desktop) */
.nav-dock {
  width: 80px;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  z-index: 100;
  transition: width var(--transition-normal), background var(--transition-normal);
}

.nav-dock:hover {
  width: 200px;
}

.nav-brand {
  margin-bottom: 24px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-glass);
  box-shadow: 0 4px 15px rgba(92, 96, 245, 0.2);
  transition: transform var(--transition-normal);
  object-fit: cover;
}

.nav-dock:hover .brand-logo {
  transform: rotate(15deg) scale(1.05);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 0 10px;
}

.nav-link {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.nav-link span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-dock:hover .nav-link span {
  opacity: 1;
  transform: translateX(0);
}

.nav-link:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.nav-link.active {
  background: rgba(92, 96, 245, 0.12);
  color: var(--accent);
}

.nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background-color: var(--accent);
  border-radius: 0 4px 4px 0;
}

.nav-footer {
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: center;
}

.nav-dock:hover .nav-footer {
  justify-content: flex-start;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.nav-dock:hover .icon-btn {
  justify-content: flex-start;
}

.icon-btn:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

/* Main Content Area */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
  background-image: radial-gradient(circle at top right, rgba(92, 96, 245, 0.03), transparent 45%);
}

/* Global Top Header */
.global-header {
  height: 70px;
  border-bottom: 1px solid var(--border-color);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-base);
  z-index: 10;
}

.header-search {
  position: relative;
  width: 400px;
  max-width: 100%;
}

.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.header-search input {
  width: 100%;
  padding: 10px 14px 10px 44px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all var(--transition-fast);
}

.header-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Views Panels Container */
.views-container {
  flex: 1;
  overflow-y: auto;
  padding: 30px 40px;
  position: relative;
}

.view-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* View 1: Dashboard Elements */
.hero-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 18, 26, 0.8), rgba(8, 9, 13, 0.9)),
              linear-gradient(225deg, rgba(92, 96, 245, 0.15), transparent 60%);
  border: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 50%, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 20px;
}

.live-stats {
  display: flex;
  gap: 12px;
}

.stat-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.stat-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.stat-pulse.green {
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-glow-green 1.5s infinite alternate;
}

.stat-pulse.blue {
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-glow-blue 1.5s infinite alternate;
}

.hero-graphic {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 250px;
  height: 250px;
  z-index: 1;
  pointer-events: none;
}

.ambient-glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(92, 96, 245, 0.15) 0%, transparent 70%);
  filter: blur(20px);
}

.section-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  margin-top: 10px;
}

.section-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Sports Filters */
.sports-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.sports-filters::-webkit-scrollbar {
  display: none;
}

.dash-filter-btn {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.dash-filter-btn:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.dash-filter-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px var(--accent-glow);
}

/* Dashboard Columns Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.grid-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.grid-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-badge-mini {
  background: rgba(244, 63, 94, 0.15);
  color: var(--error);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

/* Premium Card Styles */
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background-color: var(--bg-card-hover);
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(92, 96, 245, 0.02) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.dashboard-card:hover::before {
  opacity: 1;
}

/* Match Event Card */
.match-card {
  gap: 8px;
}

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

.match-category-tag {
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.match-time-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.match-time-badge.live {
  color: var(--error);
  background: rgba(244, 63, 94, 0.1);
  border-color: rgba(244, 63, 94, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--error);
  display: inline-block;
  animation: pulse-blink 1s infinite alternate;
}

.match-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

.match-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 11px;
}

.match-provider-badge {
  background: rgba(92, 96, 245, 0.15);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.match-streams-count {
  color: var(--text-muted);
  font-weight: 550;
}

/* TV Channel Card */
.channel-card {
  gap: 12px;
  min-height: 110px;
}

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

.channel-category-tag {
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.channel-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.channel-card-bottom {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 8px;
}

.channel-type {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.channel-provider-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.fav-btn {
  margin-left: auto;
}

/* Favorites Button */
.fav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  transition: transform var(--transition-fast), color var(--transition-fast);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fav-btn:hover {
  transform: scale(1.2);
}

.fav-btn.active {
  color: #f59e0b;
}

/* View 2: Channels Tab Grid */
.channels-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.categories-filter {
  display: flex;
  gap: 8px;
}

.filter-btn {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.channel-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  list-style: none;
}

/* Health Indicator Dots */
.health-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.health-dot.online {
  background-color: var(--success);
  box-shadow: 0 0 5px var(--success);
}

.health-dot.offline {
  background-color: var(--error);
}

.health-dot.unknown {
  background-color: var(--text-muted);
}

.health-dot.checking {
  background-color: var(--warning);
  animation: pulse-checking 1.5s infinite;
}

/* View 3: TV Guide / Palinsesto */
.schedule-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.refresh-circle-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.refresh-circle-btn:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.refresh-circle-btn svg {
  width: 18px;
  height: 18px;
}

.schedule-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  gap: 12px 20px;
  transition: border var(--transition-fast);
  overflow: hidden;
}

.schedule-item:hover {
  border-color: var(--border-hover);
}

.schedule-time {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 750;
  color: var(--accent);
  min-width: 60px;
  padding-top: 2px;
}

.schedule-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 180px;
}

.schedule-provider-badge {
  font-size: 10px;
  background: rgba(92, 96, 245, 0.12);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.schedule-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-basis: 100%;
}

.schedule-link {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.schedule-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* View 4: Settings Tab Panels */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.settings-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.settings-card.full-width {
  grid-column: span 2;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-icon.blue {
  background: rgba(92, 96, 245, 0.12);
  color: var(--accent);
}

.card-icon.red {
  background: rgba(244, 63, 94, 0.12);
  color: var(--error);
}

.card-icon.purple {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.card-icon.amber {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warning);
}

.card-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-details h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-details p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.settings-action-btn {
  align-self: flex-start;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.settings-action-btn.primary-glow {
  background: var(--accent);
  color: #ffffff;
}

.settings-action-btn.primary-glow:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.settings-action-btn.secondary-glow {
  background: rgba(244, 63, 94, 0.15);
  color: var(--error);
}

.settings-action-btn.secondary-glow:hover {
  background: rgba(244, 63, 94, 0.25);
}

/* Custom Play Input Group */
.custom-play-group {
  display: flex;
  gap: 8px;
}

.custom-play-group input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 10px 14px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
}

.custom-play-group input:focus {
  border-color: #a855f7;
}

.custom-play-btn {
  background: #a855f7;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.custom-play-btn:hover {
  background: #9333ea;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.custom-play-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Scan Diagnostics Progress Bar */
.progress-container-new {
  margin-top: 6px;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: var(--bg-input);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #a855f7, var(--error));
  border-radius: 10px;
  transition: width 0.4s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 16px 16px;
  animation: progress-stripes 1.2s linear infinite;
}

.progress-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* Cinema / Integrated Fullscreen Player View */
.player-fullscreen-container {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

.player-top-nav {
  height: 70px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0; left: 0; width: 100%;
  z-index: 1050;
  pointer-events: auto;
  transition: opacity 0.3s;
}

.player-close-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: all var(--transition-fast);
}

.player-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-2px);
}

.player-close-btn svg {
  width: 14px;
  height: 14px;
}

.player-top-nav h2 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  max-width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.status-indicator.loading .dot {
  background-color: var(--warning);
  animation: pulse-warning 1.5s infinite;
}

.status-indicator.playing .dot {
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.status-indicator.error .dot {
  background-color: var(--error);
  box-shadow: 0 0 8px var(--error);
}

.player-content-body {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08090d;
  z-index: 1010;
}

.placeholder-content {
  text-align: center;
  color: var(--text-secondary);
}

.pulse-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(92, 96, 245, 0.15);
}

.pulse-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 2px;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000000;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Custom Player Video Overlay controls */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.75) 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1020;
  pointer-events: none;
}

.player-top-bar,
.center-play-btn,
.player-controls,
.quality-menu {
  pointer-events: auto;
}

.video-container.idle .video-overlay {
  opacity: 0;
  cursor: none;
  pointer-events: none !important;
}

.player-top-bar {
  padding: 24px 30px;
  display: flex;
  justify-content: flex-end;
}

.live-badge {
  background: var(--error);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  animation: pulse-live 1.5s infinite;
}

.center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.center-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.8);
}

.center-play-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  margin-left: 4px;
}

.player-controls {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

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

.control-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: all var(--transition-fast);
}

.control-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.control-btn svg {
  width: 24px;
  height: 24px;
}

.control-btn.text-btn {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 110px;
}

.volume-slider {
  width: 100%;
  cursor: pointer;
  accent-color: var(--accent);
  height: 4px;
}

.quality-selector {
  position: relative;
}

.quality-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 12px;
  background: rgba(16, 18, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  min-width: 110px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.quality-option {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 8px 16px;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  transition: background var(--transition-fast);
}

.quality-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.quality-option.active {
  color: var(--accent);
  font-weight: 700;
}

.player-controls-hint {
  padding: 12px 30px;
  display: flex;
  justify-content: center;
  gap: 24px;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.hint-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
}

kbd {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: inherit;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

/* Double Tap Skipper Indicator Overlay */
.double-tap-indicator {
  position: absolute;
  top: 0; bottom: 0; width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1030;
}

.double-tap-indicator.left {
  left: 0;
  border-radius: 0 50% 50% 0;
}

.double-tap-indicator.right {
  right: 0;
  border-radius: 50% 0 0 50%;
}

.double-tap-indicator.show {
  opacity: 1;
  animation: ripple 0.5s ease-out;
}

/* Stream Provider Selection Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

.modal-container {
  width: 90%;
  max-width: 440px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  animation: modal-enter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-enter {
  from { transform: scale(0.92) translateY(12px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

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

.modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 26px;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 4px;
  line-height: 1;
}

.close-btn:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-details-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  align-items: center;
}

.event-time {
  color: var(--accent);
  font-weight: 750;
}

.event-category-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
  font-weight: 600;
}

.select-hint {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.streams-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.modal-stream-btn {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-stream-btn::after {
  content: '▶';
  font-size: 9px;
  opacity: 0.5;
  transition: transform var(--transition-fast);
}

.modal-stream-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateX(3px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.modal-stream-btn:hover::after {
  opacity: 1;
  transform: translateX(1px);
}

/* Empty States & Loading States */
.empty-state, .loading-state {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.01);
}

/* Animations Definitions */
@keyframes pulse-glow-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  100% { box-shadow: 0 0 8px 3px rgba(16, 185, 129, 0.15); }
}

@keyframes pulse-glow-blue {
  0% { box-shadow: 0 0 0 0 rgba(92, 96, 245, 0.5); }
  100% { box-shadow: 0 0 8px 3px rgba(92, 96, 245, 0.15); }
}

@keyframes pulse-blink {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

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

@keyframes pulse-checking {
  0% { transform: scale(0.95); opacity: 0.6; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  70% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 0 5px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); opacity: 0.6; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes progress-stripes {
  0% { background-position: 0 0; }
  100% { background-position: 16px 0; }
}

@keyframes pulse-warning {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.06); opacity: 0; }
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Mobile Bottom Navigation Bar (Hidden by default) */
.bottom-nav-bar {
  display: none;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 8px 10px;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  z-index: 100;
  padding-bottom: calc(env(safe-area-inset-bottom, 16px) + 6px);
}

.bottom-nav-link {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.bottom-nav-link svg {
  width: 22px;
  height: 22px;
}

.bottom-nav-link span {
  font-size: 10px;
  font-weight: 600;
}

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

/* Mobile Responsive Settings */
@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Navigation switch */
  .nav-dock {
    display: none !important;
  }
  
  .bottom-nav-bar {
    display: flex;
  }
  
  /* Layout changes */
  .app-container {
    flex-direction: column;
  }
  
  .main-content {
    height: calc(100vh - 60px - env(safe-area-inset-bottom, 16px));
    padding-bottom: 0;
  }
  
  .global-header {
    padding: 0 20px;
    height: 60px;
  }
  
  .header-search {
    width: 220px;
  }
  
  .views-container {
    padding: 20px;
  }
  
  .hero-banner {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-graphic {
    display: none;
  }
  
  .hero-content h2 {
    font-size: 20px;
  }
  
  .hero-content p {
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  .settings-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .settings-card.full-width {
    grid-column: span 1;
  }
  
  .settings-card {
    padding: 16px;
    gap: 14px;
  }
  
  .custom-play-group {
    flex-direction: column;
  }
  
  .custom-play-btn {
    width: 100%;
  }
  
  /* Fullscreen Player Mobile Adjustments */
  .player-top-nav {
    padding: 0 16px;
    height: 60px;
  }
  
  .player-top-nav h2 {
    font-size: 13px;
    max-width: 40%;
  }
  
  .player-controls {
    padding: 16px 20px;
  }
  
  .volume-container {
    display: none; /* Hide volume slider on mobile, use physical keys */
  }
  
  .player-controls-hint {
    display: none; /* Hide hints on mobile */
  }
}

/* Mobile Landscape Fullscreen adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .bottom-nav-bar, .global-header {
    display: none !important;
  }
  
  .main-content {
    height: 100vh;
  }
  
  .player-fullscreen-container {
    height: 100vh;
  }
  
  .player-top-nav {
    padding-left: calc(env(safe-area-inset-left, 0px) + 20px);
    padding-right: calc(env(safe-area-inset-right, 0px) + 20px);
  }
  
  .player-controls {
    padding-left: calc(env(safe-area-inset-left, 0px) + 20px);
    padding-right: calc(env(safe-area-inset-right, 0px) + 20px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }
}

/* ============================
   Source Management Styles
   ============================ */

.card-icon.green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}

.sources-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.sources-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.sources-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.source-row:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.source-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.source-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.source-type-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.source-type-badge.scraper {
  background: rgba(92, 96, 245, 0.12);
  color: var(--accent);
}

.source-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.source-channel-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 2px 8px;
  border-radius: 4px;
}

.source-last-refresh {
  font-size: 11px;
  color: var(--text-muted);
}

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

.source-action-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.source-action-btn svg {
  width: 16px;
  height: 16px;
}

.source-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.source-action-btn.delete-btn:hover {
  background: rgba(244, 63, 94, 0.15);
  color: var(--error);
}

.source-action-btn.refresh-btn:hover {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.source-action-btn.spinning svg {
  animation: spin 1s linear infinite;
}

/* Toggle Switch - iOS-like */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--text-secondary);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
  background: #ffffff;
}

[data-theme="light"] .toggle-slider {
  background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .toggle-slider::before {
  background: #94a3b8;
}

[data-theme="light"] .toggle-switch input:checked + .toggle-slider::before {
  background: #ffffff;
}

/* Add M3U Form */
.add-m3u-form {
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.m3u-form-fields {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.m3u-input {
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-family);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
  min-width: 180px;
}

.m3u-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.m3u-input.m3u-url-input {
  flex: 1;
  min-width: 300px;
}

.m3u-input::placeholder {
  color: var(--text-muted);
}

.m3u-import-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.import-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}

.source-empty {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
}

/* M3U source row info stacking on mobile */
.m3u-row .source-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

/* Import Tabs */
.import-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  background: var(--bg-card);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid var(--border-color);
}

.import-tab {
  flex: 1;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-family);
}

.import-tab:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
}

.import-tab.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px var(--accent-glow);
}

[data-theme="light"] .import-tab:hover {
  background: rgba(0, 0, 0, 0.05);
}

.import-tab-content {
  display: none;
}

.import-tab-content.active {
  display: block;
}

/* Xtream Codes credentials row */
.xtream-credentials {
  display: flex;
  gap: 10px;
  width: 100%;
}

.xtream-credentials .m3u-input {
  flex: 1;
  min-width: 120px;
}

/* Secondary upload button */
.settings-action-btn.secondary-upload {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}

.settings-action-btn.secondary-upload:hover {
  background: rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* File name display */
.m3u-file-name {
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
}

/* Source manager card responsive */
@media (max-width: 768px) {
  .m3u-form-fields {
    flex-direction: column;
    align-items: stretch;
  }
  
  .m3u-input,
  .m3u-input.m3u-url-input {
    min-width: unset;
    width: 100%;
  }
  
  .source-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .source-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .xtream-credentials {
    flex-direction: column;
  }

  .import-tabs {
    flex-direction: column;
  }
}

/* Channel counter */
.channel-counter {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0 4px;
  letter-spacing: 0.5px;
}

/* Toggle categories button */
.filter-btn.toggle-categories-btn {
  background: rgba(92, 96, 245, 0.08);
  color: var(--accent);
  border: 1px dashed var(--accent);
  font-weight: 600;
}