/* style/resources-playjl-security-measures.css */
.page-resources-playjl-security-measures {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-resources-playjl-security-measures {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header height */
  }
}

.page-resources-playjl-security-measures__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF; /* Light text for dark background */
}

.page-resources-playjl-security-measures__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2; /* Make image subtle in the background */
  object-fit: cover;
}

.page-resources-playjl-security-measures__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-playjl-security-measures__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-playjl-security-measures__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-resources-playjl-security-measures__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-playjl-security-measures__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-playjl-security-measures__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-resources-playjl-security-measures__button--register {
  background-color: #FFFFFF; /* Register button background */
  color: #000000; /* Dark text for white background */
}

.page-resources-playjl-security-measures__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-playjl-security-measures__button--login {
  background-color: #FCBC45; /* Login button background */
  color: #000000; /* Dark text for FCBC45 background */
}

.page-resources-playjl-security-measures__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-playjl-security-measures__button--join-now {
  background-color: #FCBC45; /* Login button color for emphasis */
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-playjl-security-measures__button--join-now:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-playjl-security-measures__content-area {
  max-width: 900px; /* Content width for readability */
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF; /* White background for article content */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-resources-playjl-security-measures__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-playjl-security-measures__back-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-resources-playjl-security-measures__article {
  padding-bottom: 40px;
}

.page-resources-playjl-security-measures__article-heading {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-playjl-security-measures__article-subheading {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-playjl-security-measures__article-paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-playjl-security-measures__article-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-playjl-security-measures__article-list li {
  margin-bottom: 8px;
}

.page-resources-playjl-security-measures__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-resources-playjl-security-measures__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure no extra space below image */
  margin: 0 auto; /* Center image */
  min-width: 200px;
  min-height: 200px;
}

.page-resources-playjl-security-measures__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
}

.page-resources-playjl-security-measures__call-to-action-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-playjl-security-measures__hero-title {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-playjl-security-measures__hero-section {
    padding: 60px 15px;
  }

  .page-resources-playjl-security-measures__hero-title {
    font-size: 2.2em;
  }

  .page-resources-playjl-security-measures__hero-description {
    font-size: 1em;
  }

  .page-resources-playjl-security-measures__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-playjl-security-measures__button {
    width: 80%;
    max-width: 300px;
  }

  .page-resources-playjl-security-measures__content-area {
    margin: 20px auto;
    padding: 15px;
  }

  .page-resources-playjl-security-measures__article-heading {
    font-size: 1.8em;
  }

  .page-resources-playjl-security-measures__article-subheading {
    font-size: 1.4em;
  }

  .page-resources-playjl-security-measures__call-to-action-text {
    font-size: 1.2em;
  }

  /* Mobile content image constraint */
  .page-resources-playjl-security-measures img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content area images are not smaller than 200px */
.page-resources-playjl-security-measures__article img {
  min-width: 200px;
  min-height: 200px;
}