.page-resources-safe-betting-platform {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff;
}

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

.page-resources-safe-betting-platform__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-resources-safe-betting-platform__section:last-of-type {
  border-bottom: none;
}

.page-resources-safe-betting-platform__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-safe-betting-platform__section-description {
  font-size: 18px;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-resources-safe-betting-platform__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #f0fdf4; /* Light green background */
  overflow: hidden;
}

.page-resources-safe-betting-platform__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-safe-betting-platform__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-resources-safe-betting-platform__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-safe-betting-platform__main-title {
  font-size: 44px;
  font-weight: 800;
  color: #017439;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-safe-betting-platform__intro-text {
  font-size: 20px;
  color: #333333;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-safe-betting-platform__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-safe-betting-platform__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-safe-betting-platform__cta-button--register {
  background: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-resources-safe-betting-platform__cta-button--register:hover {
  background: #a30606;
  border-color: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-safe-betting-platform__cta-button--login {
  background: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-resources-safe-betting-platform__cta-button--login:hover {
  background: #a30606;
  border-color: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-safe-betting-platform__cta-button--final {
  background: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-resources-safe-betting-platform__cta-button--final:hover {
  background: #005a2e;
  border-color: #005a2e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-safe-betting-platform__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Grid Layouts */
.page-resources-safe-betting-platform__grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-safe-betting-platform__grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-resources-safe-betting-platform__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-safe-betting-platform__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Card Styles */
.page-resources-safe-betting-platform__card,
.page-resources-safe-betting-platform__warning-item,
.page-resources-safe-betting-platform__step-item,
.page-resources-safe-betting-platform__game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-safe-betting-platform__card:hover,
.page-resources-safe-betting-platform__warning-item:hover,
.page-resources-safe-betting-platform__step-item:hover,
.page-resources-safe-betting-platform__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-safe-betting-platform__card-image,
.page-resources-safe-betting-platform__warning-image,
.page-resources-safe-betting-platform__step-image,
.page-resources-safe-betting-platform__game-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min height for content images */
}

.page-resources-safe-betting-platform__card-title,
.page-resources-safe-betting-platform__warning-title,
.page-resources-safe-betting-platform__step-title,
.page-resources-safe-betting-platform__game-title {
  font-size: 22px;
  font-weight: 600;
  color: #017439;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-safe-betting-platform__game-title a {
  color: #017439;
  text-decoration: none;
}

.page-resources-safe-betting-platform__game-title a:hover {
  text-decoration: underline;
}

.page-resources-safe-betting-platform__card-text,
.page-resources-safe-betting-platform__warning-text,
.page-resources-safe-betting-platform__step-text,
.page-resources-safe-betting-platform__game-text {
  font-size: 16px;
  color: #555555;
  text-align: left;
  flex-grow: 1;
}

/* FAQ Section */
.page-resources-safe-betting-platform__section--faq {
  background-color: #f8f8f8;
}