.page-sports {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A1A;
  line-height: 1.6;
}

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

.page-sports .section-title {
  font-size: 38px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #CCCCCC;
}

.page-sports h3 {
  font-size: 24px;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-sports a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports a:hover {
  color: #FFFFFF;
}

.page-sports .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-sports .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-sports .cta-button.secondary {
  background: #333333;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
  box-shadow: none;
}

.page-sports .cta-button.secondary:hover {
  background: #FFD700;
  color: #1A1A1A;
  border-color: #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Banner Section */
.page-sports .banner-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjusted height for non-hero banner */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background-color: #1A1A1A;
}

.page-sports .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 1;
}

.page-sports .banner-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #FFFFFF;
  padding: 20px;
}

.page-sports .banner-title {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports .banner-description {
  font-size: 22px;
  margin-bottom: 30px;
  color: #E0E0E0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

/* General Section Styling */
.page-sports .intro-section,
.page-sports .sports-categories,
.page-sports .how-to-section,
.page-sports .promotions-section,
.page-sports .security-support-section,
.page-sports .betting-tips-section,
.page-sports .faq-section,
.page-sports .blog-section {
  padding: 60px 0;
}

.page-sports .intro-section p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports .category-card {
  background-color: #2A2A2A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-sports .category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.page-sports .category-card .card-title {
  font-size: 26px;
  color: #FFD700;
  padding: 20px 15px 10px;
  margin: 0;
}

.page-sports .category-card .card-description {
  font-size: 16px;
  color: #CCCCCC;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-sports .category-card .card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-sports .category-card .card-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
}

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

.page-sports .step-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-sports .step-item .step-title {
  font-size: 28px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-sports .step-item p {
  font-size: 17px;
  color: #CCCCCC;
}

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

.page-sports .step-item .step-button:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}

.page-sports .note {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  color: #999999;
}

/* Promotions Section */
.page-sports .promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-sports .promo-list li {
  display: flex;
  align-items: center;
  background-color: #2A2A2A;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports .promo-list .promo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-sports .promo-list .promo-content h3 {
  font-size: 24px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-sports .promo-list .promo-content p {
  font-size: 17px;
  color: #CCCCCC;
  margin-bottom: 0;
}

/* Security & Support Section */
.page-sports .security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports .feature-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-sports .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-sports .feature-item h3 {
  font-size: 26px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-sports .feature-item p {
  font-size: 17px;
  color: #CCCCCC;
}

/* Betting Tips Section */
.page-sports .tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-sports .tips-list li {
  background-color: #2A2A2A;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports .tips-list li h4 {
  font-size: 22px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-sports .tips-list li p {
  font-size: 17px;
  color: #CCCCCC;
  margin-bottom: 0;
}

/* FAQ Section */
.page-sports .faq-list {
  margin-top: 40px;
}

.page-sports .faq-item {
  margin-bottom: 15px;
}

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

.page-sports .faq-question:hover {
  background: #3A3A3A;
  border-color: #FFD700;
}

.page-sports .faq-question h3 {
  font-size: 20px;
  color: #FFD700;
  margin: 0;
}

.page-sports .faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.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: #222222;
  border-radius: 0 0 10px 10px;
}

.page-sports .faq-answer p {
  padding: 15px 0;
  font-size: 17px;
  color: #CCCCCC;
}

.page-sports .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
  border: 1px solid #3A3A3A;
  border-top: none;
}

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

/* Blog Section */
.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-color: #2A2A2A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-sports .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.page-sports .blog-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #3A3A3A;
}

.page-sports .blog-card .card-title {
  font-size: 22px;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-sports .blog-card .card-title a {
  color: #FFD700;
  display: block;
}

.page-sports .blog-card .card-title a:hover {
  color: #FFA500;
}

.page-sports .blog-card .card-description {
  font-size: 16px;
  color: #CCCCCC;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-sports .blog-card .post-date {
  font-size: 14px;
  color: #999999;
  padding: 0 20px 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports .banner-title {
    font-size: 48px;
  }
  .page-sports .banner-description {
    font-size: 20px;
  }
  .page-sports .section-title {
    font-size: 32px;
  }
  .page-sports h3 {
    font-size: 22px;
  }
  .page-sports p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-sports .banner-section {
    height: 400px;
  }
  .page-sports .banner-title {
    font-size: 38px;
  }
  .page-sports .banner-description {
    font-size: 18px;
  }
  .page-sports .banner-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports .cta-button.secondary {
    margin-left: 0;
  }
  .page-sports .section-title {
    font-size: 28px;
  }
  .page-sports .categories-grid,
  .page-sports .steps-grid,
  .page-sports .security-features,
  .page-sports .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-sports .promo-list li {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .page-sports .promo-list .promo-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-sports .faq-question {
    padding: 15px 20px;
  }
  .page-sports .faq-question h3 {
    font-size: 18px;
  }
  .page-sports .faq-toggle {
    font-size: 24px;
  }
  .page-sports .faq-answer {
    padding: 0 20px;
  }
  .page-sports .faq-answer p {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-sports .banner-section {
    height: 350px;
  }
  .page-sports .banner-title {
    font-size: 30px;
  }
  .page-sports .banner-description {
    font-size: 16px;
  }
  .page-sports .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-sports .section-title {
    font-size: 24px;
  }
  .page-sports h3 {
    font-size: 20px;
  }
  .page-sports p {
    font-size: 16px;
  }
  .page-sports .category-card .card-title {
    font-size: 22px;
  }
  .page-sports .category-card .card-description {
    font-size: 15px;
  }
  .page-sports .step-item .step-title {
    font-size: 24px;
  }
  .page-sports .promo-list .promo-content h3 {
    font-size: 20px;
  }
  .page-sports .tips-list li h4 {
    font-size: 18px;
  }
  .page-sports .blog-card .card-title {
    font-size: 18px;
  }
}