/* style/betting-guide-legality.css */
.page-betting-guide-legality {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A1A; /* Very dark grey background */
  line-height: 1.6;
}

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

.page-betting-guide-legality__hero {
  background: linear-gradient(135deg, #B22222 0%, #8B0000 100%); /* Primary color gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-betting-guide-legality__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,subtle_pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-betting-guide-legality__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-betting-guide-legality__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.page-betting-guide-legality__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-betting-guide-legality__section:last-of-type {
  border-bottom: none;
}

.page-betting-guide-legality__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-betting-guide-legality__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #D0D0D0;
}

.page-betting-guide-legality__section h3 {
  font-size: 1.8em;
  color: #B22222; /* Primary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-guide-legality__section ul,
.page-betting-guide-legality__section ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-betting-guide-legality__section ol {
  list-style-type: decimal;
}

.page-betting-guide-legality__section li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-betting-guide-legality__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out;
}

.page-betting-guide-legality__image:hover {
  transform: translateY(-5px);
}

.page-betting-guide-legality__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-betting-guide-legality__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #B22222; /* Dark red text */
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-betting-guide-legality__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-betting-guide-legality__btn--secondary {
  background-color: #B22222; /* Primary color button */
  color: #FFFFFF;
  border: 2px solid #FFD700;
  box-shadow: 0 6px 15px rgba(178, 34, 34, 0.4);
}

.page-betting-guide-legality__btn--secondary:hover {
  background-color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(178, 34, 34, 0.6);
}

.page-betting-guide-legality__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-betting-guide-legality__cta-block {
  background-color: #2A2A2A;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #B22222;
}

.page-betting-guide-legality__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-guide-legality__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #D0D0D0;
}

.page-betting-guide-legality__faq-item {
  background-color: #252525;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #B22222;
}

.page-betting-guide-legality__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-betting-guide-legality__faq-answer {
  font-size: 1.05em;
  color: #D0D0D0;
}

.page-betting-guide-legality .highlight {
  color: #FFD700;
}

.page-betting-guide-legality .keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-betting-guide-legality__hero-title {
    font-size: 2.5em;
  }

  .page-betting-guide-legality__hero-subtitle {
    font-size: 1.2em;
  }

  .page-betting-guide-legality__section-title {
    font-size: 2em;
  }

  .page-betting-guide-legality__section h3 {
    font-size: 1.5em;
  }

  .page-betting-guide-legality__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-betting-guide-legality__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-betting-guide-legality__cta-title {
    font-size: 1.8em;
  }

  .page-betting-guide-legality__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-betting-guide-legality__hero-title {
    font-size: 2em;
  }

  .page-betting-guide-legality__hero-subtitle {
    font-size: 1em;
  }

  .page-betting-guide-legality__section-title {
    font-size: 1.8em;
  }

  .page-betting-guide-legality__section h3 {
    font-size: 1.3em;
  }

  .page-betting-guide-legality__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }

  .page-betting-guide-legality__cta-title {
    font-size: 1.5em;
  }

  .page-betting-guide-legality__faq-question {
    font-size: 1.1em;
  }
}