/* style/blog-zabet-no-hu-top-games.css */

/* Base styles for the page content, ensuring contrast with shared body background */
.page-blog-zabet-no-hu-top-games {
  background-color: var(--background-color, #08160F); /* Fallback to custom dark background */
  color: var(--text-main, #F2FFF6); /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-zabet-no-hu-top-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding for content */
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-blog-zabet-no-hu-top-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
}

.page-blog-zabet-no-hu-top-games__hero-content {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  padding: 0 20px;
  text-align: center;
  z-index: 1; /* Ensure text is above image if any overlap */
}

.page-blog-zabet-no-hu-top-games__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  font-weight: 700;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-zabet-no-hu-top-games__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-zabet-no-hu-top-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-zabet-no-hu-top-games__btn-primary,
.page-blog-zabet-no-hu-top-games__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-zabet-no-hu-top-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-zabet-no-hu-top-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-zabet-no-hu-top-games__btn-secondary {
  background: #ffffff;
  color: var(--deep-green, #0A4B2C);
  border: 2px solid var(--deep-green, #0A4B2C);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-zabet-no-hu-top-games__btn-secondary:hover {
  background: var(--deep-green, #0A4B2C);
  color: #ffffff;
}

.page-blog-zabet-no-hu-top-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-top: -40px; /* Pull up to overlap hero slightly */
  position: relative;
  z-index: 2;
}

.page-blog-zabet-no-hu-top-games__dark-section {
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
  padding: 60px 20px;
}

.page-blog-zabet-no-hu-top-games__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-zabet-no-hu-top-games__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherit from parent section for contrast */
}

.page-blog-zabet-no-hu-top-games__text-block {
  font-size: 1.05em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-blog-zabet-no-hu-top-games__card-grid,
.page-blog-zabet-no-hu-top-games__grid-2-col,
.page-blog-zabet-no-hu-top-games__grid-3-col {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-blog-zabet-no-hu-top-games__card-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-blog-zabet-no-hu-top-games__grid-2-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-zabet-no-hu-top-games__grid-3-col {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-blog-zabet-no-hu-top-games__card,
.page-blog-zabet-no-hu-top-games__promo-card {
  background-color: var(--card-b-g, #11271B);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  color: var(--text-main, #F2FFF6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-zabet-no-hu-top-games__card:hover,
.page-blog-zabet-no-hu-top-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-zabet-no-hu-top-games__card-image,
.page-blog-zabet-no-hu-top-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-zabet-no-hu-top-games__card-title,
.page-blog-zabet-no-hu-top-games__promo-title {
  font-size: 1.3em;
  font-weight: 600;
  margin: 15px 15px 10px 15px;
  color: var(--text-main, #F2FFF6);
}

.page-blog-zabet-no-hu-top-games__card-title a,
.page-blog-zabet-no-hu-top-games__promo-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-zabet-no-hu-top-games__card-title a:hover,
.page-blog-zabet-no-hu-top-games__promo-title a:hover {
  color: var(--gold, #F2C14E);
}

.page-blog-zabet-no-hu-top-games__card-description,
.page-blog-zabet-no-hu-top-games__promo-description {
  font-size: 0.95em;
  color: var(--text-secondary, #A7D9B8);
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-blog-zabet-no-hu-top-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-zabet-no-hu-top-games__list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.page-blog-zabet-no-hu-top-games__list li {
  background-color: #f9f9f9;
  border-left: 5px solid var(--deep-green, #0A4B2C);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  color: #333333;
}

.page-blog-zabet-no-hu-top-games__list-title {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--deep-green, #0A4B2C);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-zabet-no-hu-top-games__list li p {
  margin: 0;
  font-size: 1em;
  color: #555555;
}

.page-blog-zabet-no-hu-top-games__numbered-list {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  margin-top: 25px;
}

.page-blog-zabet-no-hu-top-games__numbered-list li {
  counter-increment: my-awesome-counter;
  background-color: #f9f9f9;
  padding: 20px 20px 20px 60px; /* Padding for counter */
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  color: #333333;
}

.page-blog-zabet-no-hu-top-games__numbered-list li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: var(--deep-green, #0A4B2C);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-blog-zabet-no-hu-top-games__numbered-list li p {
  margin: 0;
  font-size: 1em;
  color: #555555;
}

.page-blog-zabet-no-hu-top-games__faq-section {
  padding-bottom: 60px;
}

.page-blog-zabet-no-hu-top-games__faq-list {
  margin-top: 30px;
}

.page-blog-zabet-no-hu-top-games__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-zabet-no-hu-top-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 25px;
  font-weight: 600;
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  color: var(--deep-green, #0A4B2C);
  transition: background-color 0.3s ease;
}

.page-blog-zabet-no-hu-top-games__faq-item summary:hover {
  background-color: #e5e5e5;
}

.page-blog-zabet-no-hu-top-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-zabet-no-hu-top-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-zabet-no-hu-top-games__faq-item[open] .page-blog-zabet-no-hu-top-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-zabet-no-hu-top-games__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

.page-blog-zabet-no-hu-top-games__conclusion-section {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-zabet-no-hu-top-games__hero-image {
    max-height: 400px;
  }
  .page-blog-zabet-no-hu-top-games__main-title {
    font-size: clamp(2em, 6vw, 2.8em);
  }
  .page-blog-zabet-no-hu-top-games__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
  }
}

@media (max-width: 768px) {
  .page-blog-zabet-no-hu-top-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-zabet-no-hu-top-games__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-blog-zabet-no-hu-top-games__hero-image {
    max-height: 300px;
  }
  .page-blog-zabet-no-hu-top-games__hero-content {
    padding: 0 15px;
  }
  .page-blog-zabet-no-hu-top-games__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }
  .page-blog-zabet-no-hu-top-games__hero-description {
    font-size: 1em;
  }
  .page-blog-zabet-no-hu-top-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-zabet-no-hu-top-games__btn-primary,
  .page-blog-zabet-no-hu-top-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-zabet-no-hu-top-games__content-area,
  .page-blog-zabet-no-hu-top-games__dark-section {
    padding: 30px 15px;
  }
  .page-blog-zabet-no-hu-top-games__content-area {
    margin-top: -30px;
  }
  .page-blog-zabet-no-hu-top-games__section-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-blog-zabet-no-hu-top-games__card-grid,
  .page-blog-zabet-no-hu-top-games__grid-2-col,
  .page-blog-zabet-no-hu-top-games__grid-3-col {
    grid-template-columns: 1fr;
  }
  .page-blog-zabet-no-hu-top-games__card-image,
  .page-blog-zabet-no-hu-top-games__promo-image {
    height: 180px;
  }
  .page-blog-zabet-no-hu-top-games__list li,
  .page-blog-zabet-no-hu-top-games__numbered-list li {
    padding: 15px;
    padding-left: 50px;
  }
  .page-blog-zabet-no-hu-top-games__numbered-list li::before {
    left: 15px;
    top: 15px;
  }
  .page-blog-zabet-no-hu-top-games__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-zabet-no-hu-top-games__faq-answer {
    padding: 10px 20px 15px 20px;
  }
  
  /* Mobile image, video, button overflow fix */
  .page-blog-zabet-no-hu-top-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-zabet-no-hu-top-games video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-zabet-no-hu-top-games__section,
  .page-blog-zabet-no-hu-top-games__card,
  .page-blog-zabet-no-hu-top-games__container,
  .page-blog-zabet-no-hu-top-games__hero-section,
  .page-blog-zabet-no-hu-top-games__dark-section,
  .page-blog-zabet-no-hu-top-games__cta-buttons,
  .page-blog-zabet-no-hu-top-games__button-group,
  .page-blog-zabet-no-hu-top-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  /* Buttons within flex containers need specific handling for wrapping */
  .page-blog-zabet-no-hu-top-games__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-blog-zabet-no-hu-top-games__hero-image {
    max-height: 250px;
  }
  .page-blog-zabet-no-hu-top-games__main-title {
    font-size: clamp(1.5em, 9vw, 2.2em);
  }
  .page-blog-zabet-no-hu-top-games__section-title {
    font-size: clamp(1.4em, 8vw, 1.8em);
  }
  .page-blog-zabet-no-hu-top-games__btn-primary,
  .page-blog-zabet-no-hu-top-games__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-blog-zabet-no-hu-top-games__card-image,
  .page-blog-zabet-no-hu-top-games__promo-image {
    height: 150px;
  }
}