/* style/resources-sports-betting-guide.css */
:root {
  --primary-color: #DAA520; /* Gold */
  --secondary-color: #2F4F4F; /* Dark Slate Gray */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-resources-sports-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Dark body background, so light text */
  background-color: var(--bg-dark);
}

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

/* Hero Section */
.page-resources-sports-betting-guide__hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:V88,sports_betting,background]') no-repeat center center/cover;
  color: var(--text-light);
  padding: 120px 0 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 500px; /* Ensure sufficient height */
  padding-top: 120px; /* Desktop padding for fixed header */
}

.page-resources-sports-betting-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sports-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

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

.page-resources-sports-betting-guide__cta-button--primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-resources-sports-betting-guide__cta-button--primary:hover {
  background-color: #c0901e;
  border-color: #c0901e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-resources-sports-betting-guide__cta-button--secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-resources-sports-betting-guide__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sports-betting-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.page-resources-sports-betting-guide__section p {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* Why Choose Section */
.page-resources-sports-betting-guide__why-choose {
  background-color: var(--bg-dark);
}

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

.page-resources-sports-betting-guide__feature-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sports-betting-guide__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-sports-betting-guide__feature-icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-sports-betting-guide__feature-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-sports-betting-guide__feature-item p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 0;
  text-align: center;
}

/* Getting Started Section */
.page-resources-sports-betting-guide__getting-started {
  background-color: #1a1a1a;
}

.page-resources-sports-betting-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__step-item {
  background-color: var(--bg-dark);
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sports-betting-guide__step-number {
  font-size: 3em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  background-color: rgba(218, 165, 32, 0.1);
}

.page-resources-sports-betting-guide__step-title {
  font-size: 1.8em;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-resources-sports-betting-guide__step-item p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-sports-betting-guide__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-sports-betting-guide__btn-small:hover {
  background-color: #c0901e;
  transform: translateY(-2px);
}

/* Bet Types Section */
.page-resources-sports-betting-guide__bet-types {
  background-color: var(--bg-dark);
}

.page-resources-sports-betting-guide__bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__bet-type-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-sports-betting-guide__bet-type-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  display: block;
}

.page-resources-sports-betting-guide__bet-type-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-sports-betting-guide__bet-type-item p {
  font-size: 0.95em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 0;
}

/* Tips & Strategies Section */
.page-resources-sports-betting-guide__tips-strategies {
  background-color: #1a1a1a;
}

.page-resources-sports-betting-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__tip-item {
  background-color: var(--bg-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sports-betting-guide__tip-title {
  font-size: 1.6em;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-resources-sports-betting-guide__tip-item p {
  font-size: 1em;
  color: #cccccc;
  text-align: left;
}

/* Sports Offered Section */
.page-resources-sports-betting-guide__sports-offered {
  background-color: var(--bg-dark);
}

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

.page-resources-sports-betting-guide__sport-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-sports-betting-guide__sport-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  display: block;
}

.page-resources-sports-betting-guide__sport-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-sports-betting-guide__sport-item p {
  font-size: 0.95em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 0;
}

/* Responsible Gambling Section */
.page-resources-sports-betting-guide__responsible-gambling {
  background-color: #1a1a1a;
}

.page-resources-sports-betting-guide__responsibility-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-resources-sports-betting-guide__responsibility-list li {
  background-color: var(--bg-dark);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--primary-color);
  color: #f0f0f0;
  text-align: left;
  font-size: 1.05em;
}

.page-resources-sports-betting-guide__responsibility-list li strong {
  color: var(--primary-color);
}

.page-resources-sports-betting-guide__responsibility-list li p {
  margin: 0;
  text-align: left;
  color: #cccccc;
}

/* FAQ Section */
.page-resources-sports-betting-guide__faq-section {
  background-color: var(--bg-dark);
}

.page-resources-sports-betting-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-sports-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sports-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-resources-sports-betting-guide__faq-question:hover {
  background: #3a5b5b;
}

.page-resources-sports-betting-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

.page-resources-sports-betting-guide__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-sports-betting-guide__faq-item.active .page-resources-sports-betting-guide__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

.page-resources-sports-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #1a1a1a;
  color: #cccccc;
  border-radius: 0 0 8px 8px;
}

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

.page-resources-sports-betting-guide__faq-answer p {
  margin: 0;
  text-align: left;
  font-size: 1em;
  color: #cccccc;
}

/* Final CTA Section */
.page-resources-sports-betting-guide__cta-final {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 60px 0;
}

.page-resources-sports-betting-guide__cta-final-content {
  max-width: 800px;
}

.page-resources-sports-betting-guide__cta-final .page-resources-sports-betting-guide__section-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 2.2em;
}

.page-resources-sports-betting-guide__cta-final p {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-resources-sports-betting-guide__cta-final .page-resources-sports-betting-guide__cta-button {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-sports-betting-guide__cta-final .page-resources-sports-betting-guide__cta-button:hover {
  background-color: #c0901e;
  border-color: #c0901e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-sports-betting-guide__main-title {
    font-size: 3em;
  }
  .page-resources-sports-betting-guide__section-title {
    font-size: 2em;
  }
  .page-resources-sports-betting-guide__feature-title, .page-resources-sports-betting-guide__step-title, .page-resources-sports-betting-guide__bet-type-title, .page-resources-sports-betting-guide__tip-title, .page-resources-sports-betting-guide__sport-title {
    font-size: 1.4em;
  }
  .page-resources-sports-betting-guide__hero-section {
    padding: 100px 0 60px;
  }
  .page-resources-sports-betting-guide__section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-resources-sports-betting-guide__hero-section {
    padding-top: 100px !important; /* Mobile padding for fixed header */
    padding-bottom: 40px;
    min-height: 400px;
  }
  .page-resources-sports-betting-guide__main-title {
    font-size: 2.5em;
  }
  .page-resources-sports-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-sports-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-sports-betting-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }
  .page-resources-sports-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-sports-betting-guide__section p {
    font-size: 0.95em;
  }
  .page-resources-sports-betting-guide__feature-item, .page-resources-sports-betting-guide__step-item, .page-resources-sports-betting-guide__bet-type-item, .page-resources-sports-betting-guide__tip-item, .page-resources-sports-betting-guide__sport-item {
    padding: 20px;
  }
  .page-resources-sports-betting-guide__feature-icon {
    width: 80px;
  }
  .page-resources-sports-betting-guide__feature-title, .page-resources-sports-betting-guide__step-title, .page-resources-sports-betting-guide__bet-type-title, .page-resources-sports-betting-guide__tip-title, .page-resources-sports-betting-guide__sport-title {
    font-size: 1.2em;
  }
  .page-resources-sports-betting-guide__step-number {
    font-size: 2.5em;
    padding: 5px 15px;
  }
  .page-resources-sports-betting-guide__btn-small {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-sports-betting-guide__bet-type-image, .page-resources-sports-betting-guide__sport-image {
    height: 150px;
  }
  .page-resources-sports-betting-guide__responsibility-list li {
    padding: 15px;
    font-size: 1em;
  }
  .page-resources-sports-betting-guide__faq-question {
    padding: 15px 20px;
  }
  .page-resources-sports-betting-guide__faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-sports-betting-guide__faq-toggle {
    font-size: 1.8em;
    width: 25px;
    height: 25px;
  }
  .page-resources-sports-betting-guide__faq-answer {
    padding: 0 20px;
  }
  .page-resources-sports-betting-guide__faq-item.active .page-resources-sports-betting-guide__faq-answer {
    padding: 15px 20px !important;
  }
  .page-resources-sports-betting-guide__cta-final .page-resources-sports-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-sports-betting-guide__cta-final .page-resources-sports-betting-guide__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-sports-betting-guide img, .page-resources-sports-betting-guide video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-sports-betting-guide__container,
  .page-resources-sports-betting-guide__cta-buttons,
  .page-resources-sports-betting-guide__faq-list,
  .page-resources-sports-betting-guide__cta-final-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-sports-betting-guide__hero-section .page-resources-sports-betting-guide__container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-resources-sports-betting-guide__main-title {
    font-size: 2em;
  }
  .page-resources-sports-betting-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-sports-betting-guide__hero-section {
    padding-top: 80px !important;
    padding-bottom: 30px;
    min-height: 350px;
  }
  .page-resources-sports-betting-guide__section {
    padding: 40px 0;
  }
  .page-resources-sports-betting-guide__feature-icon {
    width: 60px;
  }
  .page-resources-sports-betting-guide__feature-title, .page-resources-sports-betting-guide__step-title, .page-resources-sports-betting-guide__bet-type-title, .page-resources-sports-betting-guide__tip-title, .page-resources-sports-betting-guide__sport-title {
    font-size: 1.1em;
  }
  .page-resources-sports-betting-guide__step-number {
    font-size: 2em;
    padding: 3px 10px;
  }
  .page-resources-sports-betting-guide__bet-type-image, .page-resources-sports-betting-guide__sport-image {
    height: 120px;
  }
  .page-resources-sports-betting-guide__faq-question h3 {
    font-size: 1em;
  }
  .page-resources-sports-betting-guide__faq-toggle {
    font-size: 1.5em;
    width: 20px;
    height: 20px;
  }
  .page-resources-sports-betting-guide__cta-final .page-resources-sports-betting-guide__section-title {
    font-size: 1.5em;
  }
}