.page-sports {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-light: #f8f8f8;
  --background-dark: #0A2463;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-sports .section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-sports .section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

.page-sports .cta-button, .page-sports .card-button, .page-sports .promo-button, .page-sports .step-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports .cta-button:hover, .page-sports .card-button:hover, .page-sports .promo-button:hover, .page-sports .step-button:hover {
  background: #ffcc33; /* Slightly lighter gold for hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-sports .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #06173a 100%);
  color: var(--text-color-light);
}

.page-sports .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-sports .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-sports .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-sports .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-sports .hero-title {
  font-size: 52px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports .hero-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-sports .hero-section .cta-button {
  color: var(--primary-color);
}

/* Intro Section */
.page-sports .section-intro {
  background-color: var(--background-light);
  padding: 80px 0;
}

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

.page-sports .intro-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports .intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-sports .intro-icon {
  width: 120px; /* Adjusted to meet minimum size */
  height: 120px; /* Adjusted to meet minimum size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-sports .intro-heading {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-sports .intro-text {
  font-size: 16px;
  color: #555;
}

/* Sports Types Section */
.page-sports .section-sports-types {
  padding: 80px 0;
  background: #ffffff;
}

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

.page-sports .sports-card {
  background: var(--background-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports .sports-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-sports .card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-sports .card-title {
  font-size: 24px;
  color: var(--primary-color);
  padding: 20px 20px 10px 20px;
  margin: 0;
}

.page-sports .card-link {
  text-decoration: none;
  color: inherit;
}

.page-sports .card-link:hover {
  color: var(--secondary-color);
}

.page-sports .card-description {
  font-size: 16px;
  color: #555;
  padding: 0 20px 20px 20px;
}

.page-sports .sports-card .card-button {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
}

/* Live Betting Section */
.page-sports .section-live-betting {
  background: var(--primary-color);
  color: var(--text-color-light);
  padding: 80px 0;
}

.page-sports .section-live-betting .section-title {
  color: var(--secondary-color);
}

.page-sports .section-live-betting .section-subtitle {
  color: #e0e0e0;
}

.page-sports .live-betting-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-sports .live-betting-text {
  flex: 1;
}

.page-sports .live-betting-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

.page-sports .live-betting-text ul li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  font-size: 17px;
  color: var(--text-color-light);
  border-left: 4px solid var(--secondary-color);
}

.page-sports .live-betting-text ul li strong {
  color: var(--secondary-color);
}

.page-sports .live-betting-image {
  flex: 1;
  text-align: center;
}

.page-sports .live-betting-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Promotions Section */
.page-sports .section-promotions {
  padding: 80px 0;
  background: var(--background-light);
}

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

.page-sports .promo-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-sports .promo-image {
  width: 150px; /* Adjusted to meet minimum size */
  height: 150px; /* Adjusted to meet minimum size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-sports .promo-heading {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-sports .promo-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.page-sports .promo-note {
  font-size: 15px;
  color: #777;
  text-align: center;
  margin-top: 40px;
}

/* How-To Section */
.page-sports .section-how-to {
  padding: 80px 0;
  background: #ffffff;
}

.page-sports .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-sports .step-item {
  background: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports .step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-sports .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--primary-color);
  color: var(--text-color-light);
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-sports .step-heading {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-sports .step-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* FAQ Section */
.page-sports .section-faq {
  padding: 80px 0;
  background: var(--background-light);
}

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

.page-sports .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-sports .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.page-sports .faq-question:hover {
  background: #f5f5f5;
}

.page-sports .faq-heading {
  font-size: 20px;
  color: var(--primary-color);
  margin: 0;
}

.faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  background: #fdfdfd;
}

.faq-answer p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Contact Section */
.page-sports .section-contact {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
}

.page-sports .section-contact .section-title {
  color: var(--secondary-color);
}

.page-sports .section-contact .section-subtitle, .page-sports .contact-text {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports .hero-title {
    font-size: 44px;
  }
  .page-sports .hero-description {
    font-size: 18px;
  }
  .page-sports .section-title {
    font-size: 32px;
  }
  .page-sports .live-betting-content {
    flex-direction: column;
  }
  .page-sports .live-betting-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-sports .hero-section {
    padding: 40px 15px;
  }
  .page-sports .hero-title {
    font-size: 36px;
  }
  .page-sports .hero-description {
    font-size: 16px;
  }
  .page-sports .cta-button, .page-sports .card-button, .page-sports .promo-button, .page-sports .step-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-sports .section-title {
    font-size: 28px;
    padding-top: 30px;
  }
  .page-sports .section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-sports .intro-grid, .page-sports .sports-grid, .page-sports .promo-grid, .page-sports .steps-grid {
    grid-template-columns: 1fr;
  }
  .page-sports .intro-item, .page-sports .sports-card, .page-sports .promo-card, .page-sports .step-item {
    padding: 25px;
  }
  .page-sports .card-image {
    height: 200px;
  }
  .page-sports .card-title, .page-sports .promo-heading, .page-sports .step-heading {
    font-size: 22px;
  }
  .page-sports .faq-question {
    padding: 15px 20px;
  }
  .page-sports .faq-heading {
    font-size: 18px;
  }
  .page-sports .faq-answer {
    padding: 15px 20px;
  }
  .page-sports .faq-toggle {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .page-sports .hero-title {
    font-size: 30px;
  }
  .page-sports .hero-description {
    font-size: 15px;
  }
  .page-sports .section-title {
    font-size: 24px;
  }
  .page-sports .intro-icon, .page-sports .promo-image {
    width: 100px;
    height: 100px;
  }
  .page-sports .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 26px;
  }
}