/* style/resources-online-betting-safety-guide.css */
:root {
  --primary-color: #FF4500;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-light-card: rgba(255, 255, 255, 0.1);
  --border-color: rgba(255, 255, 255, 0.2);
}

/* Base styles for the page content wrapper */
.page-resources-online-betting-safety-guide {
  color: var(--text-light); /* Body background is dark, so text is light */
  padding-top: 120px; /* Adjust for fixed header on desktop */
  background-color: var(--bg-dark); /* Ensure consistency if shared.css is overridden */
}

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

.page-resources-online-betting-safety-guide__hero-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #a03000 100%);
  color: var(--text-light);
}

.page-resources-online-betting-safety-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-safety-guide__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-resources-online-betting-safety-guide__highlight-text {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-resources-online-betting-safety-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-online-betting-safety-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  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);
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-online-betting-safety-guide__cta-button--primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border: 2px solid var(--secondary-color);
}

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

.page-resources-online-betting-safety-guide__cta-button--secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-resources-online-betting-safety-guide__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-safety-guide__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-online-betting-safety-guide__content-section.page-resources-online-betting-safety-guide__dark-bg {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark for contrast */
}

.page-resources-online-betting-safety-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-resources-online-betting-safety-guide__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-resources-online-betting-safety-guide__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-online-betting-safety-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-online-betting-safety-guide__list-item {
  background-color: var(--bg-light-card);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  line-height: 1.6;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-online-betting-safety-guide__list-item strong {
  color: var(--secondary-color);
}

.page-resources-online-betting-safety-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-online-betting-safety-guide__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #a03000 0%, var(--primary-color) 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-online-betting-safety-guide__main-title {
    font-size: 2.8em;
  }

  .page-resources-online-betting-safety-guide__section-title {
    font-size: 2.2em;
  }

  .page-resources-online-betting-safety-guide__sub-title {
    font-size: 1.6em;
  }

  .page-resources-online-betting-safety-guide__intro-text,
  .page-resources-online-betting-safety-guide__paragraph,
  .page-resources-online-betting-safety-guide__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-online-betting-safety-guide {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
  }

  .page-resources-online-betting-safety-guide__hero-section {
    padding: 60px 0;
  }

  .page-resources-online-betting-safety-guide__main-title {
    font-size: 2.2em;
    padding: 0 15px;
  }

  .page-resources-online-betting-safety-guide__intro-text {
    font-size: 0.95em;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .page-resources-online-betting-safety-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-resources-online-betting-safety-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-online-betting-safety-guide__content-section {
    padding: 40px 0;
  }

  .page-resources-online-betting-safety-guide__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-online-betting-safety-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-online-betting-safety-guide__sub-title {
    font-size: 1.4em;
  }

  .page-resources-online-betting-safety-guide__paragraph,
  .page-resources-online-betting-safety-guide__list-item {
    font-size: 0.9em;
  }

  .page-resources-online-betting-safety-guide__list-item {
    padding: 12px 15px;
  }

  .page-resources-online-betting-safety-guide__image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-online-betting-safety-guide__conclusion-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-resources-online-betting-safety-guide__main-title {
    font-size: 1.8em;
  }

  .page-resources-online-betting-safety-guide__section-title {
    font-size: 1.5em;
  }

  .page-resources-online-betting-safety-guide__sub-title {
    font-size: 1.2em;
  }

  .page-resources-online-betting-safety-guide__intro-text,
  .page-resources-online-betting-safety-guide__paragraph,
  .page-resources-online-betting-safety-guide__list-item {
    font-size: 0.85em;
  }
  .page-resources-online-betting-safety-guide__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}