:root {
  /* Background Colors */
  --bg-darkest: #050510;
  --bg-dark: #0a0a1a;
  --bg-card: #0d1025;
  --bg-card-hover: #141835;
  --bg-sidebar: #0a0f20;
  --bg-premium: linear-gradient(145deg, #0f1628 0%, #1a1f3a 100%);

  /* Accent Colors */
  --accent-primary: #e94560;
  --accent-primary-hover: #ff6b8a;
  --accent-gold: #ffd700;
  --accent-gold-glow: rgba(255, 215, 0, 0.3);
  --accent-cyan: #00d4ff;
  --accent-green: #00ff88;
  --accent-purple: #8b5cf6;
  --accent-orange: #ff9500;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #64748b;

  /* Border Colors */
  --border-color: #1e2a4a;
  --border-glow: rgba(233, 69, 96, 0.5);

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-premium: 0 8px 32px rgba(255, 215, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(233, 69, 96, 0.3);

  /* Spacing */
  --sidebar-width: 200px;
  --right-banner-width: 180px;
  --header-height: 60px;
  --gap-sm: 8px;
  --gap-md: 12px;
  --gap-lg: 16px;
  --gap-xl: 20px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ==========================================
     Reset & Base Styles
     ========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-darkest);
  background-image: radial-gradient(
      ellipse at 20% 20%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(233, 69, 96, 0.08) 0%,
      transparent 50%
    );
  background-attachment: fixed;
  background-size: 100% 100%;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.5;
  position: relative;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================
     Top Navigation Header
     ========================================== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: var(--header-height);
  background: rgba(10, 15, 32, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
}

.nav-container {
  width: 100%;
  min-height: var(--header-height);
  margin: 0;
  padding: 0 var(--gap-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.top-nav .logo {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex-shrink: 0;
  z-index: 2;
}

.top-nav .logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.top-nav .logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

/* Main Navigation - Absolutely Centered */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.main-nav .nav-link {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.main-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.main-nav .nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(233, 69, 96, 0.2) 0%,
    rgba(233, 69, 96, 0.1) 100%
  );
  color: var(--accent-primary);
}

.main-nav .nav-link i {
  font-size: 1.1rem;
}

.main-nav .nav-link.social {
  padding: 8px 10px;
}

.main-nav .nav-link.social:hover .bi-telegram {
  color: #0088cc;
}

.main-nav .nav-link.social:hover .bi-instagram {
  color: #e4405f;
}

.main-nav .nav-link.social:hover .bi-youtube {
  color: #ff0000;
}

.nav-link .live-dot {
  display: inline-flex;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.6);
  animation: pulseLive 1.4s ease-in-out infinite;
}

.mobile-nav .nav-link .live-dot {
  margin-left: auto;
  margin-right: 0;
}

@keyframes pulseLive {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.6);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
  }
}

.nav-link.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.main-nav .nav-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
  margin: 0 var(--gap-sm);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 999;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

/* Nav Actions (Search, Auth) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  z-index: 2;
}

.nav-actions .search-box {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0 var(--gap-md);
  transition: all var(--transition-fast);
}

.nav-actions .search-box:focus-within {
  border-color: var(--accent-primary);
}

.nav-actions .search-box i {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.nav-actions .search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 8px 0;
  width: 150px;
}

.nav-actions .search-box input::placeholder {
  color: var(--text-muted);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--gap-sm);
  padding: var(--gap-md);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  transform: translateY(-12px);
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 998;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  animation: mobileNavSlide 0.28s ease forwards;
}

.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: 12px var(--gap-md);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  background: rgba(233, 69, 96, 0.1);
  color: var(--accent-primary);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border-color);
  margin: var(--gap-sm) 0;
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: var(--gap-lg);
  padding: var(--gap-sm) 0;
}

.mobile-social a {
  font-size: 1.3rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-social a:hover {
  color: var(--text-primary);
}

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: var(--gap-lg);
}

.contact-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.contact-modal {
  width: min(420px, 90vw);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.contact-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gap-md);
}

.contact-modal-header h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.contact-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.contact-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-primary);
}

.contact-modal-body {
  display: grid;
  gap: var(--gap-md);
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: var(--gap-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.contact-chip:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.contact-chip.telegram i {
  color: #229ed9;
}

.contact-chip.teams i {
  color: #5c2d91;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mobileNavSlide {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
     Page Layout (centered content)
     ========================================== */
.page-layout {
  margin-top: var(--header-height);
  padding: var(--gap-lg);
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background: transparent;
  overflow-x: hidden;
}

/* Sidebar'ların göründüğü büyük ekranlarda container genişliğini ayarla */
/* Sol sidebar: 16px (left) + 180px (width) = 196px */
/* Sağ sidebar: 16px (right) + 180px (width) = 196px */
/* Toplam: 392px yan alan + 65px ek daraltma = 457px */
@media (min-width: 1301px) {
  .page-layout {
    max-width: calc(100vw - 457px);
    padding-left: var(--gap-lg);
    padding-right: var(--gap-lg);
  }
}

/* ==========================================
     Promo Sidebars (Fixed on sides)
     ========================================== */
.promo-sidebar {
  position: fixed;
  top: calc(var(--header-height) + var(--gap-lg));
  width: 180px;
  max-width: 180px;
  height: calc(100vh - var(--header-height) - var(--gap-lg) * 2);
  box-sizing: border-box;
  overflow: hidden;
  z-index: 10;
  display: block !important;
}

/* 1300px ve altında sidebar'ları gizle */
@media screen and (max-width: 1300px) {
  .promo-sidebar {
    display: none !important;
  }
}

.promo-sidebar.promo-left {
  left: var(--gap-lg);
}

.promo-sidebar.promo-right {
  right: var(--gap-lg);
}

.side-promo-banner {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow: hidden;
}

.side-promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.promo-banner.vertical {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.side-promo-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.promo-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: rgba(233, 69, 96, 0.1);
  color: var(--accent-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-label i {
  font-size: 0.8rem;
}

.promo-content {
  padding: var(--gap-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
}

.promo-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.promo-logo.small {
  font-size: 0.85rem;
}

.promo-bonus {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.promo-bonus .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
}

.promo-bonus.small .amount {
  font-size: 1.6rem;
}

.promo-bonus .currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.promo-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.promo-text.small {
  font-size: 0.75rem;
}

.promo-code {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-code .code {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  font-family: monospace;
}

.promo-code .label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.promo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  background: var(--accent-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

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

.promo-cta.small {
  padding: 8px;
  font-size: 0.75rem;
}

.promo-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  padding: 4px 24px;
  font-size: 0.65rem;
  font-weight: 700;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  gap: 4px;
}

.promo-banner.secondary {
  background: linear-gradient(
    180deg,
    rgba(0, 212, 255, 0.1) 0%,
    var(--bg-dark) 100%
  );
  border-color: rgba(0, 212, 255, 0.2);
}

.promo-banner.secondary .promo-bonus .amount {
  color: var(--accent-green);
}

/* ==========================================
     Main Content Area
     ========================================== */
.main-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Pulse animation for live indicators */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* ==========================================
     Buttons
     ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn i {
  font-size: 1.1rem;
}

.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #d63654 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--accent-primary-hover) 0%,
    var(--accent-primary) 100%
  );
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  font-size: 1.2rem;
}

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

/* ==========================================
     Sponsors Container
     ========================================== */
.sponsors-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  padding-bottom: calc(90px + var(--gap-lg) * 2); /* Fixed banner (min-height 90px) + alt boşluk (gap-lg) + ekstra boşluk (gap-lg) */
}

.top-promo-banner {
  width: 100%;
  min-height: 70px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Top Promo Slider - Sıfırdan tasarlanmış */
.top-promo-slider {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  margin-bottom: var(--gap-lg);
  box-sizing: border-box;
}

/* Desktop'ta sadece ilk üst banner görünsün, diğerleri gizli */
@media (min-width: 769px) {
  #top-promo-slider-2,
  #top-promo-slider-3 {
    display: none;
  }
}

.top-promo-track {
  display: flex;
  height: 80px;
  transform: translateX(0);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  /* Width will be set dynamically by JavaScript based on slide count */
}

.top-promo-slide,
.top-promo-track .swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 80px;
  display: block;
  box-sizing: border-box;
  position: relative;
}

.top-promo-slide img,
.top-promo-slide a,
.top-promo-track .swiper-slide img,
.top-promo-track .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.top-promo-slide img {
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center;
}

.top-promo-slide .banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.top-promo-slide .banner-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bottom-promo-slider {
  overflow: hidden;
  padding-right: 0;
  transition: opacity var(--transition-fast);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  height: 80px;
  min-height: 80px;
  box-sizing: border-box;
  z-index: 100;
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-color);
  will-change: bottom;
}

/* Sponsorlar sayfasında transform için transition ekle */
.sponsors-container .bottom-promo-slider {
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

/* Sponsorlar sayfasında container genişliğinde fixed banner - üst banner ile aynı genişlik */
/* Üst banner .sponsors-container içinde .top-promo-slider, .sponsors-container .page-layout içinde */
/* .page-layout padding: var(--gap-lg), .top-promo-slider width: 100% */
/* Üst banner'ın gerçek genişliği: .page-layout'un iç genişliği = 100vw - var(--gap-lg) * 2 */
.sponsors-container .bottom-promo-slider {
  left: var(--gap-lg);
  right: var(--gap-lg);
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Sidebar'ların göründüğü büyük ekranlarda container genişliğinde - üst banner ile aynı */
/* Sol sidebar: 16px (left) + 180px (width) = 196px */
/* Sağ sidebar: 16px (right) + 180px (width) = 196px */
/* Toplam: 392px yan alan + 65px ek daraltma = 457px */
/* Üst banner .page-layout içinde: max-width: calc(100vw - 457px), padding: var(--gap-lg) */
/* Alt banner aynı genişlikte olmalı */
@media (min-width: 1301px) {
  .page-layout {
    position: relative;
  }
  
  .sponsors-container .bottom-promo-slider {
    /* page-layout genişliği: calc(100vw - 457px) */
    /* page-layout padding: var(--gap-lg) her iki tarafta */
    /* İçerik genişliği: calc(100vw - 457px - var(--gap-lg) * 2) */
    max-width: calc(100vw - 457px - var(--gap-lg) * 2);
    /* Merkezlemek için: (100vw - içerik genişliği) / 2 */
    left: calc((100vw - (100vw - 457px - var(--gap-lg) * 2)) / 2);
    right: calc((100vw - (100vw - 457px - var(--gap-lg) * 2)) / 2);
    width: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
}

.bottom-promo-track {
  display: flex;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
}

/* Swiper container olarak kullanıldığında */
.bottom-promo-track.swiper {
  overflow: hidden;
}

.bottom-promo-track .swiper-wrapper {
  display: flex;
  width: 100%;
}

.bottom-promo-slide,
.bottom-promo-track .swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 80px;
  display: block;
  box-sizing: border-box;
  position: relative;
}

.bottom-promo-slide img,
.bottom-promo-slide a,
.bottom-promo-track .swiper-slide img,
.bottom-promo-track .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.bottom-promo-slide img {
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center;
}

.bottom-promo-slide .banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bottom-promo-slide .banner-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bottom-promo-slider .promo-ribbon-close {
  top: 12px;
  right: 12px;
}

/* Premium Sponsors */
.premium-sponsors {
  margin-bottom: var(--gap-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: visible;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.sponsor-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid;
  transition: transform, border-color, box-shadow var(--transition-normal);
  cursor: pointer;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.sponsor-card.premium {
  border-color: rgba(255, 215, 0, 0.3);
  background: var(--bg-premium);
  overflow: visible;
}

.sponsor-card.premium:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-premium);
}

.sponsor-card.premium::before {
  display: none;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}
@keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}

.sponsor-card::after {
  content: " ";
  position: absolute;
  z-index: -1;
  inset: -0.2rem;
  border-radius: inherit;
  animation: rotate 4.5s linear infinite;
  background: conic-gradient(
    from var(--gradient-angle),
    rgba(3, 154, 0, 1),
    rgba(3, 154, 0, 0),
    rgba(3, 154, 0, 0),
    rgba(3, 154, 0, 0),
    rgba(3, 154, 0, 0),
    rgba(3, 154, 0, 0),
    rgba(3, 154, 0, 1)
  );
  transition: all 2s ease-in-out !important;
}

.sponsor-card.premium::after {
  background: conic-gradient(
    from var(--gradient-angle),
    rgba(247, 177, 21, 1),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 1)
  );
}

.sponsor-card:hover::after {
  background: conic-gradient(
    from var(--gradient-angle),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0),
    rgba(247, 177, 21, 0)
  );
}

.premium-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.3) 0%,
    rgba(255, 165, 0, 0.2) 100%
  );
  color: var(--accent-gold);
  perspective: 200px;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.premium-badge i {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
  animation: jumpSpinWait 4s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* Jump, spin once, then rest */
@keyframes jumpSpinWait {
  0% {
    transform: scale(1) rotateY(0deg);
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6)) brightness(1);
  }
  15% {
    transform: scale(1.2) rotateY(180deg);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9)) brightness(1.1);
  }
  30% {
    transform: scale(1) rotateY(360deg);
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6)) brightness(1);
  }
  100% {
    transform: scale(1) rotateY(360deg);
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6)) brightness(1);
  }
}

.card-logo-wrapper {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap-xl);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.sponsor-card.premium .card-logo-wrapper {
  height: 100px;
}

.card-logo {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.1);
  transition: transform var(--transition-normal);
}

.sponsor-card.premium .card-logo {
  max-height: 80px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.sponsor-card:hover .card-logo {
  transform: scale(1.05);
}

.card-info {
  padding: var(--gap-md) var(--gap-lg);
  border-top: 1px solid var(--border-color);
  text-align: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.card-bonus {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c5c6cc;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.sponsor-card.premium .card-bonus {
  font-size: 0.85rem;
  color: #c5c6cc;
}

/* Standard Sponsors Grid */
.standard-sponsors {
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sponsor-card.standard {
  border: 1px solid rgba(0, 255, 0, 0.3);
  overflow: hidden;
}

.sponsor-card.standard:hover {
  border-color: rgb(0 150 0);
  box-shadow: 0 0 10px rgb(0 150 0 / 57%);
}

.sponsor-card.standard .card-logo-wrapper {
  height: 100px;
  padding: var(--gap-lg);
}

.sponsor-card.standard .card-logo {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.sponsor-card.standard .card-info {
  padding: var(--gap-sm) var(--gap-md);
}

.sponsor-card.standard .card-bonus {
  font-size: 0.85rem;
  color: #c5c6cc;
}

/* ==========================================
     Bottom Banner
     ========================================== */
.promo-ribbon {
  background: linear-gradient(90deg, #0a2520 0%, #0d3028 50%, #0a2520 100%);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg) var(--gap-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(0, 255, 136, 0.2);
  overflow: hidden;
}

.promo-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 30% 50%,
      rgba(0, 255, 136, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(0, 255, 136, 0.1) 0%,
      transparent 50%
    );
}

.banner-inner {
  display: flex;
  align-items: center;
  gap: var(--gap-xl);
  position: relative;
  z-index: 1;
}

.banner-logo-img {
  height: 40px;
  object-fit: contain;
}

.banner-offer {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
}

.offer-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-green);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.offer-amount .currency {
  color: var(--accent-gold);
}

.offer-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.promo-ribbon-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}

.promo-ribbon-close i {
  font-size: 0.9rem;
}

.promo-ribbon-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

/* ==========================================
     Responsive Design
     ========================================== */
@media screen and (max-width: 1300px) {
  .page-layout {
    max-width: 100%;
    padding-left: var(--gap-lg);
    padding-right: var(--gap-lg);
  }
}

@media (max-width: 1400px) {
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-actions .search-box {
    display: none;
  }

  .promo-bonus .amount {
    font-size: 1.8rem;
  }

  .promo-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 992px) {
  .page-layout {
    padding: var(--gap-md);
  }

  .main-nav .nav-link span {
    display: none;
  }

  .main-nav .nav-link {
    padding: 8px 12px;
  }

  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-actions .btn span {
    display: none;
  }

  .nav-actions .btn {
    padding: 8px 12px;
  }

  .premium-sponsors {
    padding-top: 20px !important;
  }

  .sponsor-card.premium {
    overflow: visible;
  }

  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-sm);
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-sm);
  }

  .sponsors-container {
    padding: var(--gap-md);
    background: transparent;
    box-shadow: none;
    overflow-x: hidden;
  }

  .sponsor-card.premium .card-logo-wrapper {
    height: 80px;
    padding: var(--gap-sm);
  }

  .sponsor-card.premium .card-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
  }

  .sponsor-card.standard .card-logo-wrapper {
    height: 70px;
    padding: var(--gap-sm);
  }

  .sponsor-card.standard .card-logo {
    height: 40px;
    width: auto;
    max-width: 90px;
  }

  .card-info {
    padding: var(--gap-sm);
  }

  .card-bonus {
    font-size: 0.75rem !important;
  }

  .premium-badge {
    width: 28px;
    height: 28px;
    top: -14px;
  }

  .premium-badge i {
    font-size: 1rem;
  }

  .offer-text {
    font-size: 1rem;
  }

  .offer-amount {
    font-size: 1.8rem;
  }

  .page-layout {
    padding: var(--gap-md) var(--gap-sm);
    gap: var(--gap-md);
    background: transparent;
    overflow-x: hidden;
  }
  
  /* Mobil için alt banner - üst banner ile aynı genişlik */
  .sponsors-container .bottom-promo-slider {
    left: var(--gap-sm);
    right: var(--gap-sm);
  }

  .top-promo-slider {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    margin-bottom: var(--gap-md);
  }
  
  .top-promo-slide {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
  }
  
  .top-promo-track {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
  }

  .top-promo-slide {
    padding: 0;
    gap: 0;
  }

  .top-promo-slide .banner-pill {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .top-promo-slide .banner-text {
    font-size: 0.9rem;
  }

  .bottom-promo-slider {
    padding-right: 0;
    margin-bottom: 0;
    margin-top: 0;
    height: 70px;
    min-height: 70px;
    max-height: 70px;
  }
  
  .bottom-promo-track {
    height: 70px;
  }
  
  .bottom-promo-slide,
  .bottom-promo-track .swiper-slide {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
  }
  
  /* Mobil ve tablet için alt banner - üst banner ile aynı genişlik */
  .sponsors-container .bottom-promo-slider {
    left: var(--gap-md);
    right: var(--gap-md);
  }
  
  /* Mobilde container'a sponsorlar butonu için ekstra boşluk */
  .sponsors-container {
    padding-bottom: calc(70px + var(--gap-lg));
  }

  .bottom-promo-slide {
    padding: 0;
    gap: 0;
  }

  .bottom-promo-slide .banner-pill {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .bottom-promo-slide .banner-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .premium-sponsors {
    padding-top: 18px !important;
  }

  .sponsor-card.premium {
    overflow: visible;
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  /* Mobilde container'a sponsorlar butonu için ekstra boşluk */
  .sponsors-container {
    padding-bottom: calc(90px + var(--gap-lg) * 2 + 60px);
  }

  .sponsor-card.premium .card-logo-wrapper {
    height: 70px;
    padding: var(--gap-sm);
  }

  .sponsor-card.premium .card-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
  }

  .sponsor-card.standard .card-logo-wrapper {
    height: 60px;
    padding: 6px;
  }

  .sponsor-card.standard .card-logo {
    height: 35px;
    width: auto;
    max-width: 80px;
  }

  .card-info {
    padding: 6px var(--gap-sm);
  }

  .card-bonus {
    font-size: 0.7rem !important;
  }

  .premium-badge {
    width: 24px;
    height: 24px;
    top: -12px;
  }

  .premium-badge i {
    font-size: 0.85rem;
  }

  .page-layout {
    padding: var(--gap-sm);
    gap: var(--gap-sm);
    overflow-x: hidden;
  }

  .top-nav .logo-icon {
    width: 28px;
    height: 28px;
  }

  .top-nav .logo-text {
    font-size: 1rem;
    display: block;
  }

  .nav-container {
    padding: 0 var(--gap-md);
  }

  .top-promo-slider {
    height: 55px;
    min-height: 55px;
    max-height: 55px;
    margin-bottom: var(--gap-sm);
  }
  
  .top-promo-slide {
    height: 55px;
    min-height: 55px;
    max-height: 55px;
  }
  
  .top-promo-track {
    height: 55px;
    min-height: 55px;
    max-height: 55px;
  }

  .top-promo-slide {
    padding: 0;
    gap: 0;
    flex-direction: column;
  }

  .top-promo-slide .banner-pill {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .top-promo-slide .banner-text {
    font-size: 0.8rem;
    text-align: center;
  }

  .bottom-promo-slider {
    padding-right: 0;
    margin-bottom: 0;
    margin-top: 0;
    height: 55px;
    min-height: 55px;
    max-height: 55px;
  }
  
  .bottom-promo-track {
    height: 55px;
  }
  
  .bottom-promo-slide,
  .bottom-promo-track .swiper-slide {
    height: 55px;
    min-height: 55px;
    max-height: 55px;
  }

  .bottom-promo-slide {
    padding: 0;
    gap: 0;
    flex-direction: column;
  }

  .bottom-promo-slide .banner-pill {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .bottom-promo-slide .banner-text {
    font-size: 0.8rem;
    text-align: center;
  }

  .sponsors-container {
    padding: var(--gap-sm);
    padding-bottom: calc(55px + var(--gap-lg));
  }

  .promo-top-slot,
  .promo-bottom-slot {
    height: 50px;
    font-size: 0.7rem;
  }

  .promo-button-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 6px;
  }

  .promo-button {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* Çok küçük ekranlar (360px ve altı) */
@media (max-width: 360px) {
  html {
    font-size: 12px;
  }

  .premium-sponsors {
    padding-top: 16px !important;
  }

  .sponsor-card.premium {
    overflow: visible;
  }

  .sponsor-card.premium .card-logo-wrapper {
    height: 60px;
    padding: 4px;
  }

  .sponsor-card.premium .card-logo {
    height: 45px;
    width: auto;
    max-width: 100%;
  }

  .sponsor-card.standard .card-logo-wrapper {
    height: 55px;
    padding: 4px;
  }

  .sponsor-card.standard .card-logo {
    height: 32px;
    width: auto;
    max-width: 70px;
  }

  .card-info {
    padding: 5px 8px;
  }

  .card-bonus {
    font-size: 0.65rem !important;
    line-height: 1.2;
  }

  .premium-badge {
    width: 22px;
    height: 22px;
    top: -11px;
  }

  .premium-badge i {
    font-size: 0.75rem;
  }

  .top-nav .logo-icon {
    width: 24px;
    height: 24px;
  }

  .top-nav .logo-text {
    font-size: 0.9rem;
  }

  .page-layout {
    padding: 8px;
    gap: 8px;
  }

  .sponsors-container {
    padding: 8px;
  }

  .top-promo-slider {
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    margin-bottom: 8px;
  }
  
  .top-promo-slide {
    height: 50px;
  }
  
  .top-promo-track {
    height: 50px;
  }

  .top-promo-slide {
    padding: 0;
    gap: 0;
  }

  .top-promo-slide .banner-pill {
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .top-promo-slide .banner-text {
    font-size: 0.75rem;
  }

  .bottom-promo-slider {
    padding-right: 0;
    margin-bottom: 8px;
    margin-top: 8px;
    height: 50px;
    min-height: 50px;
  }
  
  .bottom-promo-track {
    height: 50px;
  }
  
  .bottom-promo-slide,
  .bottom-promo-track .swiper-slide {
    height: 50px;
  }

  .bottom-promo-slide {
    padding: 0;
    gap: 0;
  }

  .bottom-promo-slide .banner-pill {
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .bottom-promo-slide .banner-text {
    font-size: 0.75rem;
  }

  .premium-grid,
  .sponsors-grid {
    gap: 5px;
  }

  .promo-top-slot,
  .promo-bottom-slot {
    height: 45px;
    font-size: 0.65rem;
  }

  .promo-button-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 5px;
  }

  .promo-button {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .header-left {
    display: none;
  }

  .header-right {
    gap: var(--gap-sm);
    width: 100%;
    justify-content: flex-end;
  }

  .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .btn span {
    display: none;
  }

  .btn i {
    margin: 0;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Selection */
::selection {
  background: var(--accent-primary);
  color: white;
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Loading State */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-card) 0%,
    var(--bg-card-hover) 50%,
    var(--bg-card) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* Error State */
.error-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.error-state .error-icon {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: var(--gap-lg);
}

.error-state p {
  color: var(--text-secondary);
  margin-bottom: var(--gap-lg);
  font-size: 1rem;
}

/* Empty State */
.empty-message {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  gap: var(--gap-sm);
}

.empty-message i {
  font-size: 2rem;
  opacity: 0.5;
}

.empty-message p {
  margin: 0;
}

/* ==========================================
     CashbackTV Sports Page Styles
     ========================================== */

/* Page Title in Header */
.page-title {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.page-title i {
  font-size: 1.3rem;
  color: var(--accent-primary);
}

/* Sports Container Layout */
.sports-container {
  flex: 1;
  display: flex;
  gap: var(--gap-xl);
  padding: var(--gap-xl);
  overflow-y: auto;
}

.sports-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
}

/* Featured Match / Video Player */
.featured-match {
  display: flex;
  flex-direction: column;
}

.match-player {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.player-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(
      135deg,
      rgba(0, 100, 0, 0.3) 0%,
      rgba(0, 50, 0, 0.5) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60"><rect fill="%23006400" width="100" height="60"/><line x1="50" y1="0" x2="50" y2="60" stroke="white" stroke-width="0.5" opacity="0.3"/><circle cx="50" cy="30" r="10" fill="none" stroke="white" stroke-width="0.5" opacity="0.3"/></svg>');
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-indicator {
  position: absolute;
  top: var(--gap-lg);
  left: var(--gap-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-primary);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.5);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.match-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  padding: var(--gap-xl);
}

.match-teams {
  display: flex;
  align-items: center;
  gap: var(--gap-xl);
}

.team {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: var(--gap-sm);
  min-width: 120px;
}

.team-logo {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.team-logo i {
  font-size: 2rem;
  color: var(--text-primary);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.match-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.match-score .score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.match-score .match-time {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(0, 255, 136, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.play-button {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  background: var(--accent-primary);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.play-button:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(233, 69, 96, 0.5);
}

.play-button i {
  font-size: 1.3rem;
}

.match-details-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap-md) var(--gap-lg);
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-color);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.detail-item i {
  color: var(--accent-cyan);
}

.detail-item.viewers i {
  color: var(--accent-primary);
}

/* Sport Category Tabs */
.sport-tabs {
  display: flex;
  gap: var(--gap-sm);
  padding: var(--gap-sm);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.sport-tab {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

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

.sport-tab.active {
  background: var(--accent-primary);
  color: white;
}

.sport-tab i {
  font-size: 1.1rem;
}

/* Section Titles */
.section-title {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--gap-lg);
}

.section-title i {
  color: var(--accent-cyan);
}

.live-pulse {
  width: 10px;
  height: 10px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Matches List */
.live-matches-section,
.upcoming-matches-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  border: 1px solid var(--border-color);
}

.matches-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

/* Match Card */
.match-card {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: var(--gap-md) var(--gap-lg);
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.match-card:hover {
  border-color: var(--accent-primary);
  background: var(--bg-card-hover);
}

.match-card.live {
  border-left: 3px solid var(--accent-primary);
}

.match-time-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  gap: 2px;
}

.match-status {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}

.match-status.live {
  /* background: var(--accent-primary); */
  color: white;
  animation: pulse 2s infinite;
}

.match-minute {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-green);
}

.match-date {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.match-hour {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.match-sport {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent-cyan);
}

.match-sport.basketball {
  background: rgba(255, 149, 0, 0.1);
  color: var(--accent-orange);
}

.match-sport.tennis {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent-green);
}

.match-sport i {
  font-size: 1.2rem;
}

.match-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.match-team .team-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.match-team .team-score {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 24px;
  text-align: center;
}

.match-league {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 100px;
}

.watch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--accent-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

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

.watch-btn.notify {
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.watch-btn.notify:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.watch-btn i {
  font-size: 1rem;
}

/* Scores Sidebar */
.scores-sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  position: sticky;
  top: var(--gap-xl);
  height: fit-content;
}

.sidebar-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  border: 1px solid var(--border-color);
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--gap-md);
}

.sidebar-title i {
  color: var(--accent-gold);
}

/* Live Scores List */
.live-scores-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.score-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap-sm) var(--gap-md);
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
}

.score-item.live {
  border-left-color: var(--accent-primary);
}

.score-teams {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.score-vs {
  font-weight: 700;
  color: var(--text-primary);
  padding: 0 6px;
}

.score-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-green);
}

.score-item:not(.live) .score-time {
  color: var(--text-muted);
}

/* Leagues List */
.leagues-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.league-item {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: var(--gap-sm) var(--gap-md);
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.league-item:hover {
  border-color: var(--accent-primary);
  background: var(--bg-card-hover);
}

.league-flag {
  font-size: 1.2rem;
}

.league-name {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.league-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

/* ==========================================
     League Standings Table
     ========================================== */
.standings-section {
  padding-bottom: var(--gap-sm);
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.standings-table thead {
  background: rgba(255, 255, 255, 0.03);
}

.standings-table th {
  padding: 8px 6px;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.standings-table th.col-pos {
  width: 28px;
  text-align: center;
}

.standings-table th.col-team {
  text-align: left;
  padding-left: 10px;
}

.standings-table th.col-played,
.standings-table th.col-points {
  width: 32px;
  text-align: center;
}

.standings-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background var(--transition-fast);
}

.standings-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.01);
}

.standings-table tbody tr:hover {
  background: rgba(233, 69, 96, 0.08);
}

.standings-table tbody tr.top-team {
  background: rgba(0, 255, 136, 0.05);
}

.standings-table tbody tr.top-team:hover {
  background: rgba(0, 255, 136, 0.1);
}

.standings-table td {
  padding: 8px 6px;
  vertical-align: middle;
}

.standings-table td.pos {
  text-align: center;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.standings-table tr.top-team td.pos {
  color: var(--accent-green);
}

.standings-table td.team {
  text-align: left;
  font-size: 0.8rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 10px;
}

.standings-table td.played,
.standings-table td.points {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.standings-table td.points {
  font-weight: 700;
  color: var(--text-primary);
}

.standings-table tr.top-team td.points {
  color: var(--accent-green);
}

/* View All Link */
.view-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin-top: var(--gap-sm);
  background: rgba(233, 69, 96, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.view-all-link:hover {
  background: var(--accent-primary);
  color: white;
}

.view-all-link i {
  font-size: 0.9rem;
}

/* Sports Page Responsive */
@media (max-width: 1400px) {
  .scores-sidebar {
    width: 260px;
  }
}

@media (max-width: 1200px) {
  .scores-sidebar {
    width: 240px;
  }

  .match-teams {
    gap: var(--gap-lg);
  }

  .team {
    min-width: 100px;
  }

  .match-score .score {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .sports-container {
    flex-direction: column;
  }

  .scores-sidebar {
    width: 100%;
    flex-direction: row;
    position: static;
    overflow-x: auto;
  }

  .sidebar-section {
    min-width: 280px;
    flex-shrink: 0;
  }

  .match-card {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .sports-container {
    padding: var(--gap-md);
  }

  .match-teams {
    flex-direction: column;
    gap: var(--gap-md);
  }

  .team {
    flex-direction: row;
    min-width: auto;
  }

  .team-logo {
    width: 50px;
    height: 50px;
  }

  .match-score {
    flex-direction: row;
    gap: var(--gap-md);
  }

  .match-score .score {
    font-size: 2rem;
  }

  .sport-tabs {
    overflow-x: auto;
    padding: var(--gap-sm);
  }

  .sport-tab {
    white-space: nowrap;
  }

  .sport-tab span {
    display: none;
  }

  .match-card {
    padding: var(--gap-sm);
  }

  .match-league {
    display: none;
  }

  .watch-btn span {
    display: none;
  }

  .page-title span {
    display: none;
  }

  .scores-sidebar {
    flex-direction: column;
  }

  .sidebar-section {
    min-width: auto;
  }
}

/* =========================================
     CASHBACKTV PAGE - Simplified Video Player
     ========================================= */

.cashbacktv-container {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  box-sizing: border-box;
  overflow-x: hidden;
}

.cashbacktv-container.with-header-offset {
  margin-top: calc(var(--header-height) + var(--gap-lg));
}

.promo-top-grid,
.promo-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 var(--gap-lg);
}

.promo-top-slot,
.promo-bottom-slot {
  height: 70px;
  background: linear-gradient(135deg, #111827, #1f2937);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0;
  overflow: hidden;
}

.promo-top-slot img,
.promo-bottom-slot img,
.promo-top-slot a,
.promo-bottom-slot a {
  width: 100%;
  height: 100%;
  display: block;
}

.promo-top-slot img,
.promo-bottom-slot img {
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

.cashbacktv-grid {
  display: flex;
  gap: var(--gap-md);
  padding: 0 var(--gap-lg);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  align-items: flex-start;
  /* Viewport'a göre yükseklik hesapla */
  min-height: 0;
}

.player-area {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  flex: 1;
  min-width: 0;
  min-height: 0;
}

/* TV Video Ads */
.tv-video-ads {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  margin-bottom: var(--gap-md);
}

.tv-video-ad-item {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tv-video-ad {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: contain;
  background: #000;
}

.tv-video-ad-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tv-video-ad {
    max-height: 250px;
  }
}

/* Chat Sidebar */
.chat-sidebar {
  position: sticky;
  top: 0;
  width: 423px;
  max-width: 423px;
  flex-shrink: 0;
  /* Mobil için auto, desktop için viewport hesaplaması media query'de */
  height: auto;
  max-height: 648px;
  min-height: auto;
}

/* Desktop'ta viewport'a göre yükseklik hesapla */
@media (min-width: 1201px) and (max-width: 1400px) {
  .chat-sidebar {
    width: 380px;
    max-width: 380px;
    height: calc(
      100vh - var(--header-height) - var(--gap-lg) - 70px - 70px - var(--gap-md) *
        2
    );
    max-height: 648px;
    min-height: 400px;
  }
}

@media (min-width: 1401px) {
  .chat-sidebar {
    height: calc(
      100vh - var(--header-height) - var(--gap-lg) - 70px - 70px - var(--gap-md) *
        2
    );
    max-height: 648px;
    min-height: 400px;
  }
}

.chat-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px var(--gap-lg);
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.chat-header i {
  font-size: 1.1rem;
  color: var(--accent-cyan);
}

.chat-iframe {
  width: 100%;
  flex: 1;
  border: none;
  background: transparent;
  min-height: 0;
}

/* Middle banner ad between player and buttons */
.middle-promo-banner {
  width: 100%;
  min-height: 70px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* Bottom Button Ads */
.promo-button-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin-top: var(--gap-md);
}

.promo-button-grid-mobile {
  display: none;
  padding: 0 var(--gap-lg);
}

.promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-button:hover {
  background: rgba(0, 242, 255, 0.12);
  border-color: #00f2ff;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.5), 0 0 30px rgba(0, 242, 255, 0.25);
  transform: translateY(-3px);
}

/* Fixed bottom promo bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #0f0f0f;
  border-top: 1px solid #333;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.sticky-slot {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.2s ease;
}

.docked-slot {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100%;
  box-shadow: none;
}

/* CashbackTV sayfası için body padding - JavaScript ile ekleniyor */

/* Right Sidebar */
.broadcast-sidebar {
  background: transparent;
  border-radius: var(--radius-lg);
  border: none;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  width: 404px;
  max-width: 404px;
  flex-shrink: 0;
  /* Mobil için auto, desktop için viewport hesaplaması media query'de */
  height: auto;
  max-height: 644px;
  min-height: auto;
}

/* Desktop'ta viewport'a göre yükseklik hesapla */
@media (min-width: 1201px) and (max-width: 1400px) {
  .broadcast-sidebar {
    width: 360px;
    max-width: 360px;
    height: calc(
      100vh - var(--header-height) - var(--gap-lg) - 70px - 70px - var(--gap-md) *
        2
    );
    max-height: 644px;
    min-height: 400px;
  }
}

@media (min-width: 1401px) {
  .broadcast-sidebar {
    height: calc(
      100vh - var(--header-height) - var(--gap-lg) - 70px - 70px - var(--gap-md) *
        2
    );
    max-height: 644px;
    min-height: 400px;
  }
}

.broadcast-accordion {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: #0f1224;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.broadcast-accordion-header {
  width: 100%;
  padding: 15px;
  background: #1a1a1a;
  border: none;
  border-bottom: 1px solid #333;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.broadcast-accordion-header:hover {
  background: #222;
}

.broadcast-accordion-header .accordion-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.broadcast-accordion-header .accordion-icon {
  font-size: 1.1rem;
}

.broadcast-accordion-header {
  display: none;
}

.broadcast-collapse-content {
  max-height: 1200px !important;
  opacity: 1 !important;
}

.broadcast-accordion-header .accordion-chevron {
  transition: transform var(--transition-fast);
  color: var(--text-secondary);
  transform: rotate(0deg);
}

.broadcast-accordion-header.open .accordion-chevron {
  transform: rotate(180deg);
}

.broadcast-collapse-content {
  background: rgba(0, 0, 0, 0.2);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.broadcast-collapse-content.open {
  max-height: 1200px;
  opacity: 1;
}

@media (min-width: 1201px) {
  .broadcast-collapse-content,
  .broadcast-collapse-content.open {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-height: 0 !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: hidden !important;
  }
}

/* Bu media query artık max-width: 1200px içinde ele alınıyor */

.sidebar-header {
  padding: var(--gap-lg);
  border-bottom: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.3);
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.sidebar-title i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

/* Sidebar Tabs */
.broadcast-sidebar.left {
  position: sticky;
  top: 0;
}

.sidebar-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.sidebar-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  padding: var(--gap-md);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.sidebar-tab.active {
  color: var(--accent-primary);
  border-bottom-color: var(--accent-primary);
  background: rgba(233, 69, 96, 0.1);
}

.sidebar-tab i {
  font-size: 1rem;
}

/* Sidebar Content */
.sidebar-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.tab-panel {
  display: none;
  padding: var(--gap-md);
}

.tab-panel.active {
  display: block;
}

/* Player Column */
.player-column {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

/* Matches List */
.matches-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

/* Force minimalist neon time badges in match list */
.matches-list .match-status,
.matches-list .match-status.live {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.matches-list .match-status .status-text {
  color: #39ff14 !important;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  font-weight: 800;
  font-size: 1.1rem;
  margin-right: 15px;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.match-item {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: var(--gap-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.match-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-color);
  transform: translateX(-4px);
}

.match-status {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 45px;
}

.match-status.live {
  color: #00ff00;
}

.match-status .status-dot {
  width: 6px;
  height: 6px;
  background: #00ff00;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
}

.match-status .status-text {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "Courier New", monospace;
  color: #00ff00;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.7), 0 0 10px rgba(0, 255, 0, 0.3);
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.match-status:not(.live) .status-text {
  color: #00ff00;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.7), 0 0 10px rgba(0, 255, 0, 0.3);
}

.match-info {
  flex: 1;
  display: flex;
  align-items: center;
}

.match-teams {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.match-score {
  margin-left: 8px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* Modern Match Card - Compact Design */
.match-card-modern {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.match-card-modern:hover {
  background: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(233, 69, 96, 0.3);
}

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

.team-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

/* Horizontal Team Section - Logo and Name side by side */
.team-section-horizontal {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.team-section-horizontal.reverse {
  flex-direction: row-reverse;
}

.match-card-modern .team-section-horizontal .team-logo {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.match-card-modern .team-section-horizontal .team-name {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.team-logo {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.team-name {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
}

.match-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.match-score-compact {
  display: flex;
  align-items: center;
  gap: 6px;
}

.match-score-compact .score-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 16px;
  text-align: center;
}

.match-score-compact .score-sep {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.match-time-compact {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 8px;
}

.match-time-compact.live {
  color: #ff3333 !important;
  background: rgba(255, 51, 51, 0.2) !important;
  border: 1px solid rgba(255, 51, 51, 0.4) !important;
  text-shadow: 0 0 8px rgba(255, 51, 51, 0.5) !important;
}

.match-time-compact .live-dot {
  width: 6px;
  height: 6px;
  background: #ff3333 !important;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 51, 51, 0.9) !important;
}

/* Upcoming Match Time */
.match-time-upcoming {
  font-size: 1rem;
  font-weight: 700;
  color: #4ade80;
  text-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
  margin-bottom: 4px;
}

.match-competition {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Loading State */
.matches-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(233, 69, 96, 0.1);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

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

.matches-loading p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* No Matches State */
.no-matches {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
}

.no-matches i {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

.no-matches p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* No Channels State */
.no-channels {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
}

.no-channels i {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

.no-channels p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Channels List */
.channels-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.channel-item {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: var(--gap-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.channel-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-color);
  transform: translateX(4px);
}

.channel-item.active-channel {
  background: rgba(233, 69, 96, 0.15);
  border-color: var(--accent-primary);
  transform: translateX(4px);
}

.channel-item.active-channel .channel-name {
  color: var(--accent-primary);
  font-weight: 600;
}

.channel-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent-cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.channel-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.channel-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-status.on-air {
  color: var(--accent-green);
}

/* Promo Strips */
.promo-strip {
  width: 100%;
  height: 90px;
  background: #333;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-lg);
  border: 1px solid var(--border-color);
}

.promo-strip.bottom-slot {
  margin-top: var(--gap-lg);
  margin-bottom: 0;
}

#promo-placeholder,
.promo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed #444;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-player-wrapper {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  width: 100%;
  /* Mobil için aspect-ratio, desktop için viewport hesaplaması media query'de */
  aspect-ratio: 16 / 9;
}

/* Desktop'ta viewport'a göre yükseklik hesapla */
@media (min-width: 1201px) {
  .video-player-wrapper {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: none;
    min-height: auto;
  }
  .player-area {
    order: unset;
  }
  .broadcast-sidebar {
    order: unset;
  }
}

.player-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.player-container.is-playing {
  background: #000;
}

.player-container .preplay-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 3;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.player-container .preplay-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-container .preplay-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  overflow: visible;
  display: flex;
  align-items: center;
}

.player-container .preplay-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffd54f, #f9a825);
  transition: width 0.15s linear;
  flex: 1;
}

.player-container .ad-skip-pill {
  position: absolute;
  right: 8px;
  bottom: 14px;
  padding: 5px 10px;
  border-radius: 18px;
  background: rgba(32, 33, 36, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  z-index: 10;
}

.player-container .ad-skip-pill.loading {
  cursor: wait;
  pointer-events: none;
}

.player-container .ad-skip-pill .skip-countdown {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.player-container .ad-skip-pill .skip-text {
  font-weight: 600;
}

.player-container .ad-skip-pill:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.24);
}

.player-container .ad-skip-pill:disabled {
  cursor: not-allowed;
}

.player-container .ad-skip-pill i {
  font-size: 0.9rem;
}

.player-container .preplay-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 80%);
}

.player-container .preplay-controls .preplay-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.player-container .preplay-controls .ad-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-left: 8px;
}

.player-container .preplay-controls .ad-mute-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.player-container .preplay-controls .ad-mute-toggle:hover {
  background: rgba(255, 255, 255, 0.24);
}

.player-container .preplay-controls .ad-play-toggle,
.player-container .preplay-controls .ad-fs-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.player-container .preplay-controls .ad-play-toggle:hover,
.player-container .preplay-controls .ad-fs-toggle:hover {
  background: rgba(255, 255, 255, 0.24);
}

.player-container .preplay-controls .ad-pill {
  margin-left: auto;
}

.player-container .preplay-controls .ad-fs-toggle {
  margin-left: 6px;
}

.player-container .preplay-video-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  z-index: 3;
  filter: brightness(0.7);
  transform: scale(1.2);
}

.player-container .preplay-video {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 4;
}

.player-container .live-video-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  z-index: 0;
  filter: brightness(0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: scale(1.2);
}

.player-container .live-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.player-container .center-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.player-container .center-play-icon.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  cursor: pointer;
}

.player-container .center-play-icon.paused {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.player-container .center-play-icon i {
  font-size: 3.5rem;
  color: #fff;
  margin-left: 4px;
}

.player-container .player-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background: 
      radial-gradient(ellipse at center, rgba(233, 69, 96, 0.1) 0%, transparent 70%),
      linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%); 
      */
  z-index: 2;
}

.player-container .live-indicator {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(233, 69, 96, 0.9);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.8);
  }
}

.player-container .live-dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.player-container .live-text {
  color: white;
}

.player-container .match-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  padding: var(--gap-xl);
}

.player-container.is-playing .player-placeholder {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.player-container.is-playing .live-video {
  opacity: 1;
}

.player-container.is-playing .live-video-backdrop {
  opacity: 1;
}

.player-container.video-paused .live-video {
  opacity: 0;
}

.player-container.video-paused .live-video-backdrop {
  opacity: 0;
}

.player-container.video-paused .custom-controls {
  display: none !important;
}

.player-container .player-placeholder.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Loading Overlay */
.player-container .player-loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.player-container .player-loading-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.player-container .player-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #e94560;
  border-radius: 50%;
  animation: player-spin 0.8s linear infinite;
  margin-bottom: 16px;
}

@keyframes player-spin {
  to {
    transform: rotate(360deg);
  }
}

.player-container .player-loading-text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
}

.player-container .custom-controls {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-container.is-playing .custom-controls {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.player-container.preplay-active .custom-controls {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.player-container.is-playing .custom-controls.controls-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Tam ekran modunda kontrollerin her zaman görünür ve erişilebilir olması */
.player-container:fullscreen .custom-controls,
.player-container:-webkit-full-screen .custom-controls,
.player-container:-moz-full-screen .custom-controls,
.player-container:-ms-fullscreen .custom-controls {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 999999 !important;
}

/* Tam ekran modunda controls-hidden class'ı olsa bile kontroller görünsün */
.player-container:fullscreen.is-playing .custom-controls.controls-hidden,
.player-container:-webkit-full-screen.is-playing .custom-controls.controls-hidden,
.player-container:-moz-full-screen.is-playing .custom-controls.controls-hidden,
.player-container:-ms-fullscreen.is-playing .custom-controls.controls-hidden {
  opacity: 0.9 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Tam ekran modunda fare hareketi ile kontroller tam opak olsun */
.player-container:fullscreen:hover .custom-controls,
.player-container:-webkit-full-screen:hover .custom-controls,
.player-container:-moz-full-screen:hover .custom-controls,
.player-container:-ms-fullscreen:hover .custom-controls {
  opacity: 1 !important;
}

.custom-controls .ctrl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-controls .ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.custom-controls .volume-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.custom-controls .volume-group::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  width: 120px;
  height: 60px;
  background: transparent;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 99;
}

.custom-controls .volume-group:hover::before,
.custom-controls .volume-group.hover-active::before {
  pointer-events: auto;
}

.custom-controls .volume-group:hover::before,
.custom-controls .volume-group.hover-active::before {
  opacity: 1;
  visibility: visible;
}

.custom-controls .volume-group .volume-slider {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  width: 110px;
  height: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0;
  accent-color: #e94560;
  appearance: none;
  cursor: pointer;
  z-index: 100;
}

.custom-controls .volume-group:hover .volume-slider,
.custom-controls .volume-group.hover-active .volume-slider {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.custom-controls .volume-group:hover ~ .live-pill-always,
.custom-controls .volume-group.hover-active ~ .live-pill-always {
  transform: translateX(130px);
}

.custom-controls .live-pill-always {
  transition: transform 0.2s ease;
}

.custom-controls .volume-group:hover ~ .live-pill-always {
  transform: translateX(130px);
}

.custom-controls .volume-group .volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.custom-controls .volume-group .volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  border: none;
}

.player-container .live-pill-always {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(233, 69, 96, 0.14);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.82rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.player-container .live-pill-always .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e94560;
  box-shadow: 0 0 8px rgba(233, 69, 96, 0.7);
  animation: blink 1s ease-in-out infinite;
}

.player-container .live-pill-always .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e94560;
  box-shadow: 0 0 8px rgba(233, 69, 96, 0.7);
  animation: blink 1s ease-in-out infinite;
}

.custom-controls .controls-spacer {
  flex: 1 1 auto;
}

.custom-controls .live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(233, 69, 96, 0.14);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.82rem;
}

.custom-controls .live-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e94560;
  box-shadow: 0 0 8px rgba(233, 69, 96, 0.7);
  animation: blink 1s ease-in-out infinite;
}

@media (max-width: 768px) {
  .custom-controls .volume-group .volume-slider {
    width: 80px;
  }
  .custom-controls .volume-group::before {
    width: 100px;
  }
  .custom-controls .controls-spacer {
    flex: 1;
  }
  .custom-controls .live-pill-always {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
}

.player-container .match-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-2xl);
}

.player-container .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  min-width: 150px;
}

.player-container .team-logo {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-cyan);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.player-container .team.home .team-logo {
  color: var(--accent-primary);
}

.player-container .team.away .team-logo {
  color: var(--accent-cyan);
}

.player-container .team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.player-container .match-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-sm);
}

.player-container .match-score .score {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 4px;
}

.player-container .match-score .match-time {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(0, 255, 136, 0.2);
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

/* Player Overlay Content (Main Container) */
.player-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 80%;
  z-index: 20;
}

/* Match Info Container (Teams + Score) */
.player-overlay-content .match-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* Team Styling */
.player-overlay-content .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.player-overlay-content .team-logo {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.player-overlay-content .team.home .team-logo {
  color: var(--accent-primary);
}

.player-overlay-content .team.away .team-logo {
  color: var(--accent-cyan);
}

.player-overlay-content .team-name {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

/* Live Score Display */
.player-overlay-content .live-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 4px;
  line-height: 1;
  margin: 0 20px;
}

/* Perfect Circle Play Button */
.player-overlay-content .play-button-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
}

.player-overlay-content .play-button-container:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 60px rgba(0, 255, 136, 0.2);
}

.player-overlay-content .play-button-container i {
  font-size: 2.5rem;
  color: #ffffff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  margin-left: 4px; /* Slight offset for visual centering of play icon */
  transition: all var(--transition-base);
}

.player-overlay-content .play-button-container:hover i {
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
}

/* Player Controls */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap-md) var(--gap-lg);
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid var(--border-color);
}

.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.controls-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.control-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.control-btn.play {
  width: 50px;
  height: 50px;
  background: var(--accent-primary);
  color: white;
  font-size: 1.3rem;
  border-radius: 50%;
}

.control-btn.play:hover {
  background: var(--accent-pink);
  transform: scale(1.1);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.volume-progress {
  height: 100%;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
}

.time-display {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

/* Match Info Card */
.match-info-card {
  margin-top: var(--gap-lg);
  padding: var(--gap-lg);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gap-md);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid var(--border-color);
}

.league-info {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.league-info i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.match-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  /* background: rgba(233, 69, 96, 0.15); */
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.match-status .status-dot {
  width: 8px;
  height: 8px;
  /* background: var(--accent-primary); */
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

.info-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-lg);
}

.info-details .detail-item {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.info-details .detail-item i {
  color: var(--text-secondary);
}

.info-details .detail-item.viewers {
  color: var(--accent-green);
}

.info-details .detail-item.viewers i {
  color: var(--accent-green);
}

/* CashbackTV Page Responsive */
/* Tablet ve mobil - dikey düzen, reklamlar gözüksün */
@media (max-width: 1200px) {
  .cashbacktv-grid {
    flex-direction: column;
    gap: var(--gap-md);
    padding: 0 var(--gap-md);
  }
  .player-area {
    width: 100%;
    flex-shrink: 1;
    min-width: 0;
    order: 1;
  }
  .video-player-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: none;
    min-height: auto;
  }
  .broadcast-sidebar,
  .broadcast-sidebar.left {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    max-height: none;
    min-height: auto;
    top: auto !important;
    order: 0;
  }
  .broadcast-accordion {
    width: 100% !important;
    max-width: 100% !important;
  }
  .broadcast-accordion-header {
    display: flex !important;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
  }
  .broadcast-accordion-header .accordion-title {
    flex: 1;
    justify-content: center;
  }
  .broadcast-accordion-header .accordion-chevron {
    display: block !important;
    position: absolute;
    right: 15px;
  }
  .broadcast-accordion-header .accordion-text {
    display: inline;
  }
  .broadcast-collapse-content {
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
  }
  /* Mobilde başlangıçta kapalı - HTML'deki open class'ını override et */
  .broadcast-collapse-content.open {
    max-height: 0 !important;
    opacity: 0 !important;
  }
  /* JavaScript tarafından açıldığında (data-mobile-open attribute ile) - daha spesifik */
  .broadcast-collapse-content.open[data-mobile-open="true"],
  .broadcast-collapse-content[data-mobile-open="true"] {
    max-height: 1200px !important;
    opacity: 1 !important;
  }
  .sidebar-tabs {
    border-radius: 0;
  }
  .chat-sidebar {
    display: none;
  }
  .promo-button-grid-desktop {
    display: none;
  }
  .promo-button-grid-mobile {
    display: grid;
    margin-top: var(--gap-lg);
    padding: 0 var(--gap-md);
    order: 2;
  }
  .promo-top-grid,
  .promo-bottom-grid {
    padding: 0 var(--gap-md);
    gap: 8px;
  }
  .promo-top-slot,
  .promo-bottom-slot {
    height: 60px;
    font-size: 0.8rem;
  }
  .promo-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil - tablet ile aynı düzen */
@media (max-width: 768px) {
  .cashbacktv-grid {
    padding: 0 var(--gap-md);
    gap: var(--gap-md);
  }
  .promo-button-grid-desktop {
    display: none;
  }
  .promo-button-grid-mobile {
    display: grid;
    margin-top: var(--gap-lg);
    padding: 0 var(--gap-md);
  }
  .promo-top-grid,
  .promo-bottom-grid {
    padding: 0 var(--gap-md);
    gap: 6px;
  }
  .promo-top-slot,
  .promo-bottom-slot {
    height: 55px;
    font-size: 0.75rem;
  }
  .promo-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .player-container .live-indicator {
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .player-container .match-teams {
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .player-container .team {
    flex-direction: row;
    gap: var(--gap-sm);
  }

  .player-overlay-content {
    width: 95%;
    gap: 15px;
  }

  .player-overlay-content .match-info {
    flex-wrap: wrap;
    gap: 10px;
  }

  .player-overlay-content .live-score {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0 10px;
    order: 0;
    width: 100%;
    text-align: center;
  }

  .player-overlay-content .team {
    flex: 1;
    min-width: 100px;
  }

  .player-overlay-content .team.home {
    order: 1;
  }

  .player-overlay-content .team.away {
    order: 2;
  }

  .player-overlay-content .team-logo {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .player-overlay-content .team-name {
    font-size: 0.85rem;
  }

  .player-overlay-content .play-button-container {
    width: 60px;
    height: 60px;
    order: 3;
  }

  .player-overlay-content .play-button-container i {
    font-size: 1.5rem;
  }

  .controls-right .control-btn:not(:last-child):not(:nth-last-child(2)) {
    display: none;
  }
}

.mobile-chat-button {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.mobile-chat-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.mobile-chat-button:active {
  transform: translateY(0);
}

/* Tablet ve mobil - chat butonu gözüksün */
@media (max-width: 1200px) {
  .mobile-chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-chat-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: var(--gap-md);
}

.mobile-chat-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.mobile-chat-modal {
  width: 100%;
  max-width: 500px;
  height: 80vh;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-chat-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px var(--gap-lg);
  border-bottom: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
}

.mobile-chat-modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.mobile-chat-modal-title i {
  font-size: 1.1rem;
  color: var(--accent-cyan);
}

.mobile-chat-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.mobile-chat-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.mobile-chat-modal-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.mobile-chat-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}
