/* style/sports.css */
.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__section {
  padding: 60px 0;
  text-align: center;
}

.page-sports__section-title {
  font-size: clamp(2em, 2.5vw, 2.8em);
  color: #F2C14E; /* Main color for titles */
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__inline-link {
  color: #FFD36B; /* Glow color for links */
  text-decoration: underline;
}

.page-sports__inline-link:hover {
  color: #F2C14E;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
}

.page-sports__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-sports__hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
  max-width: 800px;
  margin: 20px; /* Add some margin for smaller screens */
}

.page-sports__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD36B; /* Glow color for main title */
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Responsive button */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-sports__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color */
  border: 2px solid #F2C14E; /* Main color border */
}

.page-sports__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-sports__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Grid Layout */
.page-sports__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__grid-layout--reversed {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 769px) {
  .page-sports__grid-layout--reversed {
    grid-template-columns: 1fr 1fr;
  }
  .page-sports__grid-layout--reversed .page-sports__text-content {
    order: 1;
  }
  .page-sports__grid-layout--reversed .page-sports__image-content {
    order: 2;
  }
}

.page-sports__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
}

.page-sports__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__card-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__card-text {
  font-size: 1em;
  line-height: 1.5;
  flex-grow: 1;
}

/* Sports List */
.page-sports__sports-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-sports__sport-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #FFF6D6;
  transition: transform 0.2s ease;
}

.page-sports__sport-item:hover {
  transform: translateY(-3px);
}

.page-sports__sport-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5)); /* Subtle glow */
}

.page-sports__sport-name {
  font-size: 1.3em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__sport-description {
  font-size: 0.95em;
  line-height: 1.4;
}

/* Bet Types List */
.page-sports__bet-types-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-sports__bet-types-list li {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  color: #FFF6D6;
  font-size: 1.05em;
  line-height: 1.5;
}

.page-sports__bet-types-list li strong {
  color: #F2C14E;
  font-weight: bold;
}

/* Live Betting Section */
.page-sports__text-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.page-sports__image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-sports__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-sports__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

/* Getting Started Section */
.page-sports__sub-title {
  font-size: 1.8em;
  color: #F2C14E;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Responsible Gaming List */
.page-sports__responsible-gaming-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-sports__responsible-gaming-list li {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  color: #FFF6D6;
  font-size: 1.05em;
  line-height: 1.5;
}

.page-sports__responsible-gaming-list li strong {
  color: #FFD36B;
  font-weight: bold;
}

/* Payment Methods Section */
.page-sports__payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-sports__payment-card {
  text-align: center;
  padding: 25px;
}

.page-sports__payment-icon {
  width: 167px; /* Fixed width */
  height: 127px; /* Fixed height */
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 211, 107, 0.6)); /* Glow */
}