.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

.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: #ececec;
}

.page-fishing-games-section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-main-title {
  font-size: 48px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.page-fishing-games-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-fishing-games-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games-hero-description {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-cta-secondary {
  background: var(--secondary-color);
}

.page-fishing-games-cta-secondary:hover {
  background: var(--primary-color);
}

.page-fishing-games-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.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: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

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

.page-fishing-games-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.page-fishing-games-card-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games-card-text {
  font-size: 16px;
  color: #555;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games-card-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games-card-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

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

.page-fishing-games-step {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-fishing-games-btn-download, .page-fishing-games-btn-register {
  margin-top: 15px;
  background-color: var(--primary-color);
}

.page-fishing-games-btn-download:hover, .page-fishing-games-btn-register:hover {
  background-color: var(--secondary-color);
}

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

.page-fishing-games-strategy-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 17px;
  color: #444;
  border-left: 5px solid var(--primary-color);
}

.page-fishing-games-strategy-list li strong {
  color: var(--secondary-color);
}

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

.page-fishing-games-promo-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 17px;
  color: #444;
  border-left: 5px solid var(--secondary-color);
}

.page-fishing-games-promo-list li strong {
  color: var(--primary-color);
}

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

.page-fishing-games-feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.page-fishing-games-feature-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--secondary-color);
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-fishing-games-cta-final {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--secondary-color);
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-cta-final .page-fishing-games-section-title {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 38px;
}

.page-fishing-games-cta-final p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-cta-large {
  padding: 18px 50px;
  font-size: 22px;
  background: var(--primary-color);
  margin-top: 0;
}

.page-fishing-games-cta-large:hover {
  background: #fff;
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-hero-image {
    max-height: 400px;
  }
  .page-fishing-games-main-title {
    font-size: 40px;
  }
  .page-fishing-games-section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games-main-title {
    font-size: 32px;
  }
  .page-fishing-games-hero-description {
    font-size: 16px;
  }
  .page-fishing-games-cta-button {
    padding: 12px 25px;
    font-size: 16px;
    margin: 8px 10px;
  }
  .page-fishing-games-section {
    padding: 40px 0;
  }
  .page-fishing-games-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-fishing-games-game-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-steps {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-security-features {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games-cta-final .page-fishing-games-section-title {
    font-size: 30px;
  }
  .page-fishing-games-cta-final p {
    font-size: 16px;
  }
  .page-fishing-games-cta-large {
    padding: 15px 35px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-main-title {
    font-size: 28px;
  }
  .page-fishing-games-hero-image {
    max-height: 300px;
  }
  .page-fishing-games-cta-button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-fishing-games-section-title {
    font-size: 24px;
  }
  .page-fishing-games-card-title {
    font-size: 20px;
  }
  .page-fishing-games-feature-title {
    font-size: 20px;
  }
  .page-fishing-games-cta-final .page-fishing-games-section-title {
    font-size: 26px;
  }
  .page-fishing-games-cta-large {
    padding: 12px 25px;
    font-size: 16px;
  }
}