/* style/fishing-games.css */
:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #F0F0F0;
  --text-dark: #333333;
  --background-light: #ffffff;
  --background-dark: #2D3748;
  --border-color: #e0e0e0;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  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: 20px;
}

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-fishing-games h2 {
  font-size: 2.2em;
  border-bottom: 3px solid var(--secondary-color);
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-fishing-games ul,
.page-fishing-games ol {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.page-fishing-games ul li,
.page-fishing-games ol li {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-fishing-games ul li:hover,
.page-fishing-games ol li:hover {
  transform: translateY(-5px);
}

.page-fishing-games ul li h3,
.page-fishing-games ol li h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-fishing-games ul li p,
.page-fishing-games ol li p {
  text-align: left;
  margin-bottom: 0;
  color: var(--text-dark);
}

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

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

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games .cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button.small-button {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 20px;
}

.page-fishing-games .cta-button.large-button {
  padding: 18px 50px;
  font-size: 20px;
}

/* 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-color: var(--background-dark);
  color: var(--text-light);
}

.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.3);
}

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

.page-fishing-games .hero-content h1 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-fishing-games .hero-content p {
  color: var(--text-light);
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Why Choose Section */
.page-fishing-games .section-why-choose {
  background-color: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-fishing-games .section-why-choose p {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

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

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

.page-fishing-games .feature-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .feature-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
}

/* Game Types Section */
.page-fishing-games .section-game-types {
  background-color: #f0f2f5;
  text-align: center;
}

.page-fishing-games .section-game-types p {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-fishing-games .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  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 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

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

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

.page-fishing-games .game-card p {
  font-size: 1em;
  color: var(--text-dark);
  padding: 0 15px 20px 15px;
  margin-bottom: 0;
}

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

.page-fishing-games .btn-play-now:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Guide Section */
.page-fishing-games .section-guide {
  background-color: var(--background-light);
  text-align: center;
}

.page-fishing-games .section-guide ol {
  counter-reset: step-counter;
}

.page-fishing-games .section-guide ol li {
  position: relative;
  padding-left: 60px;
  text-align: left;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-fishing-games .section-guide ol li h3 {
  color: var(--secondary-color);
}

.page-fishing-games .section-guide ol li p {
  color: var(--text-light);
  text-align: left;
}

.page-fishing-games .section-guide ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .section-guide ol li a {
  color: var(--secondary-color);
}

.page-fishing-games .section-guide ol li a:hover {
  color: #e6c200;
}

/* Strategies Section */
.page-fishing-games .section-strategies {
  background-color: #f0f2f5;
  text-align: center;
}

.page-fishing-games .section-strategies ul li {
  background-color: #ffffff;
  color: var(--text-dark);
}

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

.page-fishing-games .section-strategies ul li p {
  color: var(--text-dark);
}

/* Promotions Section */
.page-fishing-games .section-promotions {
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-fishing-games .section-promotions h2 {
  color: var(--secondary-color);
}

.page-fishing-games .section-promotions p {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-fishing-games .promo-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .promo-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games .promo-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
}

/* Support Section */
.page-fishing-games .section-support {
  background-color: var(--background-light);
  text-align: center;
}

.page-fishing-games .section-support ul {
  max-width: 600px;
  margin-top: 30px;
}

.page-fishing-games .section-support ul li {
  background-color: #ffffff;
  border: none;
  box-shadow: none;
  padding: 10px 0;
  margin-bottom: 5px;
  text-align: left;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-fishing-games .section-support ul li:hover {
  transform: none;
}

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

/* FAQ Section */
.page-fishing-games .section-faq {
  background-color: #f0f2f5;
  text-align: center;
}

.page-fishing-games .faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--background-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  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.2em;
  color: var(--primary-color);
  text-align: left;
}

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

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 20px;
}

.page-fishing-games .faq-answer p {
  margin: 0;
  text-align: left;
  font-size: 1em;
  line-height: 1.8;
}

/* Conclusion Section */
.page-fishing-games .section-conclusion {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding-bottom: 80px;
}

.page-fishing-games .section-conclusion h2 {
  color: var(--secondary-color);
}

.page-fishing-games .section-conclusion p {
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 25px auto;
  font-size: 1.15em;
}

.page-fishing-games .section-conclusion a {
  color: var(--secondary-color);
  font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games h1 {
    font-size: 2.5em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games .hero-section {
    padding: 60px 15px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .features-grid,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .promo-items {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games h1 {
    font-size: 2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
  }
  .page-fishing-games p {
    font-size: 1em;
  }
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games .hero-image img {
    border-radius: 8px;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-fishing-games .section-guide ol li {
    padding-left: 45px;
  }
  .page-fishing-games .section-guide ol li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
    left: 10px;
  }
  .page-fishing-games .faq-question {
    padding: 12px 15px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .container {
    padding: 0 15px;
  }
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games .cta-button {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.95em;
  }
  .page-fishing-games .features-grid,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .promo-items {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .feature-item,
  .page-fishing-games .game-card,
  .page-fishing-games .promo-item {
    padding: 20px;
  }
  .page-fishing-games .game-card img {
    height: 180px;
  }
  .page-fishing-games .section-guide ol li {
    padding-left: 15px;
  }
  .page-fishing-games .section-guide ol li::before {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
  .page-fishing-games .section-support ul li {
    font-size: 1em;
  }
}