/* style/resources-secure-betting-guide.css */
.page-resources-secure-betting-guide {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure spacing for fixed header */
}

.page-resources-secure-betting-guide__hero-section {
  background-color: #1A2B4C; /* Midnight Blue */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-secure-betting-guide__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.page-resources-secure-betting-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-secure-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-secure-betting-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-secure-betting-guide__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  z-index: 1;
  object-fit: cover;
}

.page-resources-secure-betting-guide__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-secure-betting-guide__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #1A2B4C;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-secure-betting-guide__back-link:hover {
  color: #FFD700;
}

.page-resources-secure-betting-guide__heading {
  font-size: 2.2em;
  color: #1A2B4C;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-secure-betting-guide__sub-heading {
  font-size: 1.6em;
  color: #1A2B4C;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-resources-secure-betting-guide__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-secure-betting-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-resources-secure-betting-guide__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Midnight Blue */
  border: 2px solid #FFD700;
}

.page-resources-secure-betting-guide__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-secure-betting-guide__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-secure-betting-guide__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-resources-secure-betting-guide__cta-buttons {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .page-resources-secure-betting-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-secure-betting-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-secure-betting-guide__button {
    width: 100%;
    max-width: 280px; /* Constrain button width on mobile */
  }

  .page-resources-secure-betting-guide__heading {
    font-size: 1.8em;
  }

  .page-resources-secure-betting-guide__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-secure-betting-guide__paragraph {
    font-size: 1em;
  }

  .page-resources-secure-betting-guide__hero-image {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
    opacity: 0.5;
  }

  .page-resources-secure-betting-guide__content-area {
    padding: 20px 15px;
  }

  .page-resources-secure-betting-guide__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width for mobile */
    min-height: 200px; /* Enforce min-height for mobile */
  }

  .page-resources-secure-betting-guide {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}

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

  .page-resources-secure-betting-guide__hero-section {
    padding: 60px 15px;
  }

  .page-resources-secure-betting-guide__heading {
    font-size: 1.6em;
  }

  .page-resources-secure-betting-guide__sub-heading {
    font-size: 1.2em;
  }
}