/* style/resources-secure-online-betting.css */
.page-resources-secure-online-betting {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #1A202C; /* Dark blue/charcoal background */
  line-height: 1.6;
}

.page-resources-secure-online-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-secure-online-betting__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A202C);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-secure-online-betting__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-resources-secure-online-betting__hero-section > * {
  position: relative;
  z-index: 2;
}

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

.page-resources-secure-online-betting__back-link:hover {
  color: #5f636b;
}

.page-resources-secure-online-betting__title {
  font-size: 3.2em;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-secure-online-betting__highlight {
  color: #998100;
}

.page-resources-secure-online-betting__subtitle {
  font-size: 1.4em;
  color: #3A404C;
  margin-bottom: 40px;
}

.page-resources-secure-online-betting__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-resources-secure-online-betting__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  margin-right: 15px;
}

.page-resources-secure-online-betting__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-resources-secure-online-betting__btn--secondary {
  background-color: #3A404C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-secure-online-betting__btn--secondary:hover {
  background-color: #5f636b;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-resources-secure-online-betting__content-section {
  padding: 60px 0;
}

.page-resources-secure-online-betting__article-layout {
  display: flex;
  justify-content: center;
}

.page-resources-secure-online-betting__article {
  max-width: 800px;
  padding: 20px;
  background-color: #2A303C; /* Slightly lighter dark background for article */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-secure-online-betting__article p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-resources-secure-online-betting__article strong {
  color: #FFD700;
}

.page-resources-secure-online-betting__heading {
  font-size: 2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #3A404C;
  padding-bottom: 10px;
}

.page-resources-secure-online-betting__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1.5em;
  color: #E0E0E0;
}

.page-resources-secure-online-betting__list li {
  margin-bottom: 0.8em;
  font-size: 1.05em;
}

.page-resources-secure-online-betting__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-resources-secure-online-betting__cta-block {
  text-align: center;
  background-color: #1A202C;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
  border: 1px dashed #FFD700;
}

.page-resources-secure-online-betting__cta-text {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-secure-online-betting__title {
    font-size: 2.5em;
  }

  .page-resources-secure-online-betting__subtitle {
    font-size: 1.2em;
  }

  .page-resources-secure-online-betting__heading {
    font-size: 1.7em;
  }

  .page-resources-secure-online-betting__btn {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-resources-secure-online-betting__cta-text {
    font-size: 1.3em;
  }
}

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

  .page-resources-secure-online-betting__subtitle {
    font-size: 1em;
  }

  .page-resources-secure-online-betting__heading {
    font-size: 1.5em;
  }

  .page-resources-secure-online-betting__hero-section {
    padding: 60px 0 40px;
  }

  .page-resources-secure-online-betting__article {
    padding: 15px;
  }
}