.page-fishing-games {
  background-color: #08160F; /* Nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính cho nền tối */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 40px;
  padding-top: 10px; /* Nhỏ hơn so với body padding-top */
  background-color: #0A4B2C; /* Deep Green cho hero section */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__hero-content {
  max-width: 900px;
  z-index: 1;
  padding: 0 15px;
}

.page-fishing-games__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

.page-fishing-games__cta-group--center {
  margin-top: 40px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold border */
}

.page-fishing-games__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section {
  padding: 80px 20px;
  text-align: center;
  background-color: #08160F;
}

.page-fishing-games__section-title {
  color: #57E38D; /* Glow */
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__content-area p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.page-fishing-games__subsection-title {
  color: #22C768; /* Auxiliary color */
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-fishing-games__card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

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

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

.page-fishing-games__card-title {
  color: #F2C14E; /* Gold */
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-fishing-games__card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.page-fishing-games__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-fishing-games__step-title {
  color: #57E38D; /* Glow */
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-fishing-games__step-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  line-height: 1.5;
}

.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; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

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

.page-fishing-games__game-title {
  color: #F2C14E; /* Gold */
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-fishing-games__game-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__tips-list li {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  text-align: left;
  color: #F2FFF6;
}

.page-fishing-games__list-item-title {
  color: #57E38D; /* Glow */
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-fishing-games__tips-list p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

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

.page-fishing-games__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-fishing-games__feature-title {
  color: #F2C14E; /* Gold */
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-fishing-games__feature-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-fishing-games__video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px;
  background-color: #08160F;
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px; /* Max width for video */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.page-fishing-games__video-description {
  color: #A7D9B8;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: center;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px 30px;
    padding-top: 10px !important;
  }

  .page-fishing-games__main-title {
    font-size: 2rem;
  }

  .page-fishing-games__description {
    font-size: 1rem;
  }

  .page-fishing-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section {
    padding: 50px 15px;
  }

  .page-fishing-games__section-title {
    font-size: 1.8rem;
  }

  .page-fishing-games__content-area {
    padding: 0 10px;
  }

  .page-fishing-games__content-area p {
    font-size: 0.95rem;
  }

  .page-fishing-games__subsection-title {
    font-size: 1.5rem;
  }

  .page-fishing-games__card-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card,
  .page-fishing-games__step-card,
  .page-fishing-games__game-card,
  .page-fishing-games__feature-item,
  .page-fishing-games__tips-list li {
    padding: 20px;
  }

  .page-fishing-games__card-image,
  .page-fishing-games__game-image {
    height: 180px;
  }

  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  }

  .page-fishing-games__video-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__card-grid,
  .page-fishing-games__card,
  .page-fishing-games__steps-grid,
  .page-fishing-games__step-card,
  .page-fishing-games__game-list,
  .page-fishing-games__game-card,
  .page-fishing-games__tips-list,
  .page-fishing-games__tips-list li,
  .page-fishing-games__feature-grid,
  .page-fishing-games__feature-item,
  .page-fishing-games__faq-list,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}