:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-light: #f5f5f5;
  --border-color: #e0e0e0;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

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

.page-fishing-games__title,
.page-fishing-games__heading {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.3;
}

.page-fishing-games__title {
  font-size: 2.8em;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__heading {
  font-size: 2.2em;
  color: var(--secondary-color);
}

.page-fishing-games__description,
.page-fishing-games__note,
.page-fishing-games__section p,
.page-fishing-games__section li {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-fishing-games__description strong,
.page-fishing-games__note strong,
.page-fishing-games__section p strong {
  color: var(--secondary-color);
}

.page-fishing-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  margin: 10px 5px;
  font-size: 1em;
}

.page-fishing-games__btn--primary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-fishing-games__btn--primary:hover {
  background-color: #a00000;
  border-color: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-fishing-games__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__btn--inline {
  margin-left: 10px;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

/* Hero Section Specific */
.page-fishing-games .hero-fishing-games {
  background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games .hero-fishing-games .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-fishing-games .hero-content {
  max-width: 800px;
}

.page-fishing-games .hero-content .page-fishing-games__title {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-fishing-games .hero-content .page-fishing-games__description {
  color: var(--text-light);
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-fishing-games .hero-image-wrapper {
  width: 100%;
  max-width: 900px;
}

.page-fishing-games__hero-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-fishing-games .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-fishing-games__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__section:last-of-type {
  border-bottom: none;
}

/* Game Grid */
.page-fishing-games .game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .game-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.page-fishing-games .game-card__title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games .game-card__description {
  font-size: 0.95em;
  color: var(--text-dark);
  padding: 0 15px;
  margin-bottom: 20px;
}

/* How to Play List */
.page-fishing-games .how-to-play-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-fishing-games .how-to-play-list li {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

.page-fishing-games .how-to-play-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: -20px;
  top: -15px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-fishing-games .how-to-play-list li h3 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
}

/* Strategy List */
.page-fishing-games .strategy-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.page-fishing-games .strategy-list li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
}

.page-fishing-games .strategy-list li h4 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3em;
}

/* Promotion Grid */
.page-fishing-games .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games .promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .promo-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.page-fishing-games .promo-card__title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games .promo-card__description {
  font-size: 0.95em;
  color: var(--text-dark);
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Why Choose List */
.page-fishing-games .why-choose-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-fishing-games .why-choose-list li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary-color);
}

.page-fishing-games .why-choose-list li h4 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3em;
}

/* FAQ Section */
.page-fishing-games .faq-list {
  margin-top: 30px;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games .faq-question:hover {
  background: var(--bg-light);
}

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-dark);
}

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-fishing-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px;
}

.page-fishing-games .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games .hero-fishing-games .container {
    flex-direction: column;
    gap: 30px;
  }
  .page-fishing-games__title {
    font-size: 2.5em;
  }
  .page-fishing-games__heading {
    font-size: 2em;
  }
  .page-fishing-games .strategy-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games .container {
    padding: 0 15px;
  }
  .page-fishing-games__title {
    font-size: 2em;
  }
  .page-fishing-games__heading {
    font-size: 1.8em;
  }
  .page-fishing-games__description, .page-fishing-games__section p, .page-fishing-games__section li {
    font-size: 1em;
  }
  .page-fishing-games__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-fishing-games .hero-fishing-games {
    padding: 60px 0;
  }
  .page-fishing-games .game-grid,
  .page-fishing-games .promo-grid,
  .page-fishing-games .why-choose-list {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .how-to-play-list li {
    padding: 20px;
  }
  .page-fishing-games .how-to-play-list li::before {
    left: 10px;
    top: -10px;
  }
  .page-fishing-games .faq-question {
    padding: 15px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__title {
    font-size: 1.8em;
  }
  .page-fishing-games__heading {
    font-size: 1.6em;
  }
  .page-fishing-games .hero-actions {
    flex-direction: column;
  }
  .page-fishing-games__btn {
    width: 90%;
    margin: 5px auto;
  }
  .page-fishing-games .game-card__img,
  .page-fishing-games .promo-card__img {
    height: 150px;
  }
  .page-fishing-games .strategy-list {
    grid-template-columns: 1fr;
  }
}