/* style/fishing-games.css */
.page-fishing-games {
  background-color: #08160F; /* Nền chính theo màu tùy chỉnh 'Background' */
  color: #F2FFF6; /* Màu chữ chính theo 'Text Main' */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Nhỏ hơn để tránh trùng với padding-top của body */
  background-color: #08160F;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-fishing-games__main-title {
  color: #F2FFF6;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__description {
  color: #A7D9B8;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-fishing-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  color: #F2FFF6;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  border-radius: 2px;
}

.page-fishing-games__paragraph {
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__highlight {
  color: #57E38D;
  font-weight: bold;
}

.page-fishing-games__link {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__link:hover {
  text-decoration: underline;
}

.page-fishing-games__text-block {
  padding: 60px 0;
  background-color: #08160F;
}

.page-fishing-games__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-fishing-games__card {
  background-color: #11271B; /* Màu nền Card BG */
  border: 1px solid #2E7A4E; /* Màu viền 'Border' */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
}

.page-fishing-games__feature-list,
.page-fishing-games__strategy-list,
.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-fishing-games__feature-item,
.page-fishing-games__strategy-item,
.page-fishing-games__promo-item {
  background-color: #11271B;
  border-left: 5px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #A7D9B8;
}

.page-fishing-games__feature-item:last-child,
.page-fishing-games__strategy-item:last-child,
.page-fishing-games__promo-item:last-child {
  margin-bottom: 0;
}

.page-fishing-games__games-section {
  padding: 60px 0;
}

.page-fishing-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Đảm bảo kích thước tối thiểu */
  min-width: 200px;
}

.page-fishing-games__game-title {
  color: #F2FFF6;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-fishing-games__guide-section {
  padding: 60px 0;
}

.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-fishing-games__step-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
  color: #A7D9B8;
}

.page-fishing-games__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2AD16F;
  color: #F2FFF6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-fishing-games__step-title {
  color: #F2FFF6;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  color: #A7D9B8;
}

.page-fishing-games__strategy-section {
  padding: 60px 0;
}

.page-fishing-games__strategy-item {
  background-color: #11271B;
  border-left: 5px solid #F2C14E; /* Sử dụng màu Gold */
}

.page-fishing-games__strategy-title {
  color: #F2FFF6;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-fishing-games__strategy-description {
  color: #A7D9B8;
}

.page-fishing-games__promotions-section {
  padding: 60px 0;
}

.page-fishing-games__promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Đảm bảo kích thước tối thiểu */
  min-width: 200px;
}

.page-fishing-games__promo-title {
  color: #F2FFF6;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-fishing-games__promo-description {
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-fishing-games__security-section {
  padding: 60px 0;
}

.page-fishing-games__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__feature-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-fishing-games__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games__feature-card-title {
  color: #F2FFF6;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-fishing-games__feature-card-description {
  color: #A7D9B8;
}

.page-fishing-games__faq-section {
  padding: 60px 0;
}

.page-fishing-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-fishing-games__faq-item {
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  overflow: hidden;
  color: #A7D9B8;
  background-color: #11271B;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1em;
  background-color: #1E3A2A; /* Màu 'Divider' cho nền câu hỏi */
  list-style: none;
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-question:hover {
  background-color: #0A4B2C; /* Màu 'Deep Green' khi hover */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 20px;
  padding-top: 0;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

.page-fishing-games__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 2.8em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__main-title {
    font-size: 2.2em; /* Sử dụng clamp thay vì fixed size nếu cần */
    /* font-size: clamp(2em, 5vw, 2.8em); */
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__description {
    font-size: 1em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }
  .page-fishing-games__hero-section,
  .page-fishing-games__text-block,
  .page-fishing-games__dark-bg {
    padding: 40px 0;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__game-grid,
  .page-fishing-games__security-features {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__step-item {
    padding-left: 60px;
  }
  .page-fishing-games__step-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  .page-fishing-games__step-title {
    font-size: 1.5em;
  }
  
  /* Mobile Responsive Images */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile Responsive Containers for Images/Videos */
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__feature-item-card,
  .page-fishing-games__container,
  .page-fishing-games__hero-content,
  .page-fishing-games__game-grid,
  .page-fishing-games__security-features,
  .page-fishing-games__faq-list,
  .page-fishing-games__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-fishing-games__hero-section,
  .page-fishing-games__text-block,
  .page-fishing-games__dark-bg,
  .page-fishing-games__games-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__security-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
  }
  .page-fishing-games__promo-image {
    min-height: 150px; /* Adjusted for mobile */
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-fishing-games__game-title {
    font-size: 1.3em;
  }
  .page-fishing-games__promo-title,
  .page-fishing-games__feature-card-title {
    font-size: 1.3em;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 15px;
  }
}