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

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

.page-fishing-games section {
  padding: 60px 0;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games section:nth-of-type(odd) {
  background-color: #fff;
}

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

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3 {
  color: #FF0000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-fishing-games h1 {
  font-size: 2.8em;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-fishing-games h2 {
  font-size: 2.2em;
  color: #FF0000;
}

.page-fishing-games h3 {
  font-size: 1.6em;
  color: #FFA500;
}

.page-fishing-games p {
  text-align: justify;
  margin-bottom: 15px;
}

/* 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, #FF0000 0%, #FFA500 100%);
  color: #ffffff;
  overflow: hidden;
}

.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;
  max-width: 900px; /* Adjust max-width for the image */
}

.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 25px 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-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 30px auto;
  color: #fff;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFA500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.page-fishing-games .cta-button:hover {
  background: #FF0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #FFA500;
}

/* Intro Section */
.page-fishing-games .section-intro {
  background-color: #fff;
}

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

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

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

.page-fishing-games .intro-icon {
  width: 150px; /* Increased size */
  height: 150px; /* Increased size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #ffe0b2; /* Light orange background for icons */
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-fishing-games .intro-item h3 {
  color: #FF0000;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-fishing-games .intro-item p {
  color: #555;
  font-size: 1em;
}

/* Game List Section */
.page-fishing-games .section-games-list {
  background-color: #f0f0f0;
}

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

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

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

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

.page-fishing-games .game-card h3 {
  color: #FF0000;
  margin: 20px 15px 10px 15px;
  font-size: 1.5em;
}

.page-fishing-games .game-card p {
  color: #666;
  padding: 0 15px 20px 15px;
  font-size: 0.95em;
}

.page-fishing-games .card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #FFA500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games .card-button:hover {
  background: #FF0000;
  transform: translateY(-2px);
}

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

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

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

.page-fishing-games .step-item:hover {
  transform: translateY(-5px);
}

.page-fishing-games .step-icon {
  width: 60px;
  height: 60px;
  background: #FF0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .step-item h3 {
  color: #FF0000;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-fishing-games .step-item p {
  color: #555;
  font-size: 0.95em;
  text-align: center;
}

.page-fishing-games .button-small {
  display: inline-block;
  padding: 8px 20px;
  background: #FFA500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9em;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games .button-small:hover {
  background: #FF0000;
  transform: translateY(-1px);
}

/* Strategy Section */
.page-fishing-games .section-strategy {
  background-color: #f0f0f0;
}

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

.page-fishing-games .strategy-item {
  background: #fff;
  border-left: 5px solid #FF0000;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games .strategy-item h3 {
  color: #FF0000;
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-fishing-games .strategy-item p {
  color: #555;
  font-size: 0.95em;
  text-align: justify;
}

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

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

.page-fishing-games .promo-card {
  background: linear-gradient(145deg, #FF0000, #FFA500);
  color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .promo-card h3 {
  color: #ffffff;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-fishing-games .promo-card p {
  color: #eee;
  font-size: 1.05em;
  margin-bottom: 25px;
}

.page-fishing-games .promo-card .card-button {
  background: #fff;
  color: #FF0000;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-fishing-games .promo-card .card-button:hover {
  background: #f0f0f0;
  color: #FFA500;
}

/* Review Section */
.page-fishing-games .section-review {
  background-color: #f0f0f0;
}

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

.page-fishing-games .review-points li {
  background: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFA500;
  font-size: 1.1em;
  color: #444;
}

.page-fishing-games .review-points li strong {
  color: #FF0000;
}

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

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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: 1.25em;
  color: #FF0000;
  text-align: left;
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFA500;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 15px 25px 25px 25px;
  border-top: 1px solid #eee;
}

.faq-answer p {
  margin: 0;
  padding: 0;
  text-align: justify;
}

.faq-answer a {
  color: #FF0000;
  text-decoration: none;
  font-weight: bold;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Copyright Info */
.page-fishing-games .copyright-info {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: #777;
  background-color: #eee;
  border-top: 1px solid #ddd;
  margin-top: 50px;
  border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games .hero-section {
    padding: 60px 15px;
  }
  .page-fishing-games .hero-image {
    margin-bottom: 20px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
    margin: 15px auto 25px auto;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-fishing-games .intro-grid, .page-fishing-games .game-cards, .page-fishing-games .guide-steps, .page-fishing-games .strategy-grid, .page-fishing-games .promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games .intro-icon {
    width: 120px;
    height: 120px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.8em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.5em;
  }
  .page-fishing-games h2 {
    font-size: 1.4em;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.9em;
  }
  .page-fishing-games .cta-button {
    font-size: 0.9em;
    padding: 8px 20px;
  }
  .page-fishing-games .intro-item, .page-fishing-games .game-card, .page-fishing-games .step-item, .page-fishing-games .strategy-item, .page-fishing-games .promo-card {
    padding: 20px;
  }
  .page-fishing-games .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
}