/* style/blog-okkingcom-new-link-top-games-recommendations.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-button-color: #EA7C07;
  --background-color: #0a0a0a; /* Body background from shared.css */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-border-dark: rgba(255, 255, 255, 0.2);
}

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-okkingcom-new-link-top-games-recommendations {
  color: var(--text-color-light); /* Light text on dark body background */
  background-color: var(--background-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-okkingcom-new-link-top-games-recommendations__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-okkingcom-new-link-top-games-recommendations__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  color: var(--text-color-light);
  background-color: var(--primary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-blog-okkingcom-new-link-top-games-recommendations__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-okkingcom-new-link-top-games-recommendations__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 0;
  box-sizing: border-box;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;
  margin-top: -100px; /* Pull content up slightly over the image, but not covering text */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: var(--text-color-light);
}

.page-blog-okkingcom-new-link-top-games-recommendations__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Using clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-blog-okkingcom-new-link-top-games-recommendations__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-okkingcom-new-link-top-games-recommendations__btn-primary,
.page-blog-okkingcom-new-link-top-games-recommendations__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow on mobile */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
  text-align: center;
}

.page-blog-okkingcom-new-link-top-games-recommendations__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-okkingcom-new-link-top-games-recommendations__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__sub-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__text-block {
  margin-bottom: 20px;
  color: var(--text-color-light);
}

/* Games Section */
.page-blog-okkingcom-new-link-top-games-recommendations__games-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-okkingcom-new-link-top-games-recommendations__game-card {
  background-color: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-color-light);
}

.page-blog-okkingcom-new-link-top-games-recommendations__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-blog-okkingcom-new-link-top-games-recommendations__game-card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 15px;
  color: var(--secondary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__game-card-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
  color: var(--text-color-light);
}

.page-blog-okkingcom-new-link-top-games-recommendations__btn-text {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-blog-okkingcom-new-link-top-games-recommendations__btn-text:hover {
  color: darken(var(--primary-color), 15%);
  text-decoration: underline;
}

/* Promo Section */
.page-blog-okkingcom-new-link-top-games-recommendations__promo-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-blog-okkingcom-new-link-top-games-recommendations__promo-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  color: var(--text-color-light);
}

.page-blog-okkingcom-new-link-top-games-recommendations__promo-list li {
  background-color: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-blog-okkingcom-new-link-top-games-recommendations__promo-list li strong {
  color: var(--primary-color);
}

/* Guide Section */
.page-blog-okkingcom-new-link-top-games-recommendations__guide-section,
.page-blog-okkingcom-new-link-top-games-recommendations__app-section,
.page-blog-okkingcom-new-link-top-games-recommendations__responsibility-section,
.page-blog-okkingcom-new-link-top-games-recommendations__conclusion-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__guide-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 20px;
  color: var(--text-color-light);
}

.page-blog-okkingcom-new-link-top-games-recommendations__guide-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-okkingcom-new-link-top-games-recommendations__guide-list li strong {
  color: var(--primary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__app-benefits {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: var(--text-color-light);
}

.page-blog-okkingcom-new-link-top-games-recommendations__app-benefits li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

/* FAQ Section */
.page-blog-okkingcom-new-link-top-games-recommendations__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-list {
  margin-top: 40px;
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-item {
  background-color: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-color-light);
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-qtext {
  flex-grow: 1;
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-item[open] .page-blog-okkingcom-new-link-top-games-recommendations__faq-toggle {
  content: '−';
}

.page-blog-okkingcom-new-link-top-games-recommendations__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  border-top: 1px solid var(--card-border-dark);
  color: var(--text-color-light);
}

/* Conclusion Section */
.page-blog-okkingcom-new-link-top-games-recommendations__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-okkingcom-new-link-top-games-recommendations__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-okkingcom-new-link-top-games-recommendations {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__hero-content {
    margin-top: -60px;
    padding: 30px 15px 0;
    border-radius: 8px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__btn-primary,
  .page-blog-okkingcom-new-link-top-games-recommendations__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__content-container {
    padding: 0 15px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__games-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__promo-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__guide-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__app-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__responsibility-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__faq-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__game-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__game-card-image {
    height: 180px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__promo-list li {
    padding: 15px;
    font-size: 1em;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__guide-list,
  .page-blog-okkingcom-new-link-top-games-recommendations__app-benefits {
    padding-left: 20px;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-okkingcom-new-link-top-games-recommendations__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image specific overrides */
  .page-blog-okkingcom-new-link-top-games-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-okkingcom-new-link-top-games-recommendations__section,
  .page-blog-okkingcom-new-link-top-games-recommendations__card,
  .page-blog-okkingcom-new-link-top-games-recommendations__container,
  .page-blog-okkingcom-new-link-top-games-recommendations__games-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__promo-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__guide-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__app-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__responsibility-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__faq-section,
  .page-blog-okkingcom-new-link-top-games-recommendations__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}