:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --main-bg: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --header-offset: 122px; /* Default value, actual value set in shared.css */
}

.page-sports {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--main-bg);
  line-height: 1.6;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-sports__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-sports__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-sports__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-sports__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.page-sports__btn-link {
  background: transparent;
  color: var(--secondary-color);
  border: none;
  text-decoration: underline;
  padding: 5px 0;
}

.page-sports__btn-link:hover {
  color: var(--primary-color);
}

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

.page-sports__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-sports img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: none; /* Ensure no image filters */
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--main-bg);
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-sports__hero-image {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.page-sports__hero-content-wrapper {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.page-sports__main-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  font-size: clamp(2.2em, 5vw, 3.5em);
}

.page-sports__tagline {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__about-section {
  padding: 80px 0;
  background-color: var(--card-bg);
}

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

.page-sports__feature-item {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  object-fit: contain;
  border-radius: 0;
}

.page-sports__feature-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-sports__feature-text {
  font-size: 1em;
  color: #cccccc;
}

.page-sports__types-of-betting {
  padding: 80px 0;
  background-color: var(--main-bg);
}

.page-sports__betting-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.page-sports__category-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.page-sports__category-card:hover {
  transform: translateY(-3px);
  background-color: rgba(242, 193, 78, 0.1);
}

.page-sports__category-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px auto;
  object-fit: contain;
  border-radius: 0;
}

.page-sports__category-title {
  font-size: 1.2em;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.page-sports__category-text {
  font-size: 0.9em;
  color: #cccccc;
}

.page-sports__betting-types-grid ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  color: #f0f0f0;
}

.page-sports__betting-types-grid ul li {
  background-color: #1a1a1a;
  padding: 15px 20px;
  border-left: 3px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-sports__live-betting-section {
  padding: 80px 0;
  background-color: var(--card-bg);
}

.page-sports__live-betting-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-sports__live-betting-text {
  flex: 1;
  min-width: 300px;
}

.page-sports__live-betting-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-sports__live-betting-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-sports__promotions-section {
  padding: 80px 0;
  background-color: var(--main-bg);
}

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