/* ==========================================
   CSS DESIGN SYSTEM: SPORTS STREAMING PLATFORM
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #090a0f;
  --bg-secondary: #121520;
  --bg-tertiary: #1a1e2e;
  --accent-color: #e50914; /* Hotstar Red */
  --accent-hover: #b80710;
  --live-color: #ff0e3d;
  --upcoming-color: #00ff87;
  --completed-color: #3b82f6;
  --text-primary: #ffffff;
  --text-secondary: #8e9bb4;
  --text-muted: #5c6980;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(18, 21, 32, 0.7);
  --glass-border: rgba(255, 255, 255, 0.06);

  /* Fonts */
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout Constants */
  --header-height: 72px;
  --container-max: 1280px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  /* Shadows & Filters */
  --shadow-lg: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --glow-accent: 0 0 20px rgba(229, 9, 20, 0.3);
  --glow-live: 0 0 15px rgba(255, 14, 61, 0.5);
  --blur-amount: 12px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Ambient background poster backdrop */
.body-background-poster {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: blur(80px) brightness(0.12) saturate(1.4);
  transition: background-image 1.2s ease-in-out;
  pointer-events: none;
  background-repeat: no-repeat;
}

/* Background Glowing Mesh Blobs */
body::before, body::after {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  filter: blur(140px);
  animation: floatBlobs 25s infinite alternate ease-in-out;
}

body::before {
  top: -150px;
  left: -200px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.16) 0%, rgba(9, 10, 15, 0) 70%);
}

body::after {
  bottom: -150px;
  right: -200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(9, 10, 15, 0) 70%);
  animation-delay: -12s;
}

@keyframes floatBlobs {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(120px, 60px) scale(1.15);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* Layout Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(18, 21, 32, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header.scrolled {
  background: rgba(9, 10, 15, 0.85);
  height: 64px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  color: var(--accent-color);
  -webkit-text-fill-color: initial;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 500;
}

.nav-link {
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
  box-shadow: var(--glow-accent);
}

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

/* Search Bar Component */
.search-container {
  position: relative;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  padding: 0 14px;
  width: 240px;
  transition: var(--transition-smooth);
}

.search-container:focus-within {
  width: 320px;
  border-color: var(--accent-color);
  box-shadow: var(--glow-accent);
}

.search-input {
  width: 100%;
  padding: 10px 0 10px 8px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.search-container i {
  color: var(--text-muted);
}

.admin-btn-header {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--bg-primary) 5%, rgba(9, 10, 15, 0.6) 50%, rgba(9, 10, 15, 0.2) 100%),
              linear-gradient(90deg, var(--bg-primary) 20%, rgba(9, 10, 15, 0) 80%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 40px 0;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-live-badge {
  background: var(--live-color);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--glow-live);
  animation: pulse 1.5s infinite;
}

.hero-status-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.hero-meta i {
  color: var(--accent-color);
}

.hero-actions-row {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-primary);
  box-shadow: var(--glow-accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Category Slider / Filters */
.filters-section {
  padding: 30px 0 10px 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.filters-section::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.filter-chip {
  padding: 10px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.filter-chip:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-tertiary);
}

.filter-chip.active {
  background: var(--accent-color);
  color: var(--text-primary);
  border-color: var(--accent-color);
  box-shadow: var(--glow-accent);
}

/* Grid & Headings */
.section-wrapper {
  padding: 30px 0 50px 0;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title span.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.section-title.live span.indicator {
  background-color: var(--live-color);
  box-shadow: var(--glow-live);
  animation: pulse 1.5s infinite;
}

.section-title.upcoming span.indicator {
  background-color: var(--upcoming-color);
}

.section-title.completed span.indicator {
  background-color: var(--completed-color);
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

/* Cards Design */
.match-card {
  background: rgba(18, 21, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.match-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(229, 9, 20, 0.15);
}

.card-poster {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: var(--bg-tertiary);
}

.card-poster img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.match-card:hover .card-poster img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.card-badge.live {
  background: var(--live-color);
  color: var(--text-primary);
  box-shadow: var(--glow-live);
  animation: pulse 1.5s infinite;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-badge.upcoming {
  background: rgba(0, 255, 135, 0.15);
  color: var(--upcoming-color);
  border: 1px solid rgba(0, 255, 135, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card-badge.completed {
  background: rgba(59, 130, 246, 0.15);
  color: var(--completed-color);
  border: 1px solid rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  font-size: 13px;
  color: var(--text-secondary);
}

.timer-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
}

.timer-box i {
  font-size: 14px;
}

.timer-box.live-timer {
  color: var(--live-color);
}

.timer-box.upcoming-timer {
  color: var(--text-secondary);
}

.watch-action {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

.match-card:hover .watch-action {
  color: var(--text-primary);
  transform: translateX(4px);
}

/* Skeleton Loading Screens */
.skeleton-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 300px;
  display: flex;
  flex-direction: column;
}

.skeleton-poster {
  width: 100%;
  height: 168px;
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, #252a3d 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-text {
  height: 16px;
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, #252a3d 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.skeleton-text.title-1 { width: 90%; height: 18px; }
.skeleton-text.title-2 { width: 60%; height: 18px; }
.skeleton-text.meta { width: 40%; margin-top: auto; }

/* Custom Glass Modal: Channel / Language Selector */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 8, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: rgba(18, 21, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  width: 100%;
  max-width: 480px;
  padding: 32px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.modal-close {
  cursor: pointer;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--accent-color);
  color: var(--text-primary);
  border-color: var(--accent-color);
}

.modal-body {
  margin-bottom: 24px;
}

.modal-event-title {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
}

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

.channel-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  text-align: left;
}

.channel-btn:hover {
  border-color: var(--accent-color);
  background: rgba(229, 9, 20, 0.05);
}

.channel-btn-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.channel-btn-info i {
  color: var(--accent-color);
  font-size: 18px;
}

.channel-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.channel-btn-action {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.channel-btn:hover .channel-btn-action {
  color: var(--accent-color);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left-color: var(--upcoming-color);
}

.toast.error {
  border-left-color: var(--live-color);
}

.toast i {
  font-size: 16px;
}

.toast.success i { color: var(--upcoming-color); }
.toast.error i { color: var(--live-color); }

/* Keyframe Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Footer Section */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--text-primary);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-section {
    min-height: 480px;
  }
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  header {
    height: 64px;
  }
  .nav-links {
    display: none; /* On mobile hide desktop link structure */
  }
  .search-container {
    width: 160px;
  }
  .search-container:focus-within {
    width: 200px;
  }
  .hero-section {
    min-height: 400px;
    padding-top: 20px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-content {
    padding: 20px 0;
  }
  .hero-actions-row {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* User Authentication Styles */
.user-auth-container {
  position: relative;
}

.btn-signin {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

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

.profile-badge {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.profile-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-secondary);
}

.profile-avatar {
  width: 22px;
  height: 22px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.profile-email {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 8px;
  width: 200px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 150;
  font-family: var(--font-display);
}

.profile-dropdown.open {
  display: block;
  animation: slideDown 0.2s ease-out;
}

.dropdown-header {
  padding: 10px 12px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.dropdown-item.signout-item {
  color: var(--live-color);
  border-top: 1px solid var(--border-color);
  margin-top: 6px;
  padding-top: 12px;
  border-radius: 0;
}

.dropdown-item.signout-item:hover {
  background: rgba(255, 14, 61, 0.08);
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

