/* style/blog-how-to-choose-best-fcb8-games.css */
/* body đã padding-top: var(--header-offset) từ shared.css, không cần thêm tại đây */

.page-blog-how-to-choose-best-fcb8-games {
  background-color: var(--bg-color, #08160F); /* Fallback nếu --bg-color không tồn tại */
  color: var(--text-main-color, #F2FFF6);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-choose-best-fcb8-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-best-fcb8-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Nhỏ gọn để không bị che bởi header, body đã có padding-top */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-how-to-choose-best-fcb8-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-choose-best-fcb8-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Làm mờ ảnh để chữ nổi bật hơn */
}

.page-blog-how-to-choose-best-fcb8-games__hero-content {
  position: relative;
  text-align: center;
  padding: 20px;
  margin-top: -150px; /* Kéo nội dung lên trên ảnh */
  z-index: 1;
  max-width: 800px;
  color: #F2FFF6;
}

.page-blog-how-to-choose-best-fcb8-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-best-fcb8-games__intro-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-choose-best-fcb8-games__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-how-to-choose-best-fcb8-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-best-fcb8-games__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Gold color for section titles */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-choose-best-fcb8-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #11A84E; /* Main color */
  border-radius: 2px;
}

.page-blog-how-to-choose-best-fcb8-games__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  text-align: justify;
}

.page-blog-how-to-choose-best-fcb8-games__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-best-fcb8-games__card {
  background-color: var(--card-bg-color, #11271B); /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-choose-best-fcb8-games__card--bordered {
  border: 1px solid var(--border-color, #2E7A4E); /* Border color */
}

.page-blog-how-to-choose-best-fcb8-games__card:hover {
  transform: translateY(-5px);
}

.page-blog-how-to-choose-best-fcb8-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-choose-best-fcb8-games__card-title {
  font-size: 1.4rem;
  color: #57E38D; /* Glow color */
  margin-bottom: 10px;
}

.page-blog-how-to-choose-best-fcb8-games__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-choose-best-fcb8-games__game-category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-best-fcb8-games__game-category-item {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color, #2E7A4E);
  color: #F2FFF6;
}

.page-blog-how-to-choose-best-fcb8-games__game-category-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-how-to-choose-best-fcb8-games__game-category-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-choose-best-fcb8-games__game-category-text {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-fcb8-games__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #57E38D; /* Glow color */
  border: 2px solid #11A84E; /* Main color */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog-how-to-choose-best-fcb8-games__btn-secondary:hover {
  background-color: #11A84E;
  color: #ffffff;
}

.page-blog-how-to-choose-best-fcb8-games__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-best-fcb8-games__tip-item {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color, #2E7A4E);
  color: #F2FFF6;
}

.page-blog-how-to-choose-best-fcb8-games__tip-title {
  font-size: 1.3rem;
  color: #57E38D; /* Glow color */
  margin-bottom: 10px;
}

.page-blog-how-to-choose-best-fcb8-games__tip-text {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-blog-how-to-choose-best-fcb8-games__start-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-blog-how-to-choose-best-fcb8-games__guide-step {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color, #2E7A4E);
  color: #F2FFF6;
}

.page-blog-how-to-choose-best-fcb8-games__guide-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold color */
  margin-bottom: 15px;
}

.page-blog-how-to-choose-best-fcb8-games__guide-text {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-fcb8-games__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-choose-best-fcb8-games__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--divider-color, #1E3A2A);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-how-to-choose-best-fcb8-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2C14E; /* Gold color */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-how-to-choose-best-fcb8-games__faq-question:hover {
  background-color: #11A84E; /* Main color */
}

.page-blog-how-to-choose-best-fcb8-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-best-fcb8-games__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-choose-best-fcb8-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2FFF6;
}

.page-blog-how-to-choose-best-fcb8-games__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-how-to-choose-best-fcb8-games__faq-item[open] .page-blog-how-to-choose-best-fcb8-games__faq-question {
  background-color: #11A84E; /* Main color when open */
}

.page-blog-how-to-choose-best-fcb8-games__cta-bottom {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-best-fcb8-games__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-best-fcb8-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-best-fcb8-games__container {
    padding: 0 15px;
  }

  .page-blog-how-to-choose-best-fcb8-games__hero-section {
    padding-top: 10px !important; /* body đã có padding-top */
    padding-bottom: 40px;
  }

  .page-blog-how-to-choose-best-fcb8-games__hero-content {
    margin-top: -80px; /* Điều chỉnh lại cho mobile */
    padding: 15px;
  }

  .page-blog-how-to-choose-best-fcb8-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-how-to-choose-best-fcb8-games__intro-description {
    font-size: 1rem;
  }

  .page-blog-how-to-choose-best-fcb8-games__btn-primary,
  .page-blog-how-to-choose-best-fcb8-games__btn-secondary,
  .page-blog-how-to-choose-best-fcb8-games a[class*="button"],
  .page-blog-how-to-choose-best-fcb8-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add some spacing between stacked buttons */
  }

  .page-blog-how-to-choose-best-fcb8-games__cta-buttons,
  .page-blog-how-to-choose-best-fcb8-games__button-group,
  .page-blog-how-to-choose-best-fcb8-games__btn-container,
  .page-blog-how-to-choose-best-fcb8-games__start-guide {
    flex-direction: column !important; /* Stack buttons/guide steps vertically */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-choose-best-fcb8-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-blog-how-to-choose-best-fcb8-games__card,
  .page-blog-how-to-choose-best-fcb8-games__game-category-item,
  .page-blog-how-to-choose-best-fcb8-games__tip-item,
  .page-blog-how-to-choose-best-fcb8-games__guide-step {
    padding: 20px;
  }

  .page-blog-how-to-choose-best-fcb8-games__card-image,
  .page-blog-how-to-choose-best-fcb8-games__game-category-image,
  .page-blog-how-to-choose-best-fcb8-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover;
  }

  .page-blog-how-to-choose-best-fcb8-games__content-area,
  .page-blog-how-to-choose-best-fcb8-games__grid-layout,
  .page-blog-how-to-choose-best-fcb8-games__game-category-list,
  .page-blog-how-to-choose-best-fcb8-games__tips-list,
  .page-blog-how-to-choose-best-fcb8-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-choose-best-fcb8-games__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-choose-best-fcb8-games__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-best-fcb8-games__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
}