.page-fishing-games {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop and mobile */
}

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

.page-fishing-games__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366; /* Fallback if image not loaded */
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-fishing-games__cta-button--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games__cta-button--secondary:hover {
  background-color: #004080;
  border-color: #e6c200;
}

.page-fishing-games__cta-button--inline {
    margin-top: 20px;
}

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

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games__section-text {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #444444;
}

.page-fishing-games__text-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-fishing-games__text-link:hover {
  color: #FFD700;
}

.page-fishing-games__introduction-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__tips-section,
.page-fishing-games__security-section,
.page-fishing-games__responsible-gaming-section,
.page-fishing-games__faq-section,
.page-fishing-games__call-to-action-section {
  padding: 60px 0;
}

.page-fishing-games__introduction-section {
  background-color: #f9f9f9;
}

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

.page-fishing-games__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-fishing-games__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-fishing-games__step-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  position: relative;
}

.page-fishing-games__step-item::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #003366;
  color: #FFD700;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-fishing-games__step-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  margin-top: 10px;
}

.page-fishing-games__step-description {
  font-size: 1em;
  color: #555555;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-fishing-games__tip-item {
  background-color: #f0f8ff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}

.page-fishing-games__tip-item:hover {
  background-color: #e0f0ff;
}

.page-fishing-games__tip-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-fishing-games__tip-description {
  font-size: 1em;
  color: #555555;
}

.page-fishing-games__security-section {
  background-color: #003366;
  color: #ffffff;
}

.page-fishing-games__security-section .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__security-section .page-fishing-games__section-title::after {
  background-color: #ffffff;
}

.page-fishing-games__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-fishing-games__security-image {
  flex: 1 1 400px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games__security-text {
  flex: 2 1 500px;
}

.page-fishing-games__security-section .page-fishing-games__section-text {
  color: #f0f0f0;
}

.page-fishing-games__security-section .page-fishing-games__text-link {
  color: #FFD700;
}

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

.page-fishing-games__security-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-fishing-games__security-item strong {
  color: #FFD700;
}

.page-fishing-games__responsible-gaming-section {
  background-color: #f9f9f9;
}

.page-fishing-games__responsible-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
}

.page-fishing-games__responsible-item {
  margin-bottom: 10px;
  font-size: 1em;
  color: #555555;
}

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

.page-fishing-games__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.page-fishing-games__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-fishing-games__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-fishing-games__faq-image {
  display: block;
  margin: 40px auto 0;
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games__call-to-action-section {
  background-color: #FFD700;
  text-align: center;
  color: #003366;
}

.page-fishing-games__call-to-action-section .page-fishing-games__section-title {
  color: #003366;
}

.page-fishing-games__call-to-action-section .page-fishing-games__section-title::after {
  background-color: #003366;
}

.page-fishing-games__call-to-action-section .page-fishing-games__section-text {
  color: #333333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__call-to-action-section .page-fishing-games__text-link {
  color: #003366;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-fishing-games__call-to-action-section .page-fishing-games__cta-button {
  background-color: #003366;
  color: #FFD700;
}

.page-fishing-games__call-to-action-section .page-fishing-games__cta-button:hover {
  background-color: #004080;
}

.page-fishing-games__call-to-action-section .page-fishing-games__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #003366;
  color: #003366;
}

.page-fishing-games__call-to-action-section .page-fishing-games__cta-button--secondary:hover {
  background-color: rgba(0, 51, 102, 0.1);
  border-color: #003366;
  color: #003366;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.2em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__security-content {
    flex-direction: column;
  }
  .page-fishing-games__security-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__cta-button {
    width: 80%;
    padding: 12px 20px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__tips-list,
  .page-fishing-games__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__steps-list {
    gap: 20px;
  }
  .page-fishing-games__step-item::before {
    top: -10px;
    left: 15px;
    padding: 3px 10px;
  }
  .page-fishing-games__feature-image,
  .page-fishing-games__security-image,
  .page-fishing-games__faq-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Ensures images scale down but respect min-width */
    height: auto;
  }
  .page-fishing-games__feature-image {
    height: 200px;
  }
  .page-fishing-games__security-image {
    height: 250px;
  }
  .page-fishing-games__faq-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 0.9em;
  }
  .page-fishing-games__cta-button {
    width: 90%;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__introduction-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__security-section,
  .page-fishing-games__responsible-gaming-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__call-to-action-section {
    padding: 40px 0;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__hero-section {
    padding: 40px 0;
  }
}