/* style/resources-arbitrage-betting-strategy.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register: #C30808;
  --button-login: #C30808;
  --button-font-color: #FFFF00;
  --border-color: #e0e0e0;
}

.page-resources-arbitrage-betting-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--secondary-color); /* Matches body background from shared.css */
  padding-top: var(--header-offset, 120px);
}

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

.page-resources-arbitrage-betting-strategy__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

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

.page-resources-arbitrage-betting-strategy__hero-section {
  text-align: center;
  padding: 80px 20px;
  padding-top: calc(80px + var(--header-offset, 120px)); /* Adjust for header offset */
  background-image: url('[GALLERY:hero_main:1920x1080:arbitrage,betting,strategy,Bong88,profit,sports]');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.page-resources-arbitrage-betting-strategy__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: -1;
}

.page-resources-arbitrage-betting-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--button-font-color); /* Use yellow for highlight */
}

.page-resources-arbitrage-betting-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-arbitrage-betting-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-arbitrage-betting-strategy__btn-primary,
.page-resources-arbitrage-betting-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-arbitrage-betting-strategy__btn-primary {
  background-color: var(--button-register);
  color: var(--button-font-color);
  border: 2px solid var(--button-register);
}

.page-resources-arbitrage-betting-strategy__btn-primary:hover {
  background-color: darken(var(--button-register), 10%);
  border-color: darken(var(--button-register), 10%);
}

.page-resources-arbitrage-betting-strategy__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-arbitrage-betting-strategy__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-arbitrage-betting-strategy__content-area {
  padding: 60px 20px;
}

.page-resources-arbitrage-betting-strategy__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-arbitrage-betting-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-arbitrage-betting-strategy__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-dark);
}

.page-resources-arbitrage-betting-strategy__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-arbitrage-betting-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-arbitrage-betting-strategy__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-resources-arbitrage-betting-strategy__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-resources-arbitrage-betting-strategy__list-heading {
  color: var(--primary-color);
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-resources-arbitrage-betting-strategy__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-resources-arbitrage-betting-strategy__ordered-list .page-resources-arbitrage-betting-strategy__list-item {
  background-color: var(--secondary-color);
  border-left: none;
  padding: 10px 0;
  box-shadow: none;
  border-bottom: 1px dashed var(--border-color);
  border-radius: 0;
}

.page-resources-arbitrage-betting-strategy__ordered-list .page-resources-arbitrage-betting-strategy__list-item:last-child {
  border-bottom: none;
}

.page-resources-arbitrage-betting-strategy__code {
  background-color: #eee;
  padding: 2px 5px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  color: var(--primary-color);
}

.page-resources-arbitrage-betting-strategy__faq-section {
  margin-top: 50px;
  border-top: 2px solid var(--primary-color);
  padding-top: 30px;
}

.page-resources-arbitrage-betting-strategy__faq-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-arbitrage-betting-strategy__faq-item {
  background-color: #f0f8f0;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-resources-arbitrage-betting-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  font-size: 1.1em;
  list-style: none; /* For details/summary */
}

.page-resources-arbitrage-betting-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-arbitrage-betting-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-resources-arbitrage-betting-strategy__faq-answer {
  padding: 15px 20px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-top: 1px solid var(--border-color);
}

.page-resources-arbitrage-betting-strategy__faq-item[open] .page-resources-arbitrage-betting-strategy__faq-question {
  border-bottom: 1px solid var(--border-color);
}

.page-resources-arbitrage-betting-strategy__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-arbitrage-betting-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-resources-arbitrage-betting-strategy__hero-description {
    font-size: 1.1em;
  }
  .page-resources-arbitrage-betting-strategy__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-arbitrage-betting-strategy {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-resources-arbitrage-betting-strategy__hero-section {
    padding: 60px 15px;
    padding-top: calc(60px + var(--header-offset, 120px));
  }
  .page-resources-arbitrage-betting-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-resources-arbitrage-betting-strategy__hero-description {
    font-size: 1em;
  }
  .page-resources-arbitrage-betting-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-arbitrage-betting-strategy__btn-primary,
  .page-resources-arbitrage-betting-strategy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-arbitrage-betting-strategy__content-area {
    padding: 40px 15px;
  }
  .page-resources-arbitrage-betting-strategy__section-title {
    font-size: 1.5em;
  }
  .page-resources-arbitrage-betting-strategy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-arbitrage-betting-strategy__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-resources-arbitrage-betting-strategy__list-item {
    padding: 12px 15px;
  }
  .page-resources-arbitrage-betting-strategy__faq-question {
    padding: 12px 15px;
    font-size: 1em;
  }
  .page-resources-arbitrage-betting-strategy__faq-answer {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-arbitrage-betting-strategy__hero-title {
    font-size: 1.5em;
  }
  .page-resources-arbitrage-betting-strategy__hero-description {
    font-size: 0.9em;
  }
  .page-resources-arbitrage-betting-strategy__btn-primary,
  .page-resources-arbitrage-betting-strategy__btn-secondary {
    padding: 12px 20px;
  }
}