.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 20px;
}

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3 {
  color: #000080; /* Deep blue for headings */
  font-weight: bold;
  margin-bottom: 20px;
}

.page-fishing-games h1 {
  font-size: 3.2em;
  text-align: center;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  margin-top: 25px;
}

.page-fishing-games p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-fishing-games a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games a:hover {
  color: #FFD700;
}

/* 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: 60px 20px;
  background: linear-gradient(135deg, #000080, #330066); /* Dark blue to purple gradient */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games .hero-content h1 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 3.8em;
  line-height: 1.2;
}

.page-fishing-games .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #000080;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
}

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

.page-fishing-games .cta-button.highlight {
  background: #FF4500; /* Orange-red for extra highlight */
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(255, 69, 0, 0.4);
}

.page-fishing-games .cta-button.highlight:hover {
  background: #cc3700;
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.6);
}

/* General Section Styles */
.page-fishing-games section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games section:nth-of-type(even) {
  background-color: #f0f4f8; /* Light blue-grey background for alternating sections */
}

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

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

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

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

.page-fishing-games .feature-item .feature-icon {
  width: 150px; /* Larger icon size */
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-fishing-games .feature-item h3 {
  color: #000080;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-fishing-games .feature-item p {
  font-size: 1.05em;
  color: #555555;
}

/* Popular Games Section */
.page-fishing-games .popular-games-section {
  background-color: #f0f4f8;
}

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

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

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

.page-fishing-games .game-card .game-image {
  width: 100%;
  height: 250px; /* Fixed height for images */
  object-fit: cover;
}

.page-fishing-games .game-card .card-content {
  padding: 25px;
}

.page-fishing-games .game-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-fishing-games .game-card h3 a {
  color: #000080;
}

.page-fishing-games .game-card h3 a:hover {
  color: #FFD700;
}

.page-fishing-games .game-card p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-fishing-games .btn-play {
  display: inline-block;
  background: #FFD700;
  color: #000080;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-play:hover {
  background: #e6c200;
  color: #000080;
}

.page-fishing-games .how-to-play {
  margin-top: 60px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .how-to-play h3 {
  color: #000080;
  text-align: center;
  margin-bottom: 30px;
}

.page-fishing-games .how-to-play ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.page-fishing-games .how-to-play ol li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #333333;
}

.page-fishing-games .how-to-play ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #000080;
  color: #FFD700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .how-to-play ol li strong {
  color: #000080;
}

/* Expert Tips Section */
.page-fishing-games .expert-tips-section {
  background-color: #ffffff;
}

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

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

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

.page-fishing-games .tip-item .tip-icon {
  width: 150px; /* Larger icon size */
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-fishing-games .tip-item h3 {
  color: #000080;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-fishing-games .tip-item p {
  font-size: 1.05em;
  color: #555555;
}

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

.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-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.page-fishing-games .promo-item .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-fishing-games .promo-item h3 {
  font-size: 1.5em;
  margin: 20px 15px 10px;
}

.page-fishing-games .promo-item h3 a {
  color: #000080;
}

.page-fishing-games .promo-item h3 a:hover {
  color: #FFD700;
}

.page-fishing-games .promo-item p {
  font-size: 1em;
  color: #555555;
  padding: 0 15px 20px;
}

.page-fishing-games .btn-view-promo {
  display: inline-block;
  background: #000080;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-view-promo:hover {
  background: #FFD700;
  color: #000080;
}

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

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

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

.page-fishing-games .support-item .support-icon {
  width: 150px; /* Larger icon size */
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-fishing-games .support-item h3 {
  color: #000080;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-fishing-games .support-item p {
  font-size: 1.05em;
  color: #555555;
}

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

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

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

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

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

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #000080;
}

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 25px;
  border-top: 1px solid #e0e0e0;
}

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

/* Conclusion Section */
.page-fishing-games .conclusion-section {
  text-align: center;
  background-color: #000080;
  color: #ffffff;
  padding: 80px 20px;
}

.page-fishing-games .conclusion-section h2 {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-fishing-games .conclusion-section p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-fishing-games .conclusion-section a {
  color: #FFD700;
}

.page-fishing-games .conclusion-section a:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.8em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games h3 {
    font-size: 1.5em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-fishing-games .feature-item .feature-icon,
  .page-fishing-games .tip-item .tip-icon,
  .page-fishing-games .support-item .support-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games h1 {
    font-size: 2.2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games section {
    padding: 50px 0;
  }
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games .hero-image img {
    border-radius: 8px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-fishing-games .features-grid,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .tips-list,
  .page-fishing-games .promo-grid,
  .page-fishing-games .support-details {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .how-to-play ol li {
    padding-left: 50px;
  }
  .page-fishing-games .how-to-play ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 20px;
  }
  .page-fishing-games .conclusion-section p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.5em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.95em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-fishing-games .feature-item,
  .page-fishing-games .game-card,
  .page-fishing-games .tip-item,
  .page-fishing-games .promo-item,
  .page-fishing-games .support-item {
    padding: 20px;
  }
  .page-fishing-games .game-card .game-image {
    height: 180px;
  }
  .page-fishing-games .promo-item .promo-image {
    height: 150px;
  }
  .page-fishing-games .how-to-play ol li {
    font-size: 1em;
  }
  .page-fishing-games .how-to-play ol li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
  .page-fishing-games .conclusion-section p {
    font-size: 1em;
  }
}