/* style/resources-how-to-choose-8kbet-top-games.css */
:root {
  --primary-color: #0A1C3C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #121212; /* From shared.css body background */
  --card-bg-dark: rgba(255, 255, 255, 0.08);
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-resources-how-to-choose-8kbet-top-games {
  color: var(--text-light); /* Body background is dark, so text should be light */
  background-color: var(--background-dark);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header */
}

.page-resources-how-to-choose-8kbet-top-games__hero-section {
  background: linear-gradient(135deg, var(--primary-color), #050e1b);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--secondary-color);
}

.page-resources-how-to-choose-8kbet-top-games__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-resources-how-to-choose-8kbet-top-games__main-title {
  font-size: 3.2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  line-height: 1.2;
}

.page-resources-how-to-choose-8kbet-top-games__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-choose-8kbet-top-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-resources-how-to-choose-8kbet-top-games__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-how-to-choose-8kbet-top-games__content-section {
  padding: 60px 20px;
  background-color: var(--background-dark);
}

.page-resources-how-to-choose-8kbet-top-games__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-how-to-choose-8kbet-top-games__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-how-to-choose-8kbet-top-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-how-to-choose-8kbet-top-games__text-block {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 25px;
  text-align: justify;
}

.page-resources-how-to-choose-8kbet-top-games__game-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-8kbet-top-games__game-card {
  background-color: var(--card-bg-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color-dark);
  display: flex;
  flex-direction: column;
}

.page-resources-how-to-choose-8kbet-top-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-choose-8kbet-top-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-color-dark);
}

.page-resources-how-to-choose-8kbet-top-games__game-card-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  padding: 20px 25px 10px;
  margin: 0;
}

.page-resources-how-to-choose-8kbet-top-games__game-card-description {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 25px 15px;
  flex-grow: 1;
}

.page-resources-how-to-choose-8kbet-top-games__game-card-link {
  display: block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 0 0 12px 12px;
}

.page-resources-how-to-choose-8kbet-top-games__game-card-link:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-how-to-choose-8kbet-top-games__list {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-how-to-choose-8kbet-top-games__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-resources-how-to-choose-8kbet-top-games__list li strong {
  color: var(--secondary-color);
}

.page-resources-how-to-choose-8kbet-top-games__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* FAQ Section */
.page-resources-how-to-choose-8kbet-top-games__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-choose-8kbet-top-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--card-bg-dark);
  border: 1px solid var(--border-color-dark);
}

.page-resources-how-to-choose-8kbet-top-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-resources-how-to-choose-8kbet-top-games__faq-question:hover {
  background: #061225;
}

.page-resources-how-to-choose-8kbet-top-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--secondary-color);
}

.page-resources-how-to-choose-8kbet-top-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-how-to-choose-8kbet-top-games__faq-item.active .page-resources-how-to-choose-8kbet-top-games__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg); /* Change to X or rotate for minus sign */
}

.page-resources-how-to-choose-8kbet-top-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: var(--text-light);
}

.page-resources-how-to-choose-8kbet-top-games__faq-item.active .page-resources-how-to-choose-8kbet-top-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

/* Blog List Section */
.page-resources-how-to-choose-8kbet-top-games__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-8kbet-top-games__blog-item {
  background-color: var(--card-bg-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color-dark);
  display: flex;
  flex-direction: column;
}

.page-resources-how-to-choose-8kbet-top-games__blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-choose-8kbet-top-games__blog-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-resources-how-to-choose-8kbet-top-games__blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-color-dark);
}

.page-resources-how-to-choose-8kbet-top-games__blog-item-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  padding: 20px 25px 10px;
  margin: 0;
  flex-grow: 1;
}

.page-resources-how-to-choose-8kbet-top-games__blog-item-excerpt {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 25px 15px;
}

.page-resources-how-to-choose-8kbet-top-games__blog-item-date {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 25px 20px;
  display: block;
}

.page-resources-how-to-choose-8kbet-top-games__contact-section {
  background-color: var(--primary-color);
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid var(--secondary-color);
}

.page-resources-how-to-choose-8kbet-top-games__contact-section .page-resources-how-to-choose-8kbet-top-games__section-title {
  color: var(--secondary-color);
}

.page-resources-how-to-choose-8kbet-top-games__contact-section .page-resources-how-to-choose-8kbet-top-games__text-block {
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-8kbet-top-games__main-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-choose-8kbet-top-games__section-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-choose-8kbet-top-games__game-types,
  .page-resources-how-to-choose-8kbet-top-games__blog-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-resources-how-to-choose-8kbet-top-games__hero-section {
    padding: 60px 20px;
  }
  .page-resources-how-to-choose-8kbet-top-games__content-section,
  .page-resources-how-to-choose-8kbet-top-games__contact-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-8kbet-top-games {
    padding-top: 100px !important; /* Adjust for mobile fixed header */
  }
  .page-resources-how-to-choose-8kbet-top-games__hero-section {
    padding: 50px 15px;
  }
  .page-resources-how-to-choose-8kbet-top-games__main-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-choose-8kbet-top-games__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-choose-8kbet-top-games__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-how-to-choose-8kbet-top-games__cta-center {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-resources-how-to-choose-8kbet-top-games__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-resources-how-to-choose-8kbet-top-games__text-block,
  .page-resources-how-to-choose-8kbet-top-games__list li,
  .page-resources-how-to-choose-8kbet-top-games__faq-answer p {
    font-size: 1em;
  }
  .page-resources-how-to-choose-8kbet-top-games__game-types,
  .page-resources-how-to-choose-8kbet-top-games__blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-how-to-choose-8kbet-top-games__game-image,
  .page-resources-how-to-choose-8kbet-top-games__blog-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-choose-8kbet-top-games__game-card,
  .page-resources-how-to-choose-8kbet-top-games__blog-item,
  .page-resources-how-to-choose-8kbet-top-games__container,
  .page-resources-how-to-choose-8kbet-top-games__content-section,
  .page-resources-how-to-choose-8kbet-top-games__contact-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-how-to-choose-8kbet-top-games__faq-question {
    padding: 15px 20px;
  }
  .page-resources-how-to-choose-8kbet-top-games__faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-how-to-choose-8kbet-top-games__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .page-resources-how-to-choose-8kbet-top-games__faq-item.active .page-resources-how-to-choose-8kbet-top-games__faq-answer {
    padding: 15px 20px !important;
  }
  .page-resources-how-to-choose-8kbet-top-games__game-card-title,
  .page-resources-how-to-choose-8kbet-top-games__blog-item-title {
    font-size: 1.2em;
    padding: 15px 20px 8px;
  }
  .page-resources-how-to-choose-8kbet-top-games__game-card-description,
  .page-resources-how-to-choose-8kbet-top-games__blog-item-excerpt {
    font-size: 0.9em;
    padding: 0 20px 10px;
  }
  .page-resources-how-to-choose-8kbet-top-games__blog-item-date {
    padding: 0 20px 15px;
  }
}