/* style/fishing-games.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E0B048;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #0A2463;
  --accent-color: #f0c26c;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-light);
}

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

.page-fishing-games h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-fishing-games h3 {
  font-size: 1.6em;
  color: var(--primary-color);
}

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

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

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-fishing-games .cta-button:hover {
  background: #f0c26c;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .secondary-cta {
  background: var(--primary-color);
  color: var(--text-light);
  margin-top: 30px;
}

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

/* Hero Banner */
.page-fishing-games .hero-banner {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  background-color: var(--bg-dark); /* Fallback background */
}

.page-fishing-games .hero-banner .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
  z-index: 1;
}

.page-fishing-games .hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-fishing-games .hero-banner h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.page-fishing-games .hero-banner p {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Intro Section */
.page-fishing-games .intro-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.page-fishing-games .intro-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-fishing-games .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  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 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .feature-icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

/* Games Showcase */
.page-fishing-games .games-showcase {
  padding: 60px 0;
  background-color: #eaf0f6;
  text-align: center;
}

.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: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-fishing-games .game-card h3 {
  font-size: 1.4em;
  margin: 15px 15px 10px;
  color: var(--primary-color);
}

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

.page-fishing-games .game-card h3 a:hover {
  color: var(--secondary-color);
}

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

.page-fishing-games .game-card .card-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 12px 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-fishing-games .game-card .card-button:hover {
  background: #f0c26c;
}

/* How-to-play Section */
.page-fishing-games .how-to-play-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

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

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

.page-fishing-games .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .step-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-fishing-games .step-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

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

.page-fishing-games .step-button:hover {
  background: #f0c26c;
}

/* Tips Section */
.page-fishing-games .tips-section {
  padding: 60px 0;
  background-color: #eaf0f6;
}

.page-fishing-games .tips-section ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-fishing-games .tips-section ul li {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  font-size: 1.1em;
  color: var(--text-dark);
  border-left: 5px solid var(--secondary-color);
}

.page-fishing-games .tips-section ul li strong {
  color: var(--primary-color);
}

.page-fishing-games .tips-section .cta-button {
  margin-top: 40px;
  display: block;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Promotion Section */
.page-fishing-games .promotion-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.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: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

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

.page-fishing-games .promo-card h3 {
  font-size: 1.4em;
  margin: 15px 15px 10px;
  color: var(--primary-color);
}

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

.page-fishing-games .promo-card h3 a:hover {
  color: var(--secondary-color);
}

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

.page-fishing-games .promo-card .card-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 12px 0;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-fishing-games .promo-card .card-button:hover {
  background: #061a47;
  color: var(--secondary-color);
}

.page-fishing-games .promo-note {
  margin-top: 30px;
  font-size: 0.9em;
  color: #777;
}

.page-fishing-games .promo-note a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games .promo-note a:hover {
  text-decoration: underline;
}

/* Security & Support Section */
.page-fishing-games .security-support-section {
  padding: 60px 0;
  background-color: #eaf0f6;
  text-align: center;
}

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

.page-fishing-games .support-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  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 .support-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .support-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games .support-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-fishing-games .support-item p {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
}

/* FAQ Section */
.page-fishing-games .faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.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: #fdfdfd;
  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.25em;
  color: var(--primary-color);
}

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  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: #f9f9f9;
  color: #555;
}

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

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

.page-fishing-games .faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games .faq-answer a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-banner h1 {
    font-size: 2.8em;
  }
  .page-fishing-games .hero-banner p {
    font-size: 1.1em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
  }
  .page-fishing-games .feature-grid, .page-fishing-games .game-cards, .page-fishing-games .steps-grid, .page-fishing-games .promo-cards, .page-fishing-games .support-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-banner {
    height: 400px;
  }
  .page-fishing-games .hero-banner h1 {
    font-size: 2.2em;
  }
  .page-fishing-games .hero-banner p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .feature-item, .page-fishing-games .game-card, .page-fishing-games .step-item, .page-fishing-games .promo-card, .page-fishing-games .support-item {
    padding: 20px;
  }
  .page-fishing-games .feature-icon, .page-fishing-games .support-icon {
    width: 80px;
  }
  .page-fishing-games .game-card img {
    height: 180px;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-banner {
    height: 350px;
  }
  .page-fishing-games .hero-banner h1 {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-banner p {
    font-size: 0.9em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-fishing-games h2 {
    font-size: 1.4em;
  }
  .page-fishing-games h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .game-card img {
    height: 150px;
  }
  .page-fishing-games .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
}