/* style/resources-sports-betting-tips.css */
:root {
  --primary-color: #1A202C;
  --secondary-color: #E53E3E;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-resources-sports-betting-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text should be light */
  background-color: var(--bg-dark); /* Ensure consistency with shared.css body */
  padding-top: var(--header-offset, 120px);
}

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

.page-resources-sports-betting-tips__hero-section {
  text-align: center;
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-sports-betting-tips__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.2;
}

.page-resources-sports-betting-tips__description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-sports-betting-tips__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-sports-betting-tips__btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-resources-sports-betting-tips__btn-primary:hover {
  background-color: #c93434;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-tips__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-sports-betting-tips__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-resources-sports-betting-tips__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-sports-betting-tips__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-sports-betting-tips__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

.page-resources-sports-betting-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-sports-betting-tips__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--secondary-color);
}

.page-resources-sports-betting-tips__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-sports-betting-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-sports-betting-tips__text-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-sports-betting-tips__text-link:hover {
  color: #c93434;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-sports-betting-tips {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-sports-betting-tips__container {
    padding: 0 15px;
  }

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

  .page-resources-sports-betting-tips__main-title {
    font-size: 2.2em;
  }

  .page-resources-sports-betting-tips__description {
    font-size: 1em;
  }

  .page-resources-sports-betting-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-sports-betting-tips__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-resources-sports-betting-tips__section-title {
    font-size: 1.8em;
  }

  .page-resources-sports-betting-tips__sub-title {
    font-size: 1.4em;
  }

  .page-resources-sports-betting-tips__paragraph {
    font-size: 0.95em;
  }

  .page-resources-sports-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-resources-sports-betting-tips__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}