/* style/resources-okking-slot-games-recommendation.css */
.page-resources-okking-slot-games-recommendation {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-okking-slot-games-recommendation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-okking-slot-games-recommendation__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-resources-okking-slot-games-recommendation__hero-content {
  flex: 1;
  min-width: 300px;
  padding-left: 20px;
}

.page-resources-okking-slot-games-recommendation__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFCC00; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-okking-slot-games-recommendation__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 600px;
}

.page-resources-okking-slot-games-recommendation__hero-actions {
  display: flex;
  gap: 15px;
}

.page-resources-okking-slot-games-recommendation__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-resources-okking-slot-games-recommendation__btn--primary {
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Primary color for text */
  border: 2px solid #FFCC00;
}

.page-resources-okking-slot-games-recommendation__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources-okking-slot-games-recommendation__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-resources-okking-slot-games-recommendation__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-resources-okking-slot-games-recommendation__btn--small {
  padding: 8px 18px;
  font-size: 0.95em;
}

.page-resources-okking-slot-games-recommendation__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-resources-okking-slot-games-recommendation__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
}

.page-resources-okking-slot-games-recommendation__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-okking-slot-games-recommendation__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-resources-okking-slot-games-recommendation__section--intro {
  background-color: #f0f8ff;
}

.page-resources-okking-slot-games-recommendation__section-title {
  font-size: 2.5em;
  color: #003366; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-okking-slot-games-recommendation__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-resources-okking-slot-games-recommendation__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-okking-slot-games-recommendation__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-resources-okking-slot-games-recommendation__text-block--center {
  text-align: center;
}

.page-resources-okking-slot-games-recommendation__text-block a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-okking-slot-games-recommendation__text-block a:hover {
  color: #FFCC00;
}

.page-resources-okking-slot-games-recommendation__game-grid,
.page-resources-okking-slot-games-recommendation__offers-grid,
.page-resources-okking-slot-games-recommendation__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-okking-slot-games-recommendation__game-card,
.page-resources-okking-slot-games-recommendation__offer-card,
.page-resources-okking-slot-games-recommendation__safety-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-okking-slot-games-recommendation__game-card:hover,
.page-resources-okking-slot-games-recommendation__offer-card:hover,
.page-resources-okking-slot-games-recommendation__safety-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-okking-slot-games-recommendation__game-card-image,
.page-resources-okking-slot-games-recommendation__offer-card-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: contain; /* Ensure image fits without cropping */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-okking-slot-games-recommendation__game-card-title,
.page-resources-okking-slot-games-recommendation__offer-card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-resources-okking-slot-games-recommendation__game-card-description,
.page-resources-okking-slot-games-recommendation__offer-card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-okking-slot-games-recommendation__section--guide {
  background-color: #f0f8ff;
}

.page-resources-okking-slot-games-recommendation__guide-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-resources-okking-slot-games-recommendation__guide-content {
  flex: 2;
  min-width: 300px;
}

.page-resources-okking-slot-games-recommendation__guide-image-wrapper {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
}

.page-resources-okking-slot-games-recommendation__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-okking-slot-games-recommendation__highlight {
  color: #FFCC00;
  font-weight: bold;
}

.page-resources-okking-slot-games-recommendation__safety-item {
  padding: 20px;
}

.page-resources-okking-slot-games-recommendation__safety-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-resources-okking-slot-games-recommendation__faq-list {
  margin-top: 30px;
}

.page-resources-okking-slot-games-recommendation__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-okking-slot-games-recommendation__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-okking-slot-games-recommendation__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-okking-slot-games-recommendation__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-okking-slot-games-recommendation__faq-answer {
  font-size: 1em;
  color: #555;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-resources-okking-slot-games-recommendation__faq-answer.active {
  display: block;
}

.page-resources-okking-slot-games-recommendation__section--cta {
  background: linear-gradient(90deg, #003366 0%, #FFCC00 100%); /* Gradient for CTA */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-okking-slot-games-recommendation__cta-content {
  max-width: 800px;
}

.page-resources-okking-slot-games-recommendation__section--cta .page-resources-okking-slot-games-recommendation__section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-resources-okking-slot-games-recommendation__section--cta .page-resources-okking-slot-games-recommendation__section-title::after {
  background-color: #fff;
}

.page-resources-okking-slot-games-recommendation__section--cta .page-resources-okking-slot-games-recommendation__text-block {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-okking-slot-games-recommendation__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .page-resources-okking-slot-games-recommendation__hero-content {
    padding-left: 0;
    order: 2; /* Content below image on mobile */
  }

  .page-resources-okking-slot-games-recommendation__hero-image-wrapper {
    order: 1;
    justify-content: center;
    margin-bottom: 30px;
  }

  .page-resources-okking-slot-games-recommendation__hero-title {
    font-size: 2.5em;
  }

  .page-resources-okking-slot-games-recommendation__hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-okking-slot-games-recommendation__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-okking-slot-games-recommendation__section-title {
    font-size: 2em;
  }

  .page-resources-okking-slot-games-recommendation__guide-flex {
    flex-direction: column;
  }

  .page-resources-okking-slot-games-recommendation__guide-content,
  .page-resources-okking-slot-games-recommendation__guide-image-wrapper {
    min-width: unset;
  }

  .page-resources-okking-slot-games-recommendation__game-grid,
  .page-resources-okking-slot-games-recommendation__offers-grid,
  .page-resources-okking-slot-games-recommendation__safety-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-okking-slot-games-recommendation__hero-title {
    font-size: 2em;
  }

  .page-resources-okking-slot-games-recommendation__section-title {
    font-size: 1.8em;
  }

  .page-resources-okking-slot-games-recommendation__btn {
    font-size: 1em;
    padding: 10px 20px;
  }
}