body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #101820;
  color: #fff;
  overflow-x: hidden;
}

.login-container {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 0 100px rgba(255, 239, 191, 0.4);
  margin: 20px;
}

#app-container {
  display: flex;
  min-height: 100vh;
}

#sidebar {
  width: 80px;
  background: #181f2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  min-height: 100vh;
}

.sidebar-logo {
  width: 48px;
  margin-bottom: 32px;
}

.sidebar-icons span {
  display: block;
  font-size: 1.7em;
  margin: 24px 0;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sidebar-icons span:hover {
  opacity: 1;
}

#main-content {
  flex: 1;
  background: #101820;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#feature-banner {
  position: relative;
  height: 340px;
  background: linear-gradient(120deg, #1d2736 60%, #101820 100%);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-width: 0;
}

#feature-banner .banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.7);
  z-index: 0;
}

#feature-banner .banner-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 48px;
  max-width: 600px;
}

#feature-banner .banner-title {
  font-size: 2.7em;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

#feature-banner .banner-meta {
  font-size: 1.1em;
  color: #b3bbc6;
  margin-bottom: 16px;
}

#feature-banner .banner-desc {
  font-size: 1.15em;
  color: #e2e8f0;
  margin-bottom: 24px;
  max-width: 90%;
}

#feature-banner .banner-actions {
  display: flex;
  gap: 18px;
}

.banner-btn {
  background: #fff;
  color: #101820;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: 600;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-btn.secondary {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid #fff;
}

.banner-btn:hover {
  background: #00ed82;
  color: #101820;
}

#live-now {
  margin-top: 18px;
  padding: 0 48px;
}

.section-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.horizontal-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.carousel-card {
  min-width: 220px;
  max-width: 220px;
  background: #181f2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}

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

.carousel-card img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  display: block;
}

.carousel-card .card-title {
  padding: 12px;
  font-size: 1.08em;
  font-weight: 500;
  color: #fff;
  text-align: left;
}

.category-section {
  margin-bottom: 40px;
  position: relative;
  padding: 0 48px;
}

.category-section h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.subcategory {
  margin-left: 20px;
}

.matches-list-wrapper {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.match {
  position: relative;
  width: 180px;
  height: 120px;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
  min-width: 150px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.match img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.match:hover img {
  transform: scale(1.1);
}

.match-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.match:hover .match-overlay {
  opacity: 1;
}

.match-overlay p {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}
/* Live Now Carousel Arrows */
#live-now {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2em;
  padding: 0 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  user-select: none;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

.horizontal-carousel {
  scroll-behavior: smooth;
}

/* Responsive Card Sizes */
@media (max-width: 768px) {
  .carousel-card {
    min-width: 180px;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    min-width: 140px;
    max-width: 140px;
  }
}
#live-now {
  overflow: visible !important;
  position: relative;
}
.horizontal-carousel {
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-behavior: smooth;
  display: flex;
}
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}

.carousel-arrow {
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2em;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 2;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-arrow:active {
  background: rgba(0,0,0,0.7);
}

.carousel-arrow.left {
  margin-right: 8px;
}

.carousel-arrow.right {
  margin-left: 8px;
}

.horizontal-carousel {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 900px) {
  .carousel-card {
    min-width: 140px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    min-width: 120px;
    max-width: 120px;
  }
  .horizontal-carousel {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    min-width: 100px;
    max-width: 100px;
  }
  .horizontal-carousel {
    gap: 8px;
  }
  .carousel-arrow {
    font-size: 1.5em;
    height: 36px;
    padding: 0 8px;
  }
}
#live-carousel,
.horizontal-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 24px;
  padding-bottom: 14px;
  width: 100%;
  box-sizing: border-box;
}

.carousel-card {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
  background: #181f2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}

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

.carousel-card img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2em;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 2;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }
.carousel-arrow:active { background: rgba(0,0,0,0.7); }

@media (max-width: 768px) {
  .carousel-card { min-width: 140px; max-width: 180px; }
}
@media (max-width: 480px) {
  .carousel-card { min-width: 120px; max-width: 140px; }
}
