.page-fishing-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f0f2f5;
}

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

.page-fishing-games h1, .page-fishing-games h2, .page-fishing-games h3 {
  color: var(--primary-color, #0A246A);
  font-weight: bold;
  margin-bottom: 20px;
}

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

.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-color: var(--secondary-color, #FFD700);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-fishing-games h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--primary-color, #0A246A);
}

.page-fishing-games p {
  margin-bottom: 15px;
  color: #555555;
}

.page-fishing-games .text-link {
  color: var(--secondary-color, #FFD700);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games .text-link:hover {
  color: var(--primary-color, #0A246A);
}

/* 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, var(--primary-color, #0A246A) 0%, #1A3E8A 100%);
}

.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 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-fishing-games .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A246A);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

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

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

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

/* General Section Styling */
.page-fishing-games section {
  padding: 60px 0;
}

.page-fishing-games .section-intro, .page-fishing-games .section-why-choose, .page-fishing-games .section-strategy, .page-fishing-games .section-promotions, .page-fishing-games .section-how-to, .page-fishing-games .section-faq, .page-fishing-games .section-latest-news {
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Game Provider Grid */
.page-fishing-games .game-provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games .game-provider-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-fishing-games .game-provider-item .provider-logo {
  width: 200px; /* Minimum size */
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: contain;
}

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

.page-fishing-games .feature-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-fishing-games .feature-item .feature-icon {
  width: 200px; /* Minimum size */
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: var(--secondary-color, #FFD700);
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

/* Strategy Grid */
.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: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--secondary-color, #FFD700);
}

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

.page-fishing-games .promo-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-fishing-games .promo-item .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games .promo-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-fishing-games .promo-item h3 a {
  color: var(--primary-color, #0A246A);
  text-decoration: none;
}

.page-fishing-games .promo-item h3 a:hover {
  color: var(--secondary-color, #FFD700);
}

/* How-To Section */
.page-fishing-games .section-how-to ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-fishing-games .section-how-to li {
  background: #f9f9f9;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color, #0A246A);
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-fishing-games .section-how-to li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A246A);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: bold;
}

.page-fishing-games .section-how-to .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color, #0A246A);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-fishing-games .section-how-to .btn-small:hover {
  background: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A246A);
}

/* FAQ Section */
.page-fishing-games .faq-list {
  margin-top: 30px;
}

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

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  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, #0A246A);
}

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

.page-fishing-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color, #0A246A);
}

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

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

/* Latest News Section */
.page-fishing-games .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-fishing-games .news-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games .news-item .news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games .news-item h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-fishing-games .news-item h3 a {
  color: var(--primary-color, #0A246A);
  text-decoration: none;
}

.page-fishing-games .news-item h3 a:hover {
  color: var(--secondary-color, #FFD700);
}

.page-fishing-games .news-item p {
  font-size: 0.95em;
  color: #666666;
  flex-grow: 1;
}

.page-fishing-games .news-item .news-date {
  font-size: 0.85em;
  color: #999999;
  margin-top: 15px;
}

.page-fishing-games .section-latest-news .cta-button-secondary {
  margin-top: 40px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.5em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .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.3em;
  }
  .page-fishing-games .game-provider-grid, .page-fishing-games .feature-grid, .page-fishing-games .strategy-grid, .page-fishing-games .promo-grid, .page-fishing-games .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 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 .hero-content h1 {
    font-size: 2.5em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.2em;
  }
  .page-fishing-games .game-provider-item .provider-logo,
  .page-fishing-games .feature-item .feature-icon {
    width: 150px;
  }
  .page-fishing-games .section-how-to li {
    padding-left: 60px;
  }
  .page-fishing-games .section-how-to li::before {
    left: 15px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
  .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: 12px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.9em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-fishing-games .game-provider-grid, .page-fishing-games .feature-grid, .page-fishing-games .strategy-grid, .page-fishing-games .promo-grid, .page-fishing-games .news-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .game-provider-item .provider-logo,
  .page-fishing-games .feature-item .feature-icon {
    width: 120px;
  }
  .page-fishing-games .section-how-to li {
    padding-left: 50px;
  }
  .page-fishing-games .section-how-to li::before {
    left: 10px;
    top: 18px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-fishing-games .news-item .news-image {
    height: 180px;
  }
}