/* style/betting-games-sports-betting.css */
.page-betting-games-sports-betting {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-betting-games-sports-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-betting-games-sports-betting__section {
  padding: 60px 0;
  text-align: center;
}

.page-betting-games-sports-betting__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-betting-games-sports-betting__hero-section {
  background: linear-gradient(135deg, #1A237E, #3F51B5); /* Slightly lighter gradient for hero */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-games-sports-betting__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:sports_stadium,abstract_lines]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-betting-games-sports-betting__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-betting-games-sports-betting__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107; /* Highlight with auxiliary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-games-sports-betting__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-betting-games-sports-betting__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-betting-games-sports-betting__btn--primary {
  background-color: #FFC107;
  color: #1A237E; /* Text color for primary button */
}

.page-betting-games-sports-betting__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-games-sports-betting__btn--secondary {
  background-color: transparent;
  border: 2px solid #FFC107;
  color: #FFC107;
}

.page-betting-games-sports-betting__btn--secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-games-sports-betting__btn--small {
  padding: 8px 20px;
  font-size: 0.9em;
  border-radius: 25px;
}

.page-betting-games-sports-betting__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #1A237E; /* Main color for section titles */
  font-weight: bold;
}

.page-betting-games-sports-betting__text-center {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #555;
}

.page-betting-games-sports-betting__mt-40 {
  margin-top: 40px;
}

/* Why Choose Section */
.page-betting-games-sports-betting__why-choose .page-betting-games-sports-betting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-betting-games-sports-betting__feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-top: 5px solid #FFC107;
}

.page-betting-games-sports-betting__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-betting-games-sports-betting__feature-card h3 {
  color: #1A237E;
  font-size: 1.5em;
  margin: 20px 0 10px;
}

.page-betting-games-sports-betting__feature-card p {
  color: #666;
  font-size: 1em;
}

.page-betting-games-sports-betting__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

/* Sports Types Section */
.page-betting-games-sports-betting__sport-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-betting-games-sports-betting__sport-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-betting-games-sports-betting__sport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-games-sports-betting__sport-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-betting-games-sports-betting__sport-card h3 {
  color: #1A237E;
  font-size: 1.4em;
  padding: 15px 20px 0;
}

.page-betting-games-sports-betting__sport-card p {
  color: #666;
  font-size: 0.95em;
  padding: 10px 20px 20px;
}

/* Live Betting & Odds/Payouts Section */
.page-betting-games-sports-betting__content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-betting-games-sports-betting__content-row--reverse {
  flex-direction: row-reverse;
}

.page-betting-games-sports-betting__content-text {
  flex: 1;
  min-width: 300px;
}

.page-betting-games-sports-betting__content-text h3 {
  color: #1A237E;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-betting-games-sports-betting__content-text p {
  color: #444;
  margin-bottom: 15px;
}

.page-betting-games-sports-betting__content-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-betting-games-sports-betting__content-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #444;
}

.page-betting-games-sports-betting__content-text ul li::before {
  content: '✔';
  color: #FFC107;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-betting-games-sports-betting__content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.page-betting-games-sports-betting__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-betting-games-sports-betting__promo-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-betting-games-sports-betting__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-games-sports-betting__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-betting-games-sports-betting__promo-card h3 {
  color: #1A237E;
  font-size: 1.4em;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-betting-games-sports-betting__promo-card p {
  color: #666;
  font-size: 0.95em;
  padding: 0 20px;
}

/* How-To Section */
.page-betting-games-sports-betting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-betting-games-sports-betting__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  padding-top: 70px;
}

.page-betting-games-sports-betting__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1A237E;
  color: #FFC107;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #FFC107;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-games-sports-betting__step-card h3 {
  color: #1A237E;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-betting-games-sports-betting__step-card p {
  color: #666;
  margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-betting-games-sports-betting__responsible-gambling {
  background-color: #1A237E;
  color: #e0e0e0;
  padding: 60px 0;
}

.page-betting-games-sports-betting__responsible-gambling .page-betting-games-sports-betting__section-title {
  color: #FFC107;
}

.page-betting-games-sports-betting__responsible-gambling p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.1em;
  color: #ccc;
}

/* FAQ Section */
.page-betting-games-sports-betting__faq {
  text-align: left;
}

.page-betting-games-sports-betting__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-betting-games-sports-betting__faq-question {
  color: #1A237E;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-betting-games-sports-betting__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.page-betting-games-sports-betting__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-betting-games-sports-betting__faq-answer {
  color: #555;
  font-size: 1em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-betting-games-sports-betting__faq-answer.active {
  display: block;
}

/* Final CTA Section */
.page-betting-games-sports-betting__cta-final {
  background-color: #1A237E;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-betting-games-sports-betting__cta-final .page-betting-games-sports-betting__section-title {
  color: #FFC107;
  margin-bottom: 20px;
}

.page-betting-games-sports-betting__cta-final p {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-games-sports-betting__main-title {
    font-size: 2.8em;
  }
  .page-betting-games-sports-betting__subtitle {
    font-size: 1.2em;
  }
  .page-betting-games-sports-betting__section-title {
    font-size: 2em;
  }
  .page-betting-games-sports-betting__content-row {
    flex-direction: column;
  }
  .page-betting-games-sports-betting__content-row--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-betting-games-sports-betting__hero-section {
    padding: 80px 0;
  }
  .page-betting-games-sports-betting__main-title {
    font-size: 2.2em;
  }
  .page-betting-games-sports-betting__subtitle {
    font-size: 1em;
  }
  .page-betting-games-sports-betting__section {
    padding: 40px 0;
  }
  .page-betting-games-sports-betting__section-title {
    font-size: 1.8em;
  }
  .page-betting-games-sports-betting__grid, 
  .page-betting-games-sports-betting__sport-categories, 
  .page-betting-games-sports-betting__promo-grid, 
  .page-betting-games-sports-betting__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-games-sports-betting__step-card {
    padding-top: 50px;
  }
  .page-betting-games-sports-betting__step-number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-betting-games-sports-betting__main-title {
    font-size: 1.8em;
  }
  .page-betting-games-sports-betting__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-games-sports-betting__section-title {
    font-size: 1.5em;
  }
  .page-betting-games-sports-betting__feature-card h3,
  .page-betting-games-sports-betting__sport-card h3,
  .page-betting-games-sports-betting__promo-card h3,
  .page-betting-games-sports-betting__step-card h3 {
    font-size: 1.2em;
  }
  .page-betting-games-sports-betting__faq-question {
    font-size: 1.1em;
  }
}