/* style/index-m88sut-sports-highlights.css */

:root {
  --page-primary-color: #0A1931;
  --page-secondary-color: #FFD700;
  --page-text-light: #FFFFFF;
  --page-text-dark: #0A1931;
  --page-accent-light: #f5e6ce; /* Complementary to primary */
  --page-accent-dark: #998100; /* Darker shade of secondary for text */
}

.page-index-m88sut-sports-highlights {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-light);
  background-color: var(--page-primary-color);
  line-height: 1.6;
}

.page-index-m88sut-sports-highlights h1,
.page-index-m88sut-sports-highlights h2,
.page-index-m88sut-sports-highlights h3,
.page-index-m88sut-sports-highlights h4 {
  color: var(--page-secondary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-index-m88sut-sports-highlights h1 {
  font-size: 2.8rem;
  text-align: center;
  color: var(--page-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-m88sut-sports-highlights h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
}

.page-index-m88sut-sports-highlights h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--page-secondary-color);
  border-radius: 2px;
}

.page-index-m88sut-sports-highlights h3 {
  font-size: 1.8rem;
  color: var(--page-accent-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-index-m88sut-sports-highlights h4 {
  font-size: 1.4rem;
  color: var(--page-secondary-color);
}

.page-index-m88sut-sports-highlights p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--page-text-light);
}

.page-index-m88sut-sports-highlights ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 1rem;
  color: var(--page-text-light);
}

.page-index-m88sut-sports-highlights ul li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

.page-index-m88sut-sports-highlights__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #1a3a6b 100%);
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index-m88sut-sports-highlights__hero-content {
  z-index: 2;
  max-width: 900px;
}

.page-index-m88sut-sports-highlights__hero-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.page-index-m88sut-sports-highlights__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}

.page-index-m88sut-sports-highlights__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-index-m88sut-sports-highlights__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-index-m88sut-sports-highlights__button--primary {
  background-color: var(--page-secondary-color);
  color: var(--page-text-dark);
}

.page-index-m88sut-sports-highlights__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-index-m88sut-sports-highlights__button--secondary {
  background-color: transparent;
  color: var(--page-secondary-color);
  border: 2px solid var(--page-secondary-color);
}

.page-index-m88sut-sports-highlights__button--secondary:hover {
  background-color: var(--page-secondary-color);
  color: var(--page-text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-index-m88sut-sports-highlights__button--tertiary {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--page-secondary-color);
  border: 1px solid var(--page-secondary-color);
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
}

.page-index-m88sut-sports-highlights__button--tertiary:hover {
  background-color: var(--page-secondary-color);
  color: var(--page-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-index-m88sut-sports-highlights__button--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 25px;
  background-color: var(--page-secondary-color);
  color: var(--page-text-dark);
}

.page-index-m88sut-sports-highlights__button--small:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

.page-index-m88sut-sports-highlights__feature-item {
  background-color: #1a2a4b;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-m88sut-sports-highlights__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-m88sut-sports-highlights__feature-item h3 {
  color: var(--page-secondary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-index-m88sut-sports-highlights__feature-item p {
  color: var(--page-text-light);
  font-size: 1rem;
}

.page-index-m88sut-sports-highlights__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-m88sut-sports-highlights__bet-types .page-index-m88sut-sports-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.page-index-m88sut-sports-highlights__grid-item {
  background-color: #1a2a4b;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-index-m88sut-sports-highlights__grid-item h3 {
  color: var(--page-accent-light);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-index-m88sut-sports-highlights__grid-item p {
  font-size: 1rem;
  color: var(--page-text-light);
}

.page-index-m88sut-sports-highlights__cta-box {
  background-color: var(--page-secondary-color);
  color: var(--page-text-dark);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 4rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.page-index-m88sut-sports-highlights__cta-box p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--page-text-dark);
}

.page-index-m88sut-sports-highlights__mobile-experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-index-m88sut-sports-highlights__mobile-content {
  max-width: 700px;
}

.page-index-m88sut-sports-highlights__mobile-content h2 {
  margin-bottom: 1.5rem;
}

.page-index-m88sut-sports-highlights__mobile-content h3 {
  color: var(--page-accent-light);
  font-size: 1.6rem;
  margin-top: 2.5rem;
}

.page-index-m88sut-sports-highlights__mobile-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-index-m88sut-sports-highlights__promotions .page-index-m88sut-sports-highlights__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.page-index-m88sut-sports-highlights__promo-item {
  background-color: #1a2a4b;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-m88sut-sports-highlights__promo-item h3 {
  color: var(--page-secondary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-index-m88sut-sports-highlights__promo-item p {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-m88sut-sports-highlights__promo-image {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-index-m88sut-sports-highlights__how-to .page-index-m88sut-sports-highlights__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.page-index-m88sut-sports-highlights__step-item {
  background-color: #1a2a4b;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-m88sut-sports-highlights__step-item h4 {
  color: var(--page-secondary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.page-index-m88sut-sports-highlights__step-item p {
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-m88sut-sports-highlights__customer-support {
  text-align: center;
}

.page-index-m88sut-sports-highlights__customer-support img {
  max-width: 800px;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-index-m88sut-sports-highlights__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-index-m88sut-sports-highlights__conclusion p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-index-m88sut-sports-highlights__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 120px 40px;
  }

  .page-index-m88sut-sports-highlights__hero-content {
    max-width: 60%;
    text-align: left;
  }

  .page-index-m88sut-sports-highlights__hero-image {
    position: static;
    width: 40%;
    height: auto;
    opacity: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .page-index-m88sut-sports-highlights__hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .page-index-m88sut-sports-highlights__mobile-experience {
    flex-direction: row;
    text-align: left;
    gap: 60px;
  }

  .page-index-m88sut-sports-highlights__mobile-content,
  .page-index-m88sut-sports-highlights__mobile-image {
    flex: 1;
  }

  .page-index-m88sut-sports-highlights__mobile-image img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 767px) {
  .page-index-m88sut-sports-highlights h1 {
    font-size: 2rem;
  }

  .page-index-m88sut-sports-highlights h2 {
    font-size: 1.8rem;
  }

  .page-index-m88sut-sports-highlights h3 {
    font-size: 1.4rem;
  }

  .page-index-m88sut-sports-highlights p,
  .page-index-m88sut-sports-highlights ul li {
    font-size: 1rem;
  }

  .page-index-m88sut-sports-highlights__button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-index-m88sut-sports-highlights__section {
    padding: 40px 15px;
  }

  .page-index-m88sut-sports-highlights__hero {
    padding: 80px 15px;
    min-height: 500px;
  }

  .page-index-m88sut-sports-highlights__hero-content p {
    font-size: 1.1rem;
  }

  .page-index-m88sut-sports-highlights__cta-box p {
    font-size: 1.2rem;
  }
}