.page-sports {
  color: #ffffff; /* Body background is #000 (dark), so use light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css #000 */
}

/* HERO Section Styles */
.page-sports__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  margin-top: 0;
  overflow: hidden;
}

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

.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;
  min-height: 300px; /* Ensure a minimum height for visual impact */
}

/* LOGO Carousel Section Styles */
.page-sports__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
  -ms-overflow-style: none;
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

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

.page-sports__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

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

.page-sports__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  pointer-events: auto;
}

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

/* Games Section Styles */
.page-sports__games-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #0d0d0d;
}

.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 20px 0;
  color: #FFD700; /* Yellow text */
  text-align: left;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.page-sports__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__featured-game:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-sports__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-sports__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-sports__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-sports__games-grid-area {
  width: 100%;
}

.page-sports__games-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.page-sports__games-tab {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.page-sports__games-tab:hover {
  color: #FFD700;
}

.page-sports__games-tab.active {
  color: #FFD700;
  border-bottom: 3px solid #FFD700;
  margin-bottom: -2px; /* Offset border-bottom to align with container border */
}

.page-sports__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-sports__games-grid.active {
  display: grid;
}

.page-sports__game-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-sports__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-sports__game-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.page-sports__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-sports__game-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0 15px 0;
  padding: 0 10px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* General Content Section Styles */
.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sports__section-title {
  font-size: 36px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.page-sports__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__main-title {
  font-size: 44px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-sports__description {
  font-size: 19px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__intro-section {
  padding: 80px 0;
  background-color: #000;
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-sports__cta-buttons--center {
  margin-top: 50px;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__btn-primary {
  background-color: #FFD700;
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-sports__btn-primary:hover {
  background-color: #e6c200;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-sports__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* Categories Section Styles */
.page-sports__categories-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-sports__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-sports__category-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 400px; /* Ensure minimum height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-sports__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-sports__category-card img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-sports__category-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sports__category-text {
  font-size: 16px;
  color: #e0e0e0;
  flex-grow: 1;
}

/* Why Choose Section Styles */
.page-sports__why-choose-section {
  padding: 80px 0;
  background-color: #000;
}

.page-sports__why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-sports__why-choose-text {
  color: #e0e0e0;
}

.page-sports__why-choose-text p {
  font-size: 18px;
  margin-bottom: 25px;
}

.page-sports__why-choose-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__why-choose-text ul li {
  font-size: 17px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-sports__why-choose-text ul li::before {
  content: '✔️'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 20px;
  line-height: 1;
}

.page-sports__why-choose-text strong {
  color: #FFD700;
}

.page-sports__why-choose-image {
  text-align: center;
}

.page-sports__why-choose-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

/* Promotions Section Styles */
.page-sports__promotions-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-sports__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-sports__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(139, 0, 0, 0.4);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-sports__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-sports__promo-card img {
  width: 250px;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

.page-sports__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sports__promo-text {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Guide Section Styles */
.page-sports__guide-section {
  padding: 80px 0;
  background-color: #000;
}

.page-sports__guide-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.page-sports__guide-image {
  text-align: center;
}

.page-sports__guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

.page-sports__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-sports__step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-sports__step-number {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  background-color: #8B0000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-sports__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-sports__step-text {
  font-size: 16px;
  color: #e0e0e0;
}

/* FAQ Section Styles */
.page-sports__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-sports__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-sports__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-sports__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
  color: #ffffff;
  transform: rotate(180deg);
}

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.page-sports__faq-item.active .page-sports__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__faq-answer p {
  margin: 0;
}

/* News Section Styles */
.page-sports__news-section {
  padding: 80px 0;
  background-color: #000;
}

.page-sports__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-sports__news-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-sports__news-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-sports__news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

.page-sports__news-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin: 15px 20px 10px;
}

.page-sports__news-excerpt {
  font-size: 15px;
  color: #e0e0e0;
  margin: 0 20px 20px;
}

/* CTA Section Styles */
.page-sports__cta-section {
  padding: 80px 0;
  background-color: #8B0000;
  color: #ffffff;
  text-align: center;
}

.page-sports__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-sports__cta-title {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-sports__cta-description {
  font-size: 20px;
  max-width: 800px;
}

.page-sports__cta-action {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-sports__btn-primary--large,
.page-sports__btn-secondary--large {
  padding: 18px 35px;
  font-size: 20px;
  min-width: 250px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__main-title {
    font-size: 38px;
  }
  .page-sports__description,
  .page-sports__section-description {
    font-size: 17px;
  }
  .page-sports__section-title {
    font-size: 32px;
  }
  .page-sports__games-layout {
    grid-template-columns: 1fr;
  }
  .page-sports__featured-game-image {
    height: 400px;
  }
  .page-sports__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-sports__games-tab {
    font-size: 18px;
  }
  .page-sports__game-card-image {
    height: 160px;
  }
  .page-sports__game-card-title {
    font-size: 14px;
  }
  .page-sports__why-choose-content,
  .page-sports__guide-content {
    grid-template-columns: 1fr;
  }
  .page-sports__why-choose-image,
  .page-sports__guide-image {
    order: -1; /* Image first on mobile */
  }
  .page-sports__cta-title {
    font-size: 34px;
  }
  .page-sports__cta-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: 0 !important; /* Always 0 if body padding is handled by shared */
  }
  .page-sports__hero-image img {
    min-height: 250px;
  }
  .page-sports__logo-carousel-section {
    padding: 20px 15px;
  }
  .page-sports__logo-carousel {
    gap: 15px;
  }
  .page-sports__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  .page-sports__logo-item a {
    padding: 8px;
  }
  .page-sports__games-section {
    padding: 40px 15px;
  }
  .page-sports__featured-game-title {
    font-size: 24px;
  }
  .page-sports__featured-game-image {
    height: 300px;
  }
  .page-sports__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }
  .page-sports__games-tab {
    font-size: 16px;
    padding: 8px 0;
  }
  .page-sports__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-sports__game-card-image {
    height: 120px;
  }
  .page-sports__game-card-title {
    font-size: 12px;
    margin: 8px 0 10px 0;
    padding: 0 5px;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__main-title {
    font-size: 30px;
  }
  .page-sports__description,
  .page-sports__section-description {
    font-size: 16px;
  }
  .page-sports__section-title {
    font-size: 28px;
  }
  .page-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports a[class*="button"],
  .page-sports a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__cta-buttons,
  .page-sports__button-group,
  .page-sports__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-sports__category-card {
    padding: 20px;
    min-height: 350px;
  }
  .page-sports__category-title {
    font-size: 20px;
  }
  .page-sports__category-text {
    font-size: 15px;
  }
  .page-sports__why-choose-text p,
  .page-sports__why-choose-text ul li,
  .page-sports__promo-text,
  .page-sports__step-text,
  .page-sports__faq-answer p,
  .page-sports__news-excerpt {
    font-size: 15px;
  }
  .page-sports__why-choose-text ul li::before {
    font-size: 18px;
  }
  .page-sports__promo-card img {
    width: 200px;
    
  }
  .page-sports__promo-title {
    font-size: 20px;
  }
  .page-sports__step-number {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  .page-sports__step-title {
    font-size: 20px;
  }
  .page-sports__faq-question {
    padding: 15px 20px;
  }
  .page-sports__faq-question h3 {
    font-size: 16px;
  }
  .page-sports__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-sports__faq-item.active .page-sports__faq-answer {
    padding: 15px 20px !important;
  }
  .page-sports__news-card img {
    
  }
  .page-sports__news-title {
    font-size: 18px;
    margin: 12px 15px 8px;
  }
  .page-sports__news-excerpt {
    margin: 0 15px 15px;
  }
  .page-sports__cta-title {
    font-size: 28px;
  }
  .page-sports__cta-description {
    font-size: 16px;
  }
  .page-sports__btn-primary--large,
  .page-sports__btn-secondary--large {
    padding: 15px 25px;
    font-size: 18px;
    min-width: auto;
  }
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-sports__section,
  .page-sports__card,
  .page-sports__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}