/* style/resources-betting-tips.css */
.page-resources-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8;
}

.page-resources-betting-tips__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-betting-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-betting-tips__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(44, 62, 80, 0.7), rgba(243, 156, 18, 0.5));
  z-index: 2;
}

.page-resources-betting-tips__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-resources-betting-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-betting-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-betting-tips__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-betting-tips__content-section {
  padding: 60px 0;
}

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

.page-resources-betting-tips__section-title {
  font-size: 2.5em;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-betting-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
  color: #333333;
}

.page-resources-betting-tips__card-grid,
.page-resources-betting-tips__strategy-grid,
.page-resources-betting-tips__advanced-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-resources-betting-tips__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-betting-tips__card:hover {
  transform: translateY(-10px);
}

.page-resources-betting-tips__card-title {
  font-size: 1.5em;
  color: #F39C12;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-betting-tips__card-text {
  font-size: 1em;
  color: #555555;
}

.page-resources-betting-tips__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  display: block;
  object-fit: cover;
}

.page-resources-betting-tips__strategy-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}

.page-resources-betting-tips__strategy-title {
  font-size: 1.6em;
  color: #F39C12;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-betting-tips__strategy-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-betting-tips__strategy-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image width within item */
  border-radius: 8px;
  margin-top: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-resources-betting-tips__mistakes-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-betting-tips__list-item {
  background: #ffffff;
  border-left: 5px solid #F39C12;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
}

.page-resources-betting-tips__list-item strong {
  color: #2C3E50;
}

.page-resources-betting-tips__faq-section {
  background-color: #2C3E50;
  padding: 60px 0;
}

.page-resources-betting-tips__faq-section .page-resources-betting-tips__section-title {
  color: #ffffff;
}

.page-resources-betting-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-betting-tips__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.page-resources-betting-tips__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-resources-betting-tips__faq-title {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
}

.page-resources-betting-tips__faq-toggle {
  font-size: 1.8em;
  color: #F39C12;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-resources-betting-tips__faq-item.active .page-resources-betting-tips__faq-toggle {
  transform: rotate(45deg); /* Plus to minus */
}

.page-resources-betting-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  font-size: 1em;
}

.page-resources-betting-tips__faq-item.active .page-resources-betting-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to reveal content */
  padding: 15px 25px 25px;
}

.page-resources-betting-tips__faq-answer p {
  margin: 0;
}

.page-resources-betting-tips__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-betting-tips__cta-button {
  margin-top: 30px;
  display: inline-block;
  font-size: 1.3em;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-betting-tips__btn-primary {
  background-color: #F39C12;
  color: #ffffff;
  border: 2px solid #F39C12;
}

.page-resources-betting-tips__btn-primary:hover {
  background-color: #e08e0b;
  transform: translateY(-3px);
}

.page-resources-betting-tips__btn-secondary {
  background-color: transparent;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.page-resources-betting-tips__btn-secondary:hover {
  background-color: #F39C12;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-resources-betting-tips__dark-bg {
  background-color: #2C3E50;
  color: #ffffff;
}

.page-resources-betting-tips__dark-bg .page-resources-betting-tips__section-title {
  color: #ffffff;
}

.page-resources-betting-tips__dark-bg .page-resources-betting-tips__text-block {
  color: #f0f0f0;
}

.page-resources-betting-tips__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-resources-betting-tips__light-bg .page-resources-betting-tips__section-title {
  color: #2C3E50;
}

.page-resources-betting-tips__light-bg .page-resources-betting-tips__text-block {
  color: #333333;
}

.page-resources-betting-tips__video-section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-betting-tips__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-betting-tips__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    cursor: pointer;
}

.page-resources-betting-tips__video-cta {
    margin-top: 40px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-betting-tips__hero-title {
    font-size: 2.8em;
  }
  .page-resources-betting-tips__section-title {
    font-size: 2em;
  }
  .page-resources-betting-tips__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-betting-tips__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-betting-tips__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-resources-betting-tips__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-resources-betting-tips__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-betting-tips__btn-primary,
  .page-resources-betting-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1.1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-betting-tips__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-betting-tips__section-title {
    font-size: 1.8em;
  }
  .page-resources-betting-tips__text-block {
    font-size: 0.95em;
  }
  .page-resources-betting-tips__card-grid,
  .page-resources-betting-tips__strategy-grid,
  .page-resources-betting-tips__advanced-tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-betting-tips__card,
  .page-resources-betting-tips__strategy-item {
    padding: 20px;
  }
  .page-resources-betting-tips__faq-question {
    padding: 15px 20px;
  }
  .page-resources-betting-tips__faq-title {
    font-size: 1.1em;
  }
  .page-resources-betting-tips__faq-answer {
    padding: 0 20px;
  }
  .page-resources-betting-tips__faq-item.active .page-resources-betting-tips__faq-answer {
    padding: 10px 20px 20px;
  }
  .page-resources-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-betting-tips__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-betting-tips__video-wrapper {
    margin-left: 0;
    margin-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-betting-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .page-resources-betting-tips__hero-title {
    font-size: 1.8em;
  }
  .page-resources-betting-tips__hero-description {
    font-size: 0.9em;
  }
  .page-resources-betting-tips__section-title {
    font-size: 1.5em;
  }
}

/* Ensure content area images are not too small */
.page-resources-betting-tips__content-section img,
.page-resources-betting-tips__strategy-item img {
    min-width: 200px;
    min-height: 200px;
}