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

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

.page-sports section {
  padding: 60px 0;
}

.page-sports h1, .page-sports h2, .page-sports h3 {
  color: #8B0000; /* Deep Red for headings */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-sports h1 {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main hero title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports h2 {
  font-size: 2.2em;
}

.page-sports h3 {
  font-size: 1.8em;
}

.page-sports p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-sports .text-center {
  text-align: center;
}

/* 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, #8B0000 0%, #330000 100%); /* Dark Red gradient */
  color: #ffffff;
}

.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-content h1 {
  margin-top: 0;
  margin-bottom: 15px;
}

.page-sports .hero-content p {
  font-size: 1.25em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-sports .hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-sports .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary Gold */
  color: #8B0000; /* Deep Red text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-sports .cta-button:hover {
  background: #e0b800; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-sports .cta-button.secondary {
  background: #8B0000; /* Secondary Deep Red */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #FFD700;
}

.page-sports .cta-button.secondary:hover {
  background: #6a0000; /* Slightly darker red */
  border-color: #e0b800;
}

/* Intro Section */
.page-sports .intro-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-sports .intro-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 1.05em;
  color: #444;
}

/* Features Section - Sports Grid */
.page-sports .features-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

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

.page-sports .sport-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-sports .sport-icon {
  width: 150px; /* Min 200x200 requirement, but this is a card icon, so needs to be larger */
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.page-sports .sport-card h3 {
  color: #8B0000;
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

.page-sports .sport-card p {
  font-size: 0.95em;
  color: #555;
  text-align: left;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-sports .card-link {
  display: inline-block;
  margin-top: 15px;
  color: #FFD700;
  background-color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-sports .card-link:hover {
  background-color: #FFD700;
  color: #8B0000;
}

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

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

.page-sports .odds-item {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-sports .odds-item:hover {
  transform: translateY(-5px);
}

.page-sports .odds-item h3 {
  color: #FFD700;
  background-color: #8B0000;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3em;
  text-align: left;
}

.page-sports .odds-item p {
  text-align: left;
  color: #555;
  font-size: 1em;
}

/* Promotions Section */
.page-sports .promotions-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

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

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

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

.page-sports .promo-icon {
  width: 150px; /* Min 200x200 requirement */
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.page-sports .promo-card h3 {
  color: #8B0000;
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

.page-sports .promo-card p {
  font-size: 0.95em;
  color: #555;
  text-align: left;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-sports .promo-button {
  display: inline-block;
  margin-top: 15px;
  color: #8B0000;
  background-color: #FFD700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-sports .promo-button:hover {
  background-color: #e0b800;
  color: #6a0000;
}

/* Guide Section */
.page-sports .guide-section {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-sports .step-item {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-sports .step-item:hover {
  transform: translateY(-5px);
}

.page-sports .step-icon {
  width: 120px; /* Min 200x200 requirement */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports .step-item h3 {
  color: #8B0000;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-sports .step-item p {
  font-size: 0.9em;
  color: #666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-sports .step-button {
  display: inline-block;
  margin-top: 10px;
  color: #FFD700;
  background-color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-sports .step-button:hover {
  background-color: #FFD700;
  color: #8B0000;
}

/* Security Section */
.page-sports .security-section {
  background-color: #8B0000;
  color: #ffffff;
  padding: 80px 0;
}

.page-sports .security-section h2 {
  color: #FFD700;
}

.page-sports .security-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-sports .security-section .cta-button {
  background: #FFD700;
  color: #8B0000;
  margin-top: 30px;
}

.page-sports .security-section .cta-button:hover {
  background: #e0b800;
}

/* FAQ Section */
.page-sports .faq-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page-sports .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.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;
}

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

.page-sports .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: #333;
  text-align: left;
}

.page-sports .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #8B0000;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-sports .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-sports .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
}

.page-sports .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-sports .faq-answer p {
  text-align: left;
  font-size: 1em;
  color: #555;
  margin-bottom: 10px;
}

.page-sports .faq-app-link {
  display: inline-block;
  margin-top: 10px;
  color: #FFD700;
  background-color: #8B0000;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-sports .faq-app-link:hover {
  background-color: #FFD700;
  color: #8B0000;
}

/* Blog Preview Section */
.page-sports .blog-preview-section {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-sports .blog-card {
  background: #fdfdfd;
  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;
  display: flex;
  flex-direction: column;
}

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

.page-sports .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-sports .blog-card h3 {
  font-size: 1.3em;
  margin: 20px 20px 10px;
  text-align: left;
  color: #8B0000;
  flex-grow: 1;
}

.page-sports .blog-card h3 a {
  text-decoration: none;
  color: #8B0000;
  transition: color 0.3s ease;
}

.page-sports .blog-card h3 a:hover {
  color: #FFD700;
}

.page-sports .blog-card p {
  font-size: 0.9em;
  color: #666;
  text-align: left;
  margin: 0 20px 15px;
}

.page-sports .blog-date {
  display: block;
  font-size: 0.85em;
  color: #999;
  margin: 0 20px 20px;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports h1 {
    font-size: 2.2em;
  }
  .page-sports h2 {
    font-size: 1.8em;
  }
  .page-sports h3 {
    font-size: 1.4em;
  }
  .page-sports .hero-content p {
    font-size: 1.1em;
  }
  .page-sports .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-sports section {
    padding: 40px 0;
  }
  .page-sports h1 {
    font-size: 1.8em;
  }
  .page-sports h2 {
    font-size: 1.6em;
  }
  .page-sports h3 {
    font-size: 1.2em;
  }
  .page-sports .hero-image {
    margin-bottom: 20px;
  }
  .page-sports .hero-image img {
    border-radius: 8px;
  }
  .page-sports .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports .cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-sports .sports-grid, .page-sports .odds-grid, .page-sports .promo-grid, .page-sports .guide-steps, .page-sports .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-sports .sport-card, .page-sports .promo-card, .page-sports .step-item, .page-sports .blog-card {
    padding: 20px;
  }
  .page-sports .sport-icon, .page-sports .promo-icon, .page-sports .step-icon {
    width: 100px;
    height: 100px;
  }
  .page-sports .faq-question {
    padding: 15px 20px;
  }
  .page-sports .faq-question h3 {
    font-size: 1em;
  }
  .page-sports .faq-toggle {
    font-size: 1.5em;
  }
  .page-sports .faq-answer {
    padding: 0 20px;
  }
  .page-sports .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-sports h1 {
    font-size: 1.5em;
  }
  .page-sports h2 {
    font-size: 1.4em;
  }
  .page-sports h3 {
    font-size: 1.1em;
  }
  .page-sports .hero-content p {
    font-size: 1em;
  }
  .page-sports .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-sports .faq-list {
    margin-left: 0;
    margin-right: 0;
  }
  .page-sports .faq-question h3 {
    font-size: 0.95em;
  }
  .page-sports .faq-toggle {
    font-size: 1.3em;
  }
}