.page-fishing-games {
  --primary-color: #0A244A;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #071a35;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-fishing-games-section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-fishing-games-section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-fishing-games-hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--background-dark));
  color: var(--text-color-light);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  object-fit: cover;
}

.page-fishing-games-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-fishing-games-cta-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.page-fishing-games-section-title {
  font-size: 2.5em;
  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-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games-sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games-text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

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

.page-fishing-games-benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-benefit-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games-benefit-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.page-fishing-games-game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-fishing-games-game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-fishing-games-game-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-fishing-games-game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-game-card-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games-card-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games-card-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-fishing-games-game-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games-card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-fishing-games-card-button:hover {
  background-color: #e6c200;
}

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

.page-fishing-games-guide-list li {
  background-color: #ffffff;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  padding-left: 80px;
}

.page-fishing-games-guide-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 30px;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-fishing-games-guide-step-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.page-fishing-games-promotion-list li {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.page-fishing-games-promotion-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.page-fishing-games-security-item {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-security-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games-faq-list {
  margin-top: 40px;
}

/* FAQ default state - answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question styling */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-bottom: 10px;
}

.faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--secondary-color);
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

/* Toggle icon */
.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-main-title {
    font-size: 2.5em;
  }
  .page-fishing-games-section-title {
    font-size: 2em;
  }
  .page-fishing-games-sub-title {
    font-size: 1.6em;
  }
  .page-fishing-games-hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-fishing-games-benefits-grid, .page-fishing-games-game-cards-grid, .page-fishing-games-security-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-fishing-games-benefit-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-main-title {
    font-size: 2em;
  }
  .page-fishing-games-section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-sub-title {
    font-size: 1.4em;
  }
  .page-fishing-games-hero-description {
    font-size: 1em;
  }
  .page-fishing-games-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-fishing-games-section {
    padding: 40px 0;
  }
  .page-fishing-games-guide-list li {
    padding-left: 65px;
  }
  .page-fishing-games-guide-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
    top: 25px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-toggle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-main-title {
    font-size: 1.8em;
  }
  .page-fishing-games-section-title {
    font-size: 1.6em;
  }
  .page-fishing-games-game-card-image {
    height: 180px;
  }
  .page-fishing-games-game-card-content {
    padding: 15px;
  }
  .page-fishing-games-game-card-title {
    font-size: 1.4em;
  }
  .page-fishing-games-card-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-fishing-games-benefit-icon {
    width: 80px;
    height: 80px;
  }
  .page-fishing-games-benefit-title {
    font-size: 1.3em;
  }
  .page-fishing-games-text-content {
    font-size: 0.95em;
  }
}