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

.page-resources-benefits-of-okgames-login__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  color: #000000; /* Text color for hero section */
  background-color: #f8f8f8; /* Light background for hero section */
}

.page-resources-benefits-of-okgames-login__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-benefits-of-okgames-login__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #000000; /* Main heading color */
  font-weight: bold;
}

.page-resources-benefits-of-okgames-login__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
}

.page-resources-benefits-of-okgames-login__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-resources-benefits-of-okgames-login__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-resources-benefits-of-okgames-login__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-resources-benefits-of-okgames-login__button--register:hover {
  background-color: #e0e0e0;
  color: #000000;
}

.page-resources-benefits-of-okgames-login__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-benefits-of-okgames-login__button--login:hover {
  background-color: #e0a33c;
  color: #000000;
}

.page-resources-benefits-of-okgames-login__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-benefits-of-okgames-login__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.2; /* Slightly transparent to allow text to stand out */
}

.page-resources-benefits-of-okgames-login__article-container {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-benefits-of-okgames-login__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
}

.page-resources-benefits-of-okgames-login__back-link:hover {
  text-decoration: underline;
}

.page-resources-benefits-of-okgames-login__article-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-benefits-of-okgames-login__article-heading {
  font-size: 2em;
  color: #000000;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-resources-benefits-of-okgames-login__sub-heading {
  font-size: 1.5em;
  color: #000000;
  margin-top: 35px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-benefits-of-okgames-login__article-content p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-benefits-of-okgames-login__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 1.5em;
}

.page-resources-benefits-of-okgames-login__list li {
  margin-bottom: 0.8em;
  font-size: 1.05em;
}

.page-resources-benefits-of-okgames-login__list strong {
  color: #000000;
}

.page-resources-benefits-of-okgames-login__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-resources-benefits-of-okgames-login__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-benefits-of-okgames-login__cta-section {
  text-align: center;
  background-color: #f0f0f0;
  padding: 40px 20px;
  border-radius: 8px;
  margin-top: 50px;
}

.page-resources-benefits-of-okgames-login__cta-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-resources-benefits-of-okgames-login__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
}

.page-resources-benefits-of-okgames-login__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-resources-benefits-of-okgames-login__button--primary:hover {
  background-color: #e0a33c;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-benefits-of-okgames-login__hero-title {
    font-size: 2em;
  }

  .page-resources-benefits-of-okgames-login__hero-description {
    font-size: 1em;
  }

  .page-resources-benefits-of-okgames-login__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-benefits-of-okgames-login__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-benefits-of-okgames-login__article-heading {
    font-size: 1.8em;
  }

  .page-resources-benefits-of-okgames-login__sub-heading {
    font-size: 1.3em;
  }

  .page-resources-benefits-of-okgames-login__article-content p,
  .page-resources-benefits-of-okgames-login__list li {
    font-size: 1em;
  }

  .page-resources-benefits-of-okgames-login__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-resources-benefits-of-okgames-login__cta-title {
    font-size: 1.8em;
  }

  .page-resources-benefits-of-okgames-login__cta-description {
    font-size: 1em;
  }

  .page-resources-benefits-of-okgames-login__button--primary {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-resources-benefits-of-okgames-login__hero-section {
    padding: 60px 15px 30px;
  }

  .page-resources-benefits-of-okgames-login__hero-title {
    font-size: 1.6em;
  }

  .page-resources-benefits-of-okgames-login__button {
    width: 90%;
  }

  .page-resources-benefits-of-okgames-login__article-container {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-resources-benefits-of-okgames-login__article-content {
    padding: 20px;
  }

  .page-resources-benefits-of-okgames-login__article-heading {
    font-size: 1.5em;
  }

  .page-resources-benefits-of-okgames-login__sub-heading {
    font-size: 1.2em;
  }

  .page-resources-benefits-of-okgames-login__cta-title {
    font-size: 1.5em;
  }

  .page-resources-benefits-of-okgames-login__button--primary {
    width: 90%;
  }
}