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

.page-index-about-okgames__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-about-okgames__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3); /* Primary blue gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-index-about-okgames__hero-content {
  max-width: 800px;
}

.page-index-about-okgames__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFC107; /* Gold for emphasis */
}

.page-index-about-okgames__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-index-about-okgames__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-index-about-okgames__button--primary {
  background-color: #FFC107; /* Gold */
  color: #0056b3; /* Dark blue for contrast */
}

.page-index-about-okgames__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-index-about-okgames__button--secondary {
  background-color: transparent;
  border: 2px solid #FFC107; /* Gold border */
  color: #FFC107;
}

.page-index-about-okgames__button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-2px);
}

.page-index-about-okgames__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-about-okgames__hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.page-index-about-okgames__about-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-index-about-okgames__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-about-okgames__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFC107; /* Gold accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-about-okgames__text-content {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-about-okgames__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-index-about-okgames__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-okgames__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-about-okgames__feature-icon {
  width: 250px; /* Increased size to meet minimum requirements */
  height: 187px; /* Maintain aspect ratio for 400x300 example */
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-index-about-okgames__feature-title {
  font-size: 1.8em;
  color: #007BFF; /* Primary blue */
  margin-bottom: 15px;
}

.page-index-about-okgames__feature-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-index-about-okgames__cta-section {
  background-color: #007BFF; /* Primary blue */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.page-index-about-okgames__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFC107; /* Gold */
}

.page-index-about-okgames__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-index-about-okgames__image-gallery {
  padding: 60px 0;
  background-color: #f1f1f1;
  text-align: center;
}

.page-index-about-okgames__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.page-index-about-okgames__gallery-image {
  width: 100%;
  height: auto; /* Ensure aspect ratio is maintained */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.page-index-about-okgames__gallery-image:hover {
  transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-about-okgames__hero-title {
    font-size: 2.8em;
  }

  .page-index-about-okgames__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-about-okgames__hero-section {
    padding: 60px 15px;
  }

  .page-index-about-okgames__hero-title {
    font-size: 2.4em;
  }

  .page-index-about-okgames__hero-description {
    font-size: 1.1em;
  }

  .page-index-about-okgames__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-about-okgames__button {
    width: 100%;
    max-width: 300px;
  }

  .page-index-about-okgames__container {
    padding: 0 15px;
  }

  .page-index-about-okgames__section-title {
    font-size: 1.8em;
  }

  .page-index-about-okgames__text-content {
    font-size: 1em;
  }

  .page-index-about-okgames__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-index-about-okgames__feature-icon {
    width: 200px; /* Minimum allowed size */
    height: 150px; /* Maintain aspect ratio */
  }

  .page-index-about-okgames__cta-title {
    font-size: 2.2em;
  }

  .page-index-about-okgames__cta-description {
    font-size: 1.1em;
  }

  .page-index-about-okgames__gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure all images within main content are responsive and don't overflow */
  .page-index-about-okgames img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-about-okgames__hero-title {
    font-size: 2em;
  }

  .page-index-about-okgames__section-title {
    font-size: 1.6em;
  }

  .page-index-about-okgames__cta-title {
    font-size: 1.8em;
  }
}