/* style/betting-games-fishing.css */
.page-betting-games-fishing {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

.page-betting-games-fishing .section-padding {
  padding: 60px 0;
}

.page-betting-games-fishing .section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-betting-games-fishing .section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-betting-games-fishing .text-white {
  color: #FFFFFF !important;
}

.page-betting-games-fishing .bg-dark-blue {
  background-color: #1A237E;
}

.page-betting-games-fishing .bg-light-gray {
  background-color: #f8f8f8;
}

/* Buttons */
.page-betting-games-fishing .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-betting-games-fishing .btn-primary {
  background-color: #FFC107;
  color: #1A237E;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-betting-games-fishing .btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-betting-games-fishing .btn-secondary {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
  margin-left: 15px;
}

.page-betting-games-fishing .btn-secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
  transform: translateY(-2px);
}

.page-betting-games-fishing .btn-light {
  background-color: #FFFFFF;
  color: #1A237E;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-betting-games-fishing .btn-light:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}

.page-betting-games-fishing .btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-betting-games-fishing__hero {
  background: linear-gradient(135deg, #1A237E, #3b429e);
  padding: 100px 0;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  min-height: 70vh;
}

.page-betting-games-fishing__hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-betting-games-fishing__hero .hero-content {
  flex: 1;
  min-width: 300px;
}

.page-betting-games-fishing__hero .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFC107;
}

.page-betting-games-fishing__hero .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-betting-games-fishing__hero .hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-betting-games-fishing__hero .hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-betting-games-fishing__hero .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-betting-games-fishing .feature-item:hover {
  transform: translateY(-5px);
}

.page-betting-games-fishing .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-betting-games-fishing .feature-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-betting-games-fishing .feature-description {
  color: #666;
}

/* Guide Steps */
.page-betting-games-fishing .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-games-fishing .step-item {
  background-color: #2c358e;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-betting-games-fishing .step-item .step-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-betting-games-fishing .step-item p {
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Weapon Features */
.page-betting-games-fishing .weapon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-games-fishing .weapon-item {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.page-betting-games-fishing .weapon-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-betting-games-fishing .weapon-title {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
}

/* Tips List */
.page-betting-games-fishing .tips-list {
  max-width: 800px;
  margin: 0 auto 40px auto;
  list-style: none;
  padding: 0;
}

.page-betting-games-fishing .tips-list li {
  background-color: #FFFFFF;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 45px;
}

.page-betting-games-fishing .tips-list li::before {
  content: '✔️';
  position: absolute;
  left: 15px;
  color: #FFC107;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}

/* Fish Gallery */
.page-betting-games-fishing .fish-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-games-fishing .fish-item {
  text-align: center;
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.page-betting-games-fishing .fish-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFC107;
}

.page-betting-games-fishing .fish-title {
  font-size: 1.3em;
  color: #1A237E;
  margin-bottom: 10px;
}

/* Promotions */
.page-betting-games-fishing .promo-list {
  max-width: 800px;
  margin: 40px auto;
  list-style: none;
  padding: 0;
  color: #e0e0e0;
}

.page-betting-games-fishing .promo-list li {
  background-color: #2c358e;
  padding: 18px 25px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 1.1em;
  position: relative;
  padding-left: 45px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-betting-games-fishing .promo-list li::before {
  content: '⭐';
  position: absolute;
  left: 15px;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}

.page-betting-games-fishing .promo-cta {
  text-align: center;
  margin-top: 50px;
}

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

.page-betting-games-fishing .security-item {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.page-betting-games-fishing .security-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-betting-games-fishing .security-title {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
}

/* FAQ */
.page-betting-games-fishing .faq-items {
  max-width: 900px;
  margin: 40px auto;
}

.page-betting-games-fishing .faq-item {
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.page-betting-games-fishing .faq-question {
  font-size: 1.2em;
  color: #1A237E;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  background-color: #f0f4f7;
  border-bottom: 1px solid #e0e0e0;
}

.page-betting-games-fishing .faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-betting-games-fishing .faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-betting-games-fishing .faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #444;
}

.page-betting-games-fishing .faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-games-fishing__hero .hero-title {
    font-size: 2.8em;
  }
  .page-betting-games-fishing__hero .hero-description {
    font-size: 1.1em;
  }
  .page-betting-games-fishing__hero .container {
    flex-direction: column;
    text-align: center;
  }
  .page-betting-games-fishing__hero .hero-actions {
    justify-content: center;
  }
  .page-betting-games-fishing .section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-betting-games-fishing__hero {
    padding: 80px 0;
  }
  .page-betting-games-fishing__hero .hero-title {
    font-size: 2.2em;
  }
  .page-betting-games-fishing .section-padding {
    padding: 40px 0;
  }
  .page-betting-games-fishing .btn-secondary {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-betting-games-fishing .feature-grid, .page-betting-games-fishing .guide-steps, .page-betting-games-fishing .weapon-features, .page-betting-games-fishing .fish-gallery, .page-betting-games-fishing .security-features {
    grid-template-columns: 1fr;
  }
  .page-betting-games-fishing .tips-list li, .page-betting-games-fishing .promo-list li {
    padding-left: 25px;
  }
  .page-betting-games-fishing .tips-list li::before, .page-betting-games-fishing .promo-list li::before {
    left: 8px;
  }
}

@media (max-width: 480px) {
  .page-betting-games-fishing__hero .hero-title {
    font-size: 1.8em;
  }
  .page-betting-games-fishing .btn {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
  .page-betting-games-fishing .hero-actions {
    flex-direction: column;
  }
  .page-betting-games-fishing .section-title {
    font-size: 1.8em;
  }
  .page-betting-games-fishing .faq-question {
    font-size: 1.1em;
  }
}