.page-fishing-games {
  background-color: #08160F; /* Nền tối theo yêu cầu */
  color: #F2FFF6; /* Màu chữ chính trên nền tối */
  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__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Màu chữ chính */
  line-height: 1.2;
}

.page-fishing-games__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F2FFF6; /* Màu chữ chính */
}

.page-fishing-games__text-main {
  color: #F2FFF6;
}

.page-fishing-games__text-secondary {
  color: #A7D9B8;
}

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

.page-fishing-games__card-bg {
  background-color: #11271B; /* Nền card */
  color: #F2FFF6;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 60px; /* Thêm khoảng cách dưới cho nội dung */
  padding-top: 10px; /* Nhỏ để không bị đè bởi header, body đã có padding-top */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Kéo nội dung lên một chút để gần ảnh hơn */
  background: rgba(8, 22, 15, 0.85); /* Nền bán trong suốt cho nội dung */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #F2C14E; /* Màu vàng Gold cho tiêu đề chính */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  color: #F2FFF6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-fishing-games__btn-secondary-inverted {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  margin-left: 20px;
}

.page-fishing-games__btn-secondary-inverted:hover {
  background: #2AD16F;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.3);
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 60px 0;
  text-align: center;
}

/* Why Choose Section */
.page-fishing-games__card-grid {
  padding: 60px 0;
  background-color: #11271B; /* Nền card grid */
}

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

.page-fishing-games__feature-card {
  background-color: #08160F; /* Nền card bên trong */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Màu border */
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E; /* Màu vàng Gold */
  margin-bottom: 15px;
}

/* Popular Games Section */
.page-fishing-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card {
  background-color: #11271B;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.page-fishing-games__game-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #A7D9B8;
}

/* Guide Section */
.page-fishing-games__steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__step-item {
  background-color: #11271B;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E;
  text-align: center;
}

.page-fishing-games__step-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games__step-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-fishing-games__step-description {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 20px;
}

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

/* Strategy Section */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__strategy-item-list {
  background-color: #11271B;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #2AD16F;
  color: #F2FFF6;
}

.page-fishing-games__strategy-item-list strong {
  color: #F2C14E;
}

/* Promo Section */
.page-fishing-games__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__promo-card {
  background-color: #08160F;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #2AD16F;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-8px);
}

.page-fishing-games__promo-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-fishing-games__promo-description {
  font-size: 1em;
  color: #A7D9B8;
}

.page-fishing-games__button-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Security Section */
.page-fishing-games__security-section {
  padding: 60px 0;
  text-align: center;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: #11271B;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 1px solid #2E7A4E;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C;
  border-bottom: 1px solid #1E3A2A;
}

.page-fishing-games__faq-question:hover {
  background-color: #13994A;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #A7D9B8;
  background-color: #11271B;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }
  .page-fishing-games__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    max-width: 95%;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__cta-button {
    font-size: 1em;
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__btn-secondary-inverted {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-fishing-games__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-content {
    font-size: 1em;
  }
  .page-fishing-games__feature-card, .page-fishing-games__game-card, .page-fishing-games__step-item, .page-fishing-games__promo-card {
    padding: 20px;
  }
  .page-fishing-games__feature-image, .page-fishing-games__game-image {
    height: 150px;
  }
  .page-fishing-games__card-title, .page-fishing-games__game-title, .page-fishing-games__step-title, .page-fishing-games__promo-title {
    font-size: 1.3em;
  }
  .page-fishing-games__strategy-item-list {
    font-size: 0.95em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__hero-image-wrapper, .page-fishing-games__features-wrapper, .page-fishing-games__game-list, .page-fishing-games__steps-wrapper, .page-fishing-games__promo-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-fishing-games__hero-description {
    font-size: 0.9em;
  }
  .page-fishing-games__cta-button {
    padding: 10px 20px;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
}