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

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

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

.page-fishing-games .section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-fishing-games .section-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-fishing-games .text-center {
  text-align: center;
}

/* Hero Section */
.page-fishing-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3b83 100%); /* Adjusted for better contrast */
  color: #ffffff;
}

.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%;
  margin-bottom: 30px;
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 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-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Lighter text for dark background */
}

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

.page-fishing-games .cta-button:hover {
  background: #ffc107; /* Slightly brighter gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-fishing-games .section-why-choose {
  background-color: #ffffff;
}

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

.page-fishing-games .feature-item {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-fishing-games .feature-icon {
  width: 150px; /* Increased size */
  height: 150px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  padding: 10px;
  background-color: var(--primary-color);
}

.page-fishing-games .feature-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games .feature-item p {
  color: #666666;
  font-size: 16px;
}

/* Lobbies Section */
.page-fishing-games .section-lobbies {
  background-color: #f2f5f9;
}

.page-fishing-games .lobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-fishing-games .lobby-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .lobby-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games .lobby-title {
  font-size: 24px;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-fishing-games .lobby-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games .lobby-title a:hover {
  color: var(--secondary-color);
}

.page-fishing-games .lobby-description {
  padding: 0 20px 20px;
  color: #666666;
  font-size: 15px;
}

.page-fishing-games .btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  transition: all 0.3s ease;
  border: none;
}

.page-fishing-games .btn-primary:hover {
  background: #071a47; /* Darker primary */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Guide Section */
.page-fishing-games .section-guide {
  background-color: #ffffff;
}

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

.page-fishing-games .step-item {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #eee;
}

.page-fishing-games .step-icon {
  width: 120px; /* Increased size */
  height: 120px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 50%;
  background-color: var(--primary-color);
  padding: 10px;
  border: 3px solid var(--secondary-color);
}

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

.page-fishing-games .step-item p {
  color: #666666;
  font-size: 16px;
  margin-bottom: 20px;
}

.page-fishing-games .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

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

/* Strategies Section */
.page-fishing-games .section-strategies {
  background-color: #f2f5f9;
}

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

.page-fishing-games .strategy-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-fishing-games .strategy-image {
  width: 180px; /* Increased size */
  height: 180px; /* Increased size */
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games .strategy-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games .strategy-item p {
  color: #666666;
  font-size: 16px;
}

/* Promotions Section */
.page-fishing-games .section-promotions {
  background-color: #ffffff;
}

.page-fishing-games .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-fishing-games .promo-card {
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-fishing-games .promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-fishing-games .promo-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: bold;
}

.page-fishing-games .promo-card p {
  padding: 0 20px 20px;
  color: #666666;
  font-size: 15px;
}

.page-fishing-games .promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  border: none;
}

.page-fishing-games .promo-button:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-fishing-games .section-faq {
  background-color: #f2f5f9;
}

.page-fishing-games .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.page-fishing-games .faq-question h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
  font-weight: bold;
  flex-grow: 1;
  text-align: left;
}

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

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

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

.page-fishing-games .faq-answer p {
  color: #666666;
  font-size: 16px;
  margin-bottom: 15px;
}

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

.page-fishing-games .btn-faq:hover {
  background: #ffc107;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Final CTA Section */
.page-fishing-games .section-cta-final {
  background: linear-gradient(45deg, var(--primary-color), #071a47);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-fishing-games .cta-title {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .cta-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-fishing-games .cta-button-large {
  display: inline-block;
  padding: 20px 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-fishing-games .cta-button-large:hover {
  background: #ffc107;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-title {
    font-size: 40px;
  }
  .page-fishing-games .hero-description,
  .page-fishing-games .cta-description {
    font-size: 18px;
  }
  .page-fishing-games .section-title {
    font-size: 30px;
  }
  .page-fishing-games .features-grid,
  .page-fishing-games .lobbies-grid,
  .page-fishing-games .guide-steps,
  .page-fishing-games .strategy-grid,
  .page-fishing-games .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-fishing-games .feature-icon,
  .page-fishing-games .step-icon,
  .page-fishing-games .strategy-image {
    width: 100px;
    height: 100px;
  }
  .page-fishing-games .promo-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games .hero-section {
    padding: 60px 15px;
  }
  .page-fishing-games .hero-title {
    font-size: 32px;
  }
  .page-fishing-games .cta-button,
  .page-fishing-games .cta-button-large {
    padding: 15px 30px;
    font-size: 18px;
  }
  .page-fishing-games .section-title {
    font-size: 26px;
  }
  .page-fishing-games .section-intro {
    font-size: 16px;
  }
  .page-fishing-games .feature-title,
  .page-fishing-games .lobby-title,
  .page-fishing-games .step-title,
  .page-fishing-games .strategy-title,
  .page-fishing-games .promo-title {
    font-size: 20px;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games .cta-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-title {
    font-size: 28px;
  }
  .page-fishing-games .hero-description {
    font-size: 15px;
  }
  .page-fishing-games .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-fishing-games .section-title {
    font-size: 22px;
  }
  .page-fishing-games .feature-item,
  .page-fishing-games .lobby-card,
  .page-fishing-games .step-item,
  .page-fishing-games .strategy-item,
  .page-fishing-games .promo-card {
    padding: 20px;
  }
  .page-fishing-games .feature-icon,
  .page-fishing-games .step-icon,
  .page-fishing-games .strategy-image {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .page-fishing-games .promo-image {
    height: 150px;
  }
  .page-fishing-games .cta-title {
    font-size: 28px;
  }
  .page-fishing-games .cta-button-large {
    padding: 15px 30px;
    font-size: 18px;
  }
  .page-fishing-games .btn-primary,
  .page-fishing-games .btn-secondary,
  .page-fishing-games .promo-button,
  .page-fishing-games .btn-faq {
    padding: 10px 20px;
    font-size: 14px;
  }
}