.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  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: #E44D26;
  text-align: center;
  margin-bottom: 30px;
}

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

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

.page-fishing-games h3 {
  font-size: 1.5em;
  color: #333333;
}

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

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games .cta-button.primary {
  background-color: #E44D26;
  color: #ffffff;
}

.page-fishing-games .cta-button.primary:hover {
  background-color: #CC4522;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button.secondary {
  background-color: #FFB800;
  color: #333333;
  border: 2px solid #FFB800;
}

.page-fishing-games .cta-button.secondary:hover {
  background-color: #E6A700;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .center-button {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section Specific */
.page-fishing-games .hero-banca-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, #E44D26 0%, #FFB800 100%);
  overflow: hidden;
}

.page-fishing-games .hero-banca-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-fishing-games .hero-banca-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .hero-banca-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-fishing-games .hero-banca-content p {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-fishing-games .hero-banca-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Why Choose Section */
.page-fishing-games .section-why-choose {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games .why-choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-fishing-games .why-choose-list li {
  text-align: center;
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .why-choose-list li img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games .why-choose-list li h3 {
  color: #E44D26;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.page-fishing-games .why-choose-list li p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

/* Popular Games Section */
.page-fishing-games .section-popular-games {
  background-color: #f2f2f2;
  padding: 80px 0;
}

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

.page-fishing-games .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 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;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

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

.page-fishing-games .game-card h3 a {
  text-decoration: none;
  color: #E44D26;
  transition: color 0.3s ease;
}

.page-fishing-games .game-card h3 a:hover {
  color: #CC4522;
}

.page-fishing-games .game-card p {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
  text-align: center;
}

.page-fishing-games .game-card .btn-play-now {
  display: inline-block;
  background-color: #FFB800;
  color: #333333;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-fishing-games .game-card .btn-play-now:hover {
  background-color: #E6A700;
  color: #ffffff;
}

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

.page-fishing-games .how-to-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-fishing-games .how-to-list li {
  text-align: center;
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .how-to-list li img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games .how-to-list li h3 {
  color: #E44D26;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.page-fishing-games .how-to-list li h3 a {
  text-decoration: none;
  color: #E44D26;
  transition: color 0.3s ease;
}

.page-fishing-games .how-to-list li h3 a:hover {
  color: #CC4522;
}

.page-fishing-games .how-to-list li p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

/* Promotions Section */
.page-fishing-games .section-promotions {
  background-color: #f2f2f2;
  padding: 80px 0;
}

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

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

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

.page-fishing-games .promo-card h3 {
  font-size: 1.3em;
  margin: 20px 15px 10px 15px;
  color: #E44D26;
}

.page-fishing-games .promo-card h3 a {
  text-decoration: none;
  color: #E44D26;
  transition: color 0.3s ease;
}

.page-fishing-games .promo-card h3 a:hover {
  color: #CC4522;
}

.page-fishing-games .promo-card p {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-fishing-games .promo-card .btn-claim-promo:hover {
  background-color: #CC4522;
}

/* Tips & Strategies Section */
.page-fishing-games .section-tips-strategies {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games .tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-fishing-games .tips-list li {
  text-align: center;
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games .tips-list li img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games .tips-list li h3 {
  color: #E44D26;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.page-fishing-games .tips-list li p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

/* Safety & Support Section */
.page-fishing-games .section-safety-support {
  background-color: #f2f2f2;
  padding: 80px 0;
}

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

.page-fishing-games .safety-features .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-fishing-games .safety-features .feature-item h3 {
  color: #E44D26;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.page-fishing-games .safety-features .feature-item p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

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

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

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

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E44D26;
  transition: transform 0.3s ease;
}

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

.page-fishing-games .faq-answer p {
  padding-bottom: 15px;
  margin: 0;
  text-align: left;
}

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

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

/* 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.3em;
  }
  .page-fishing-games .hero-banca-section {
    padding: 60px 15px;
  }
  .page-fishing-games .hero-banca-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games .why-choose-list,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .how-to-list,
  .page-fishing-games .promo-cards-grid,
  .page-fishing-games .tips-list,
  .page-fishing-games .safety-features {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .section-why-choose,
  .page-fishing-games .section-popular-games,
  .page-fishing-games .section-how-to-play,
  .page-fishing-games .section-promotions,
  .page-fishing-games .section-tips-strategies,
  .page-fishing-games .section-safety-support,
  .page-fishing-games .section-faq {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 25px;
    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-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-banca-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games .cta-button {
    width: 100%;
    max-width: 280px;
  }
  .page-fishing-games .why-choose-list li,
  .page-fishing-games .game-card,
  .page-fishing-games .how-to-list li,
  .page-fishing-games .promo-card,
  .page-fishing-games .tips-list li,
  .page-fishing-games .safety-features .feature-item {
    padding: 20px;
  }
}