/* style/betting-strategies-sports.css */

/* Base styles for the page content */
.page-betting-strategies-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #0A2239; /* Dark blue primary background */
}

.page-betting-strategies-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-strategies-sports__section {
  padding: 60px 0;
  text-align: center;
}

.page-betting-strategies-sports__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-betting-strategies-sports__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-betting-strategies-sports__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%);
  padding: 100px 0;
  color: #F0F0F0;
}

.page-betting-strategies-sports__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-betting-strategies-sports__hero-subtitle {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

/* Buttons */
.page-betting-strategies-sports__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-betting-strategies-sports__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A2239; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-betting-strategies-sports__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-2px);
}

.page-betting-strategies-sports__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-betting-strategies-sports__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

/* Content Grid for sections */
.page-betting-strategies-sports__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}

.page-betting-strategies-sports__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-betting-strategies-sports__text-content {
  flex: 1;
}

.page-betting-strategies-sports__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-betting-strategies-sports__text-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-betting-strategies-sports__text-content li {
  margin-bottom: 8px;
}

.page-betting-strategies-sports__text-content strong {
  color: #FFD700;
}

.page-betting-strategies-sports__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-betting-strategies-sports__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* About LC88 Section */
.page-betting-strategies-sports__about-lc88 {
  background-color: #153452;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Strategies Section */
.page-betting-strategies-sports__strategies {
  background-color: #0A2239;
}

.page-betting-strategies-sports__strategy-item {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-betting-strategies-sports__strategy-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-betting-strategies-sports__strategy-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

/* CTA Banner Section */
.page-betting-strategies-sports__cta-banner {
  background: linear-gradient(45deg, #0A2239, #1A3A5A);
  color: #F0F0F0;
  padding: 80px 0;
}

.page-betting-strategies-sports__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-betting-strategies-sports__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-betting-strategies-sports__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-betting-strategies-sports__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* FAQ Section */
.page-betting-strategies-sports__faq {
  background-color: #153452;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-betting-strategies-sports__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-strategies-sports__faq-item {
  background-color: #0A2239;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-strategies-sports__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  user-select: none;
  background-color: #0A2239;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-betting-strategies-sports__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-betting-strategies-sports__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  background-color: #153452;
  color: #E0E0E0;
}

.page-betting-strategies-sports__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

/* Responsible Gambling Section */
.page-betting-strategies-sports__responsible-gambling {
  background-color: #0A2239;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-betting-strategies-sports__responsible-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-strategies-sports__hero-title {
    font-size: 2.8em;
  }
  .page-betting-strategies-sports__section-title {
    font-size: 2em;
  }
  .page-betting-strategies-sports__content-grid {
    flex-direction: column;
    text-align: center;
  }
  .page-betting-strategies-sports__content-grid--reverse {
    flex-direction: column;
  }
  .page-betting-strategies-sports__cta-title {
    font-size: 2.2em;
  }
  .page-betting-strategies-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-betting-strategies-sports__btn--secondary {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-betting-strategies-sports__hero {
    padding: 80px 0;
  }
  .page-betting-strategies-sports__hero-title {
    font-size: 2.2em;
  }
  .page-betting-strategies-sports__hero-subtitle {
    font-size: 1.1em;
  }
  .page-betting-strategies-sports__section-title {
    font-size: 1.8em;
  }
  .page-betting-strategies-sports__strategy-title {
    font-size: 1.6em;
  }
  .page-betting-strategies-sports__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-betting-strategies-sports__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-betting-strategies-sports__hero-title {
    font-size: 1.8em;
  }
  .page-betting-strategies-sports__section-title {
    font-size: 1.5em;
  }
  .page-betting-strategies-sports__strategy-title {
    font-size: 1.4em;
  }
  .page-betting-strategies-sports__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-betting-strategies-sports__faq-question::after {
    right: 20px;
  }
}