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

.page-resources-secure-gaming-hawkgaming__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
}

.page-resources-secure-gaming-hawkgaming__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-secure-gaming-hawkgaming__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-secure-gaming-hawkgaming__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-secure-gaming-hawkgaming__hero-image {
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
}

.page-resources-secure-gaming-hawkgaming__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-resources-secure-gaming-hawkgaming__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-secure-gaming-hawkgaming__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-secure-gaming-hawkgaming__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-secure-gaming-hawkgaming__cta-button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-secure-gaming-hawkgaming__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-secure-gaming-hawkgaming__cta-button--login:hover {
  background-color: #e0a030;
  transform: translateY(-2px);
}

.page-resources-secure-gaming-hawkgaming__cta-button--explore {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-secure-gaming-hawkgaming__cta-button--explore:hover {
  background-color: #e0a030;
  transform: translateY(-2px);
}

.page-resources-secure-gaming-hawkgaming__content-area {
  max-width: 800px; /* Constrain content width for readability */
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-secure-gaming-hawkgaming__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-resources-secure-gaming-hawkgaming__back-link:hover {
  color: #FCBC45;
}

.page-resources-secure-gaming-hawkgaming__article {
  margin-bottom: 50px;
}

.page-resources-secure-gaming-hawkgaming__article-heading {
  font-size: 2.5em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-secure-gaming-hawkgaming__article-subheading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-secure-gaming-hawkgaming__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-secure-gaming-hawkgaming__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-secure-gaming-hawkgaming__feature-item {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-secure-gaming-hawkgaming__feature-title {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-secure-gaming-hawkgaming__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-secure-gaming-hawkgaming__image-container {
  margin: 40px 0;
  text-align: center;
}

.page-resources-secure-gaming-hawkgaming__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it's a block element for margin auto */
  margin-left: auto; /* Center image */
  margin-right: auto; /* Center image */
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px; /* Minimum size for content images */
}

.page-resources-secure-gaming-hawkgaming__final-cta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

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

  .page-resources-secure-gaming-hawkgaming__hero-description {
    font-size: 1em;
  }

  .page-resources-secure-gaming-hawkgaming__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-secure-gaming-hawkgaming__cta-button {
    width: 80%;
    max-width: 300px;
  }

  .page-resources-secure-gaming-hawkgaming__content-area {
    padding: 20px 15px;
  }

  .page-resources-secure-gaming-hawkgaming__article-heading {
    font-size: 2em;
  }

  .page-resources-secure-gaming-hawkgaming__article-subheading {
    font-size: 1.5em;
  }

  .page-resources-secure-gaming-hawkgaming__article-paragraph {
    font-size: 1em;
  }

  .page-resources-secure-gaming-hawkgaming__image-container img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size even on mobile */
    min-height: 200px; /* Enforce min size even on mobile */
  }

  /* Ensure content area images do not overflow */
  .page-resources-secure-gaming-hawkgaming img {
    max-width: 100% !important;
    height: auto !important;
  }
}