:root {
  --primary-color: #FFD700; /* Golden */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #2c3e50;
  --border-color: #e0e0e0;
}

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

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

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

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

.page-fishing-games h1,
.page-fishing-games h2 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-fishing-games h3 {
  color: var(--text-color-dark);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-fishing-games p {
  font-size: 1.1em;
  margin-bottom: 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: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(30, 144, 255, 0.1));
  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;
  gap: 30px;
}

.page-fishing-games .hero-image {
  width: 100%;
  max-width: 900px; /* Adjust max-width for image */
  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 25px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games .hero-content h1 {
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

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

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-fishing-games .cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.5);
}

/* Section Intro - Feature Grid */
.page-fishing-games .section-intro .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games .section-intro .feature-item {
  background: var(--text-color-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .section-intro .feature-item img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games .section-intro .feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
}

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

.page-fishing-games .section-games .game-card {
  background: var(--text-color-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .section-games .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-fishing-games .section-games .game-card h3 a:hover {
  text-decoration: underline;
}

.page-fishing-games .section-games .game-card p {
  font-size: 1em;
  color: #555;
  flex-grow: 1;
}

.page-fishing-games .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games .btn-small:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Section Guide */
.page-fishing-games .section-guide ol {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-fishing-games .section-guide ol li {
  background: var(--text-color-light);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px;
}

.page-fishing-games .section-guide ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 25px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: bold;
}

.page-fishing-games .section-guide ol li h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.5em;
}

.page-fishing-games .section-guide ol li p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

.page-fishing-games .btn-text {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-fishing-games .btn-text:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Section Strategy */
.page-fishing-games .section-strategy ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-fishing-games .section-strategy ul li {
  background: var(--text-color-light);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-fishing-games .section-strategy ul li h3 {
  color: var(--secondary-color);
  margin-top: 0;
  font-size: 1.5em;
}

.page-fishing-games .section-strategy ul li p {
  font-size: 1em;
  color: #555;
}

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

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

.page-fishing-games .section-promotions p {
  color: var(--text-color-light);
}

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

.page-fishing-games .section-promotions .promo-item {
  background: #3a4a5b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .section-promotions .promo-item img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-fishing-games .section-promotions .promo-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
}

.page-fishing-games .section-promotions .promo-item p {
  font-size: 1em;
  color: #cccccc;
}

.page-fishing-games .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games .btn-promo:hover {
  background: var(--secondary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .promo-note {
  margin-top: 40px;
  font-style: italic;
  color: #b0b0b0;
}

/* Section FAQ */
.page-fishing-games .section-faq {
  text-align: left;
}

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

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--text-color-light);
  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(--text-color-dark);
}

.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 25px;
  background: #f9f9f9;
  color: #555;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Enough height to contain content */
  padding: 15px 25px;
  border-top: 1px solid var(--border-color);
}

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

/* Final CTA Section */
.page-fishing-games .section-cta-final {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color-light);
  padding: 80px 20px;
}

.page-fishing-games .section-cta-final h2 {
  color: var(--text-color-light);
  font-size: 2.8em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-fishing-games .section-cta-final p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-fishing-games .cta-button-large:hover {
  background: var(--bg-dark);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.5em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 3em;
  }
  .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 .section-cta-final h2 {
    font-size: 2.2em;
  }
  .page-fishing-games .cta-button-large {
    padding: 18px 40px;
    font-size: 1.4em;
  }
}

@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.6em;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games p {
    font-size: 1em;
  }
  .page-fishing-games .hero-section {
    padding: 60px 15px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2.5em;
  }
  .page-fishing-games .hero-image {
    margin-bottom: 20px;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-fishing-games .feature-grid, .page-fishing-games .game-cards, .page-fishing-games .promo-list {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .section-guide ol li,
  .page-fishing-games .section-strategy ul li {
    padding: 20px;
    padding-left: 60px;
  }
  .page-fishing-games .section-guide ol li::before {
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .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: 15px 20px;
  }
  .page-fishing-games .section-cta-final h2 {
    font-size: 1.8em;
  }
  .page-fishing-games .cta-button-large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.4em;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 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 .section-cta-final h2 {
    font-size: 1.6em;
  }
  .page-fishing-games .cta-button-large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}