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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f8fafc;
  overflow-x: hidden;
}

.website-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: #ffffff;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* Navigation Tabs */
.nav-tabs {
  display: flex;
  background: #f1f5f9;
  border-radius: 30px;
  padding: 4px;
  gap: 2px;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: 24px;
  border: none;
  background: transparent;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.tab-btn.active {
  background: #22c55e;
  color: white;
  box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

.tab-btn:hover:not(.active) {
  background: #e2e8f0;
  color: #475569;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  background: #fff;
  min-width: 100px;
  height: 45px;
}

.logo-img {
  max-width: 80px;
  max-height: 35px;
  object-fit: contain;
}

/* Notification Area */
.notification-area {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  padding: 8px 16px;
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
  max-width: 400px;
}

.notification-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.notification-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 8px;
}

.auth-btn {
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
  height: 40px;
}

.auth-btn.masuk {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.auth-btn.daftar {
  background: #22c55e;
  color: white;
  box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

.auth-btn:hover {
  transform: translateY(-1px);
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.header-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Settings Menu */
.settings-wrapper {
  position: relative;
}

.settings-menu {
  position: absolute;
  top: 35px;
  right: 0;
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.settings-wrapper:hover .settings-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.settings-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  color: #111827;
}

.settings-list {
  list-style: none;
  margin: 0 0 16px 0;
}

.setting-opt {
  padding: 8px 0;
  cursor: pointer;
  color: #374151;
  font-size: 13px;
  position: relative;
  padding-left: 28px;
}

.setting-opt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
}

.setting-opt.sel::before {
  border-color: #22c55e;
  background: #22c55e;
}

.main-container {
  flex: 1;
  display: flex;
  background: #f8fafc;
  min-height: calc(100vh - 72px);
}

/* Left Sidebar */
.sidebar-left {
  width: 260px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  overflow-y: auto;
  padding: 16px 0;
  flex-shrink: 0;
}

.sidebar-section {
  margin-bottom: 8px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.sidebar-item:hover {
  background: #f9fafb;
  color: #1f2937;
  border-left-color: #e5e7eb;
}

.sidebar-item.active {
  background: #22c55e;
  color: white;
  border-left-color: #22c55e;
}

.sidebar-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.sidebar-item span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-item img[class*="arrow-chevron"] {
  width: 12px;
  height: 12px;
  margin-left: auto;
  opacity: 0.7;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* Game Categories */
.game-categories {
  margin-bottom: 24px;
}

.category-tabs {
  display: flex;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px;
  gap: 4px;
  overflow-x: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-tab {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-tab.active {
  background: #22c55e;
  color: white;
  font-weight: 600;
}

.category-tab:hover:not(.active) {
  background: #f3f4f6;
  color: #374151;
}

/* Games Grid */
.games-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.game-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
}

.game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-card.large {
  aspect-ratio: 3/4;
}

.game-card img {
  width: 100%;
  height: 75%;
  object-fit: cover;
}

.game-info {
  padding: 8px;
  height: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.game-title {
  font-size: 10px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.game-players {
  font-size: 9px;
  color: #22c55e;
  font-weight: 500;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 12px 0;
  padding: 0 4px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.section-title img {
  width: 20px;
  height: 20px;
}

.section-nav {
  display: flex;
  gap: 6px;
}

.section-nav img {
  width: 28px;
  height: 28px;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.section-nav img:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

/* Right Sidebar */
.sidebar-right {
  width: 320px;
  background: #f8fafc;
  border-left: 1px solid #e5e7eb;
  padding: 20px;
  overflow-y: auto;
  flex-shrink: 0;
}

/* Promo Cards */
.promo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-card::after {
  content: '';
  width: 18px;
  height: 18px;
  background: #f3f4f6 url('../assets/0646c47a49514e8429f8956b911b36595a780aec.svg') center/8px 8px no-repeat;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.promo-icon img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.promo-content {
  flex: 1;
}

.promo-title {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.promo-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.3;
}

/* Save App Section */
.save-app-section {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: white;
  margin-top: 24px;
}

.save-app-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  gap: 12px;
}

.save-app-icon {
  font-size: 48px;
}

.save-app-text {
  text-align: left;
}

.save-app-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.save-app-subtitle {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.save-app-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-app-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

.modal-overlay.hidden {
  display: none;
}

.auth-modal {
  background: white;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  z-index: 10;
}

.auth-modal-body {
  display: flex;
  width: 100%;
}

.promo-side {
  flex: 1;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-side {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.auth-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.auth-tab-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 24px;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-tab-btn.active {
  background: #22c55e;
  color: white;
}

.auth-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.auth-panel.active {
  display: flex;
}

.auth-panel label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}

.auth-panel input {
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.auth-panel input:focus {
  outline: none;
  border-color: #22c55e;
}

.remember-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.remember-row a {
  color: #22c55e;
  text-decoration: none;
}

.primary-btn {
  padding: 12px;
  border: none;
  border-radius: 28px;
  background: #22c55e;
  color: white;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #16a34a;
  transform: translateY(-1px);
}


.live-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.live-chat-btn {
  background: #22c55e;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.live-chat-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}


@media (max-width: 1024px) {
  .notification-area {
    display: none;
  }
  
  .sidebar-right {
    width: 280px;
  }
  
  .games-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 12px;
  }
  
  .sidebar-left {
    width: 220px;
  }
  
  .sidebar-right {
    width: 250px;
  }
  
  .main-content {
    padding: 16px;
  }
  
  .games-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .auth-modal {
    flex-direction: column;
    max-width: 95%;
  }
  
  .promo-side {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .main-container {
    flex-direction: column;
  }
  
  .sidebar-left,
  .sidebar-right {
    width: 100%;
    height: auto;
    max-height: 200px;
  }
  
  .games-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-tabs {
    padding: 3px;
  }
  
  .tab-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}


/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-subtitle-2 {
  font-size: 18px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 20px;
}

.hero-signature {
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Main Promotional Cards */
.promo-cards-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.promo-card-large {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.promo-card-large:hover {
  transform: translateY(-4px);
}

.olahraga-card {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.kasino-card {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
}

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

.promo-card-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.promo-card-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
  opacity: 0.9;
}

.promo-card-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-card-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.promo-card-image {
  flex: 0 0 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Game Sections */
.game-sections {
  space-y: 32px;
}

.game-section {
  margin-bottom: 32px;
}

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

.game-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.game-section-nav {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.nav-arrow:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.game-card-home {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  aspect-ratio: 16/9;
}

.game-card-home:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.game-card-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 16px;
  color: white;
}

.game-card-overlay .game-card-title {
  font-size: 14px;
  font-weight: 600;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0 16px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.section-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.section-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.section-link:hover {
  color: #22c55e;
}

.section-link img {
  width: 12px;
  height: 12px;
}

/* Sidebar Styles */
.sidebar-left {
  flex: 0 0 280px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  overflow-y: auto;
  padding: 16px 0;
}

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  margin-top: 20px;
}

.currency-info {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 16px;
}

.affiliate-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.affiliate-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.affiliate-text {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

/* Logo Fix */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  background: #fff;
  min-width: 120px;
  height: 45px;
  flex-shrink: 0;
}

.logo-img {
  max-width: 100px;
  max-height: 35px;
  object-fit: contain;
}

/* Fix Lotre Color */
.sidebar-item:has(.sidebar-icon[alt*="Lotre"]),
.category-tab:contains("Lotre"),
.game-section:has(.game-section-title:contains("Lotre")) {
  color: #8b5cf6 !important;
}

.sidebar-item:has(.sidebar-icon[alt*="Lotre"]):hover {
  background: #f3f4f6;
  border-left-color: #8b5cf6;
}


/* Page Header */
.page-header {
  margin-bottom: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

.page-title {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

/* Sports Row */
.sports-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

/* Sport Card */
.sport-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.sport-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #22c55e;
}

.sport-card.live {
  border-left: 4px solid #ef4444;
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

/* Sport Header */
.sport-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sport-league {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
}

.live-indicator {
  font-size: 10px;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  animation: pulse 2s infinite;
}

.match-date {
  font-size: 12px;
  font-weight: 600;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Match Info */
.match-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 8px 0;
}

.team {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  flex: 1;
  text-align: center;
}

.score {
  font-size: 18px;
  font-weight: 800;
  color: #22c55e;
  margin: 0 12px;
  padding: 4px 8px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 6px;
}

.vs {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  margin: 0 12px;
}

/* Match Time */
.match-time {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #ef4444;
  margin-bottom: 12px;
  padding: 4px 8px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 4px;
  display: inline-block;
  width: 100%;
}

/* Odds Section */
.odds-section {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.odds-btn {
  flex: 1;
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
}

.odds-btn:hover {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
  transform: translateY(-1px);
}

.odds-btn:active {
  transform: translateY(0);
}

/* Bet Slip */
.bet-slip {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.bet-slip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 12px 12px 0 0;
}

.bet-slip-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.bet-count {
  background: #22c55e;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

.bet-slip-content {
  padding: 16px;
}

.empty-slip {
  text-align: center;
  color: #6b7280;
}

.empty-slip p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.empty-slip small {
  font-size: 12px;
  color: #9ca3af;
}


.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-sm {
  font-size: 0.875rem;
}

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

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.p-4 {
  padding: 1rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.promo-banner-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s ease;
}

.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.banner-slide.active {
  opacity: 1;
}

.banner-slide:nth-child(1) {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.banner-slide:nth-child(2) {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.banner-slide:nth-child(3) {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.banner-content {
  flex: 1;
  color: white;
  z-index: 2;
}

.banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.banner-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-subtitle {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 2px;
}

.banner-main-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}

.banner-footer {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.banner-signature {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  opacity: 0.7;
}

.banner-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.banner-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Banner Navigation */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10;
  pointer-events: none;
}

.banner-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Banner Indicators */
.banner-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.games-grid-container {
  margin-bottom: 24px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.game-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  position: relative;
  aspect-ratio: 1;
}

.game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #22c55e;
}

.game-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.game-card .game-info {
  padding: 6px 8px;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #fff;
}

.game-card .game-title {
  font-size: 9px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card .game-players {
  font-size: 8px;
  color: #22c55e;
  font-weight: 500;
}

/* Sidebar Count Styling */
.sidebar-count {
  background: #ef4444;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: 8px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.sidebar-item:has(.sidebar-count[class*="LIVE"]) .sidebar-count,
.sidebar-count:contains("LIVE") {
  background: #22c55e;
  animation: pulse 2s infinite;
}

/* Responsive Games Grid */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(10, 1fr);
  }
}

@media (max-width: 992px) {
  .games-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
  }
  
  .game-card .game-title {
    font-size: 8px;
  }
  
  .game-card .game-players {
    font-size: 7px;
  }
}

@media (max-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
}

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