.page-fishing-games {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --divider-color: #1E3A2A;
  --gold-color: #F2C14E;
  --glow-color: #57E38D;
  --deep-green: #0A4B2C;
}

.page-fishing-games__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-main);
}

.page-fishing-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__light-text {
  color: var(--text-main);
}

.page-fishing-games__card-bg {
  background-color: var(--card-bg);
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-fishing-games__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  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-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--button-gradient);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games__introduction-section p, .page-fishing-games__tips-strategies-section p, .page-fishing-games__promotions-text, .page-fishing-games__final-cta-description {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-fishing-games__introduction-section .page-fishing-games__section-title, .page-fishing-games__tips-strategies-section .page-fishing-games__section-title, .page-fishing-games__faq-section .page-fishing-games__section-title {
  color: var(--deep-green);
}

.page-fishing-games__text-and-image-block {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-fishing-games__text-content {
  flex: 1;
}

.page-fishing-games__image {
  flex: 1;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__highlight {
  color: var(--gold-color);
  font-weight: 600;
}

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

.page-fishing-games__feature-card, .page-fishing-games__game-card, .page-fishing-games__step-card, .page-fishing-games__tip-item {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-fishing-games__feature-title, .page-fishing-games__game-title, .page-fishing-games__step-title, .page-fishing-games__tip-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.page-fishing-games__game-description {
  color: var(--text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-fishing-games__game-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.page-fishing-games__game-button:hover {
  opacity: 0.9;
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-main);
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__promotions-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--text-secondary);
}

.page-fishing-games__faq-list {
  margin-top: 30px;
}

.page-fishing-games__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--deep-green);
  color: var(--text-main);
  border-bottom: 1px solid var(--divider-color);
}

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

.page-fishing-games__faq-question .page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 25px;
  text-align: center;
}

.page-fishing-games__faq-answer {
  padding: 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

.page-fishing-games__final-cta-section {
  text-align: center;
  padding: 80px 20px;
}

.page-fishing-games__final-cta-description {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    max-width: 700px;
  }
  .page-fishing-games__main-title {
    font-size: 2.5em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__text-and-image-block {
    flex-direction: column;
  }
  .page-fishing-games__image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }
  .page-fishing-games__hero-content {
    padding: 15px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 5vw, 2.2em);
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__content-container {
    padding: 20px 15px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-and-image-block {
    gap: 20px;
  }
  .page-fishing-games__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__introduction-section p, .page-fishing-games__tips-strategies-section p, .page-fishing-games__promotions-text, .page-fishing-games__final-cta-description {
    font-size: 1em;
  }
  .page-fishing-games__features-grid, .page-fishing-games__game-cards-grid, .page-fishing-games__steps-grid, .page-fishing-games__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__feature-card, .page-fishing-games__game-card, .page-fishing-games__step-card, .page-fishing-games__tip-item {
    padding: 20px;
  }
  .page-fishing-games__game-image {
    height: 180px;
  }
  .page-fishing-games__feature-title, .page-fishing-games__game-title, .page-fishing-games__step-title, .page-fishing-games__tip-title {
    font-size: 1.3em;
  }
  .page-fishing-games__game-button {
    padding: 8px 15px;
    font-size: 0.85em;
  }
  .page-fishing-games__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 15px;
  }
  .page-fishing-games__final-cta-section {
    padding: 60px 15px;
  }
  .page-fishing-games__button-wrapper .page-fishing-games__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section, .page-fishing-games__card, .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body đã đảm nhiệm --header-offset, tại đây chỉ cần 10px */
  }
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
  .page-fishing-games__cta-button, .page-fishing-games__game-button {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__cta-button {
    padding: 10px 20px;
  }
}