/* style/betting-strategies-football.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-dark: #0a0a0a;
  --background-light: #f1f3f5;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
}

.page-betting-strategies-football {
  color: var(--text-color-light); /* Body background is dark, so text should be light */
  background-color: var(--background-dark);
  padding-bottom: 60px; /* Ensure space above footer */
}

/* Fixed navigation bar spacing for desktop */
.page-betting-strategies-football__intro-section {
  padding-top: 120px; /* Account for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3c7c 100%); /* Darker gradient for intro */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.page-betting-strategies-football__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-betting-strategies-football__main-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-betting-strategies-football__intro-content {
  color: var(--text-color-light);
}

.page-betting-strategies-football__page-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
}

.page-betting-strategies-football__description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-betting-strategies-football__description strong {
  color: var(--secondary-color);
}

.page-betting-strategies-football__cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--secondary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-betting-strategies-football__cta-button:hover {
  background: #f0c94a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-betting-strategies-football__cta-button--secondary {
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--secondary-color);
}

.page-betting-strategies-football__cta-button--secondary:hover {
  background: #1a3c7c;
  border-color: #f0c94a;
}

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

.page-betting-strategies-football__section--overview {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-betting-strategies-football__section--strategies,
.page-betting-strategies-football__section--analysis,
.page-betting-strategies-football__section--tips,
.page-betting-strategies-football__section--promotions,
.page-betting-strategies-football__section--news,
.page-betting-strategies-football__section--faq {
  background-color: #1c1c1c; /* Slightly lighter dark background for sections */
  color: var(--text-color-light);
}

.page-betting-strategies-football__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-betting-strategies-football__subsection-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-betting-strategies-football p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-betting-strategies-football ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-betting-strategies-football li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #e0e0e0;
}

.page-betting-strategies-football li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-betting-strategies-football__strategy-grid,
.page-betting-strategies-football__promotion-grid,
.page-betting-strategies-football__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-strategies-football__strategy-card,
.page-betting-strategies-football__promotion-card,
.page-betting-strategies-football__news-card {
  background: #2a2a2a; /* Darker card background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-betting-strategies-football__strategy-card:hover,
.page-betting-strategies-football__promotion-card:hover,
.page-betting-strategies-football__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-betting-strategies-football__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-betting-strategies-football__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.page-betting-strategies-football__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-betting-strategies-football__card-title a:hover {
  text-decoration: underline;
}

.page-betting-strategies-football__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #c0c0c0;
  flex-grow: 1;
}

.page-betting-strategies-football__card-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 1px solid var(--secondary-color);
  text-align: center;
}

.page-betting-strategies-football__card-button:hover {
  background: #1a3c7c;
  border-color: #f0c94a;
}

.page-betting-strategies-football__analysis-list,
.page-betting-strategies-football__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
}

.page-betting-strategies-football__analysis-list li,
.page-betting-strategies-football__tips-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-left: 0; /* Remove default padding from li */
}

.page-betting-strategies-football__analysis-list li::before,
.page-betting-strategies-football__tips-list li::before {
  content: none; /* Remove default bullet */
}

.page-betting-strategies-football__list-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--secondary-color);
}

.page-betting-strategies-football__list-content {
  text-align: left;
}

.page-betting-strategies-football__list-content p {
  margin-bottom: 0;
}

.page-betting-strategies-football__cta-block {
  margin-top: 50px;
  padding: 30px;
  background: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-betting-strategies-football__cta-block p {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-color-light);
  margin-bottom: 25px;
}

.page-betting-strategies-football__news-date {
  font-size: 14px;
  color: #a0a0a0;
  margin-top: 10px;
  display: block;
}

.page-betting-strategies-football__news-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-betting-strategies-football__news-link:hover {
  text-decoration: underline;
}

/* FAQ Section Styles */
.page-betting-strategies-football__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-betting-strategies-football__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-betting-strategies-football__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-betting-strategies-football__faq-question:hover {
  background: #1a3c7c;
}

.page-betting-strategies-football__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-color-light);
}

.page-betting-strategies-football__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-betting-strategies-football__faq-item.active .page-betting-strategies-football__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Change to X shape or just rotate for - */
}

.page-betting-strategies-football__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #2a2a2a; /* Darker background for answer */
  border-radius: 0 0 8px 8px;
  color: #e0e0e0;
}

.page-betting-strategies-football__faq-item.active .page-betting-strategies-football__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-betting-strategies-football__faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-betting-strategies-football__page-title {
    font-size: 36px;
  }
  .page-betting-strategies-football__description {
    font-size: 17px;
  }
  .page-betting-strategies-football__section-title {
    font-size: 32px;
  }
  .page-betting-strategies-football__subsection-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-betting-strategies-football__intro-section {
    padding-top: 100px !important; /* Mobile: Account for fixed header */
    padding-bottom: 40px;
    min-height: unset;
  }
  .page-betting-strategies-football__container {
    padding: 0 15px;
  }
  .page-betting-strategies-football__page-title {
    font-size: 28px;
  }
  .page-betting-strategies-football__description {
    font-size: 16px;
  }
  .page-betting-strategies-football__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-betting-strategies-football__section {
    padding: 40px 0;
  }
  .page-betting-strategies-football__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-betting-strategies-football__subsection-title {
    font-size: 20px;
  }
  .page-betting-strategies-football p,
  .page-betting-strategies-football li {
    font-size: 15px;
  }
  .page-betting-strategies-football li::before {
    font-size: 14px;
  }
  .page-betting-strategies-football__strategy-grid,
  .page-betting-strategies-football__promotion-grid,
  .page-betting-strategies-football__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-betting-strategies-football__strategy-card,
  .page-betting-strategies-football__promotion-card,
  .page-betting-strategies-football__news-card {
    padding: 20px;
  }
  .page-betting-strategies-football__card-image {
    height: 180px;
  }
  .page-betting-strategies-football__card-title {
    font-size: 20px;
  }
  .page-betting-strategies-football__card-text {
    font-size: 15px;
  }
  .page-betting-strategies-football__card-button {
    padding: 10px 20px;
    font-size: 15px;
  }
  .page-betting-strategies-football__analysis-list li,
  .page-betting-strategies-football__tips-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-betting-strategies-football__list-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-betting-strategies-football__cta-block {
    padding: 20px;
  }
  .page-betting-strategies-football__cta-block p {
    font-size: 16px;
  }
  .page-betting-strategies-football__news-date {
    font-size: 13px;
  }
  .page-betting-strategies-football__faq-question {
    padding: 15px 20px;
  }
  .page-betting-strategies-football__faq-question h3 {
    font-size: 16px;
  }
  .page-betting-strategies-football__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  .page-betting-strategies-football__faq-answer {
    padding: 0 20px;
  }
  .page-betting-strategies-football__faq-item.active .page-betting-strategies-football__faq-answer {
    padding: 15px 20px !important;
  }

  /* Ensure all images are responsive and prevent horizontal scroll */
  .page-betting-strategies-football img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-betting-strategies-football__section,
  .page-betting-strategies-football__container,
  .page-betting-strategies-football__strategy-card,
  .page-betting-strategies-football__promotion-card,
  .page-betting-strategies-football__news-card,
  .page-betting-strategies-football__cta-block,
  .page-betting-strategies-football__faq-list,
  .page-betting-strategies-football__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-betting-strategies-football__section,
  .page-betting-strategies-football__cta-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}