/* Base styles for the page-sports content */
.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color on dark body background */
  background-color: #0A0A0A; /* Body background */
}

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

.page-sports__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Main brand color for titles */
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-sports__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: #FFF6D6;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-sports__hero-image {
  width: 100%;
  max-height: 675px; /* Max height for desktop hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Cover for desktop, will be contain for mobile */
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-sports__hero-content {
  max-width: 900px;
  padding: 0 20px 50px;
  z-index: 1;
}

.page-sports__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #FFD36B; /* Auxiliary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-sports__description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%; /* Ensure buttons adapt */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6B02A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow color */
  border: 2px solid #FFD36B;
}

.page-sports__btn-secondary:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.page-sports__about-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

/* Highlights Section */
.page-sports__highlights-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG for this section */
}

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

.page-sports__feature-card,
.page-sports__game-type-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__feature-card:hover,
.page-sports__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports__feature-card img,
.page-sports__game-type-card img {
  width: 100%;
  max-width: 400px; /* Recommended size for cards */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-sports__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFD36B; /* Glow color for card titles */
  margin-bottom: 15px;
}

.page-sports__feature-card p,
.page-sports__game-type-card p {
  font-size: 16px;
  color: #FFF6D6;
  flex-grow: 1;
}

/* Game Types Section */
.page-sports__game-types-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

/* Strategy Section */
.page-sports__strategy-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG for this section */
}

/* Promotions Section */
.page-sports__promotions-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

/* FAQ Section */
.page-sports__faq-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG for this section */
}

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

details.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #0A0A0A; /* Dark background for FAQ item */
}