/* style/index-sports-highlights.css */
.page-index-sports-highlights {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A203C; /* Main background color */
}

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

.page-index-sports-highlights__hero-section {
  background: linear-gradient(135deg, #0A203C 0%, #1A3A5E 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-index-sports-highlights__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:sports_stadium,abstract,lights,dark_blue]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-index-sports-highlights__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.page-index-sports-highlights__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.page-index-sports-highlights__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.page-index-sports-highlights__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A203C; /* Dark text on accent background */
  border: 2px solid #FFD700;
}

.page-index-sports-highlights__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-index-sports-highlights__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-sports-highlights__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A203C;
  transform: translateY(-3px);
}

.page-index-sports-highlights__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 5px;
}

.page-index-sports-highlights__btn--lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-sports-highlights__btn--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.page-index-sports-highlights__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-sports-highlights__section--intro {
  background-color: #0F2D4D; /* Slightly lighter dark blue */
}

.page-index-sports-highlights__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.page-index-sports-highlights__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-sports-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-highlights__grid-item {
  background-color: #1A3A5E; /* Dark blue background for items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-sports-highlights__grid-item:hover {
  transform: translateY(-10px);
}

.page-index-sports-highlights__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(90%) sepia(100%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-index-sports-highlights__item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-sports-highlights__text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-index-sports-highlights__text--highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-index-sports-highlights__section--featured-matches {
  background-color: #0A203C;
}

.page-index-sports-highlights__match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-highlights__match-card {
  background-color: #1A3A5E;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-sports-highlights__match-card:hover {
  transform: translateY(-10px);
}

.page-index-sports-highlights__match-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-index-sports-highlights__match-content {
  padding: 20px;
}

.page-index-sports-highlights__match-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-sports-highlights__match-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-index-sports-highlights__section--analysis {
  background-color: #0F2D4D;
}

.page-index-sports-highlights__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-index-sports-highlights__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-index-sports-highlights__image-left, .page-index-sports-highlights__image-right {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-index-sports-highlights__image-left {
  height: 400px;
}

.page-index-sports-highlights__image-right {
  height: 400px;
}

.page-index-sports-highlights__text-content {
  flex: 2;
  min-width: 300px;
}

.page-index-sports-highlights__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.page-index-sports-highlights__list li {
  background-color: #1A3A5E;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
  color: #C0C0C0;
}

.page-index-sports-highlights__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index-sports-highlights__section--betting-options {
  background-color: #0A203C;
}

.page-index-sports-highlights__betting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-index-sports-highlights__betting-item {
  background-color: #1A3A5E;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-sports-highlights__betting-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-sports-highlights__betting-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
}

.page-index-sports-highlights__section--live-betting {
  background-color: #0F2D4D;
}

.page-index-sports-highlights__section--cta {
  background: linear-gradient(45deg, #0A203C, #1A3A5E);
  padding: 80px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-index-sports-highlights__cta-content {
  position: relative;
  z-index: 1;
}

.page-index-sports-highlights__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-sports-highlights__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-index-sports-highlights__cta-buttons {
  margin-bottom: 40px;
}

.page-index-sports-highlights__app-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

.page-index-sports-highlights__section--promotions {
  background-color: #0A203C;
}

.page-index-sports-highlights__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-highlights__promotion-card {
  background-color: #1A3A5E;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-sports-highlights__promotion-card:hover {
  transform: translateY(-10px);
}

.page-index-sports-highlights__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-sports-highlights__promotion-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 15px 20px 10px;
}

.page-index-sports-highlights__promotion-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
  margin: 0 20px 20px;
}

.page-index-sports-highlights__promotion-card .page-index-sports-highlights__btn {
  margin: 0 20px 20px;
}

.page-index-sports-highlights__section--contact {
  background-color: #0F2D4D;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-sports-highlights__hero-title {
    font-size: 2.8em;
  }
  .page-index-sports-highlights__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-sports-highlights__section-title {
    font-size: 2em;
  }
  .page-index-sports-highlights__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-index-sports-highlights__content-wrapper--reverse {
    flex-direction: column-reverse;
  }
  .page-index-sports-highlights__image-left, .page-index-sports-highlights__image-right {
    width: 100%;
    max-width: 600px;
    height: 300px;
  }
  .page-index-sports-highlights__text-content {
    width: 100%;
  }
  .page-index-sports-highlights__list {
    text-align: left;
  }
  .page-index-sports-highlights__cta-title {
    font-size: 2.2em;
  }
  .page-index-sports-highlights__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-sports-highlights__hero-section {
    padding: 80px 0;
  }
  .page-index-sports-highlights__hero-title {
    font-size: 2.2em;
  }
  .page-index-sports-highlights__hero-subtitle {
    font-size: 1em;
  }
  .page-index-sports-highlights__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-sports-highlights__section {
    padding: 40px 0;
  }
  .page-index-sports-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-sports-highlights__grid, .page-index-sports-highlights__match-grid, .page-index-sports-highlights__betting-grid, .page-index-sports-highlights__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-index-sports-highlights__app-image {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-index-sports-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-index-sports-highlights__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-sports-highlights__btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-index-sports-highlights__section-title {
    font-size: 1.5em;
  }
  .page-index-sports-highlights__cta-title {
    font-size: 1.8em;
  }
  .page-index-sports-highlights__cta-description {
    font-size: 0.9em;
  }
  .page-index-sports-highlights__list li {
    font-size: 0.9em;
  }
}