.page-resources-okkinh-popular-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
}

.page-resources-okkinh-popular-games__hero-section {
  background: linear-gradient(135deg, #1A2E44, #3a5068); /* Dark blue gradient */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-resources-okkinh-popular-games__hero-content {
  max-width: 900px;
}

.page-resources-okkinh-popular-games__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-okkinh-popular-games__hero-description {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-okkinh-popular-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-okkinh-popular-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-resources-okkinh-popular-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-resources-okkinh-popular-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-okkinh-popular-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-okkinh-popular-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-resources-okkinh-popular-games__btn--link {
  background-color: transparent;
  color: #FFD700;
  border: none;
  padding: 5px 10px;
  font-size: 1em;
  text-decoration: underline;
}

.page-resources-okkinh-popular-games__btn--link:hover {
  color: #e6c200;
}

.page-resources-okkinh-popular-games__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
}

.page-resources-okkinh-popular-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-resources-okkinh-popular-games__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #283a4f; /* Slightly lighter dark blue for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-okkinh-popular-games__section:last-of-type {
  border-bottom: none;
}

.page-resources-okkinh-popular-games__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-okkinh-popular-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-okkinh-popular-games__section-intro-text {
  font-size: 1.05em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #C0C0C0;
}

.page-resources-okkinh-popular-games__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-okkinh-popular-games__feature-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-resources-okkinh-popular-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-okkinh-popular-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-okkinh-popular-games__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-okkinh-popular-games__feature-description {
  font-size: 1em;
  color: #A0A0A0;
}

.page-resources-okkinh-popular-games__game-category {
  margin-bottom: 60px;
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-resources-okkinh-popular-games__category-title {
  font-size: 2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.page-resources-okkinh-popular-games__category-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #FFD700;
  border-radius: 1px;
}

.page-resources-okkinh-popular-games__category-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-resources-okkinh-popular-games__category-content--reverse {
  flex-direction: row-reverse;
}

.page-resources-okkinh-popular-games__category-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-resources-okkinh-popular-games__category-text {
  flex: 2;
  min-width: 300px;
}

.page-resources-okkinh-popular-games__category-text p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-resources-okkinh-popular-games__game-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-resources-okkinh-popular-games__game-list li {
  background-color: #283a4f;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  border-left: 4px solid #FFD700;
  color: #E0E0E0;
}

.page-resources-okkinh-popular-games__game-list li strong {
  color: #FFD700;
}

.page-resources-okkinh-popular-games__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-okkinh-popular-games__step-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-resources-okkinh-popular-games__step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #FFD700;
  color: #1A2E44;
  font-size: 2.5em;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: rotate(-15deg);
}

.page-resources-okkinh-popular-games__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  margin-top: 40px; /* Adjust for step number */
}

.page-resources-okkinh-popular-games__step-description {
  font-size: 0.95em;
  color: #A0A0A0;
  margin-bottom: 20px;
}

.page-resources-okkinh-popular-games__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-okkinh-popular-games__app-text {
  flex: 1;
  min-width: 300px;
}

.page-resources-okkinh-popular-games__app-text p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-resources-okkinh-popular-games__app-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-resources-okkinh-popular-games__app-features-list li {
  background-color: #1A2E44;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  border-left: 4px solid #FFD700;
  color: #E0E0E0;
}

.page-resources-okkinh-popular-games__app-features-list li strong {
  color: #FFD700;
}

.page-resources-okkinh-popular-games__app-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}

.page-resources-okkinh-popular-games__app-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.page-resources-okkinh-popular-games__section--cta-bottom {
  text-align: center;
  background-color: #1A2E44;
  padding: 80px 20px;
}

.page-resources-okkinh-popular-games__cta-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #C0C0C0;
}

.page-resources-okkinh-popular-games__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-okkinh-popular-games__hero-title {
    font-size: 2.2em;
  }
  .page-resources-okkinh-popular-games__section-title {
    font-size: 1.8em;
  }
  .page-resources-okkinh-popular-games__category-title {
    font-size: 1.6em;
  }
  .page-resources-okkinh-popular-games__category-content, .page-resources-okkinh-popular-games__category-content--reverse {
    flex-direction: column;
  }
  .page-resources-okkinh-popular-games__app-content {
    flex-direction: column-reverse;
  }
  .page-resources-okkinh-popular-games__app-image {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .page-resources-okkinh-popular-games__hero-section, .page-resources-okkinh-popular-games__section--cta-bottom {
    padding: 60px 15px;
  }
  .page-resources-okkinh-popular-games__hero-title {
    font-size: 1.8em;
  }
  .page-resources-okkinh-popular-games__hero-description {
    font-size: 1em;
  }
  .page-resources-okkinh-popular-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-okkinh-popular-games__section {
    padding: 40px 15px;
  }
  .page-resources-okkinh-popular-games__section-title {
    font-size: 1.6em;
  }
  .page-resources-okkinh-popular-games__feature-item, .page-resources-okkinh-popular-games__step-item {
    padding: 25px;
  }
  .page-resources-okkinh-popular-games__feature-title, .page-resources-okkinh-popular-games__step-title {
    font-size: 1.3em;
  }
  .page-resources-okkinh-popular-games__category-title {
    font-size: 1.4em;
  }
  .page-resources-okkinh-popular-games__step-number {
    font-size: 2em;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .page-resources-okkinh-popular-games__hero-section, .page-resources-okkinh-popular-games__section--cta-bottom {
    padding: 40px 10px;
  }
  .page-resources-okkinh-popular-games__hero-title {
    font-size: 1.5em;
  }
  .page-resources-okkinh-popular-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-okkinh-popular-games__btn {
    width: 100%;
  }
  .page-resources-okkinh-popular-games__section-title {
    font-size: 1.4em;
  }
  .page-resources-okkinh-popular-games__category-image {
    min-width: unset;
    width: 100%;
  }
  .page-resources-okkinh-popular-games__category-text {
    min-width: unset;
    width: 100%;
  }
  .page-resources-okkinh-popular-games__app-image {
    min-width: unset;
    width: 100%;
  }
}