/* style/betting-strategy-guides-football.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #121212;
  --bg-light: #f5f5f5;
  --btn-login: #EA7C07;
}

.page-betting-strategy-guides-football {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from body */
}

.page-betting-strategy-guides-football__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-betting-strategy-guides-football__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height to prevent image being too tall */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-betting-strategy-guides-football__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 400px; /* Ensure minimum height for hero image */
}

.page-betting-strategy-guides-football__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: -100px auto 0 auto; /* Pull content up slightly over the image's lower part */
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background for text */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

.page-betting-strategy-guides-football__main-title {
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
  box-sizing: border-box;
}

.page-betting-strategy-guides-football__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-betting-strategy-guides-football__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-betting-strategy-guides-football__cta-buttons--centered {
  margin-top: 40px;
}

.page-betting-strategy-guides-football__btn-primary,
.page-betting-strategy-guides-football__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-betting-strategy-guides-football__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-betting-strategy-guides-football__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
}

.page-betting-strategy-guides-football__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-betting-strategy-guides-football__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.page-betting-strategy-guides-football__section {
  padding: 60px 20px;
  text-align: center;
}

.page-betting-strategy-guides-football__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-betting-strategy-guides-football__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body for contrast */
  color: var(--text-light);
}

.page-betting-strategy-guides-football__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-betting-strategy-guides-football__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: 700;
  color: inherit; /* Inherit color from parent section */
}

.page-betting-strategy-guides-football__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: inherit; /* Inherit color from parent section */
}

.page-betting-strategy-guides-football__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-betting-strategy-guides-football__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark bg */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
}

.page-betting-strategy-guides-football__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-betting-strategy-guides-football__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.page-betting-strategy-guides-football__card-text {
  font-size: 0.95em;
  line-height: 1.6;
}

.page-betting-strategy-guides-football__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-betting-strategy-guides-football__grid-item {
  padding: 25px;
  background: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-betting-strategy-guides-football__grid-item .page-betting-strategy-guides-football__sub-title {
  color: var(--primary-color);
}

.page-betting-strategy-guides-football__flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-betting-strategy-guides-football__flex-item {
  flex: 1 1 calc(33% - 20px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: var(--text-light);
}

.page-betting-strategy-guides-football__image-inline {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-betting-strategy-guides-football__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-strategy-guides-football__list-item {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-betting-strategy-guides-football__list-item .page-betting-strategy-guides-football__sub-title {
  color: var(--primary-color);
  margin-top: 0;
}

.page-betting-strategy-guides-football__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-betting-strategy-guides-football__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-light);
}

.page-betting-strategy-guides-football__faq-item summary {
  list-style: none;
}

.page-betting-strategy-guides-football__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-betting-strategy-guides-football__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-betting-strategy-guides-football__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-betting-strategy-guides-football__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
}

.page-betting-strategy-guides-football__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.page-betting-strategy-guides-football__faq-item[open] .page-betting-strategy-guides-football__faq-question {
  border-bottom: none;
}

.page-betting-strategy-guides-football__conclusion-section {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-betting-strategy-guides-football__hero-content {
    margin-top: -80px;
    padding: 25px;
  }

  .page-betting-strategy-guides-football__main-title {
    font-size: 2.5em;
  }

  .page-betting-strategy-guides-football__section-title {
    font-size: 2em;
  }

  .page-betting-strategy-guides-football__flex-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .page-betting-strategy-guides-football__hero-section {
    padding: 10px 0 40px 0;
  }
  
  .page-betting-strategy-guides-football__hero-image {
    min-height: 250px;
  }

  .page-betting-strategy-guides-football__hero-content {
    margin-top: -60px;
    padding: 20px;
    max-width: 95%;
  }

  .page-betting-strategy-guides-football__main-title {
    font-size: 2em;
  }

  .page-betting-strategy-guides-football__intro-description {
    font-size: 1em;
  }

  .page-betting-strategy-guides-football__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-betting-strategy-guides-football__btn-primary,
  .page-betting-strategy-guides-football__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-betting-strategy-guides-football__section {
    padding: 40px 15px;
  }

  .page-betting-strategy-guides-football__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-betting-strategy-guides-football__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-betting-strategy-guides-football__sub-title {
    font-size: 1.5em;
  }

  .page-betting-strategy-guides-football__paragraph {
    font-size: 0.95em;
    text-align: left;
  }

  .page-betting-strategy-guides-football__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-betting-strategy-guides-football__card-image {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-betting-strategy-guides-football__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-betting-strategy-guides-football__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-betting-strategy-guides-football__flex-item {
    flex: 1 1 100%;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-betting-strategy-guides-football__image-inline {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-betting-strategy-guides-football__list-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-betting-strategy-guides-football__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-betting-strategy-guides-football__faq-question {
    font-size: 1.05em;
  }
}

/* Ensure all images are responsive by default */
.page-betting-strategy-guides-football img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* No CSS filter allowed for images */
/* No CSS filter allowed for images */