/* style/sports.css */

.page-sports {
  color: #ffffff; /* Default text color for dark body background */
  background: var(--dark-bg-1);
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 120px; /* Adjust for fixed header on desktop */
}

.page-sports__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-sports__hero-image {
  width: 100%;
  margin: 0;
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO轮播区域样式 */
.page-sports__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: #002244; /* Slightly lighter dark background for contrast */
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-sports__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* Disable user interaction for carousel */
}

.page-sports__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-sports__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #003366;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow logo-item itself to be clickable */
}

.page-sports__logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.page-sports__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  pointer-events: auto; /* Allow link to be clickable */
}

.page-sports__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 游戏展示区域样式 */
.page-sports__games-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--dark-bg-1);
}

.page-sports__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-sports__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-sports__featured-game-area {
  width: 100%;
}

.page-sports__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 25px 0;
  color: #FFCC00; /* Yellow text for Jackpot */
  text-align: left;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}