.page-fishing-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

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

.page-fishing-games__title {
  font-size: 2.5em;
  color: #FFD36B;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
  order: 1; /* Image first */
}

.page-fishing-games__hero-content {
  order: 2; /* Content second */
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual flow */
  background-color: rgba(17, 17, 17, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-size: 3em;
  color: #FFF6D6;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 280px;
  width: 100%;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-fishing-games__btn-secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-fishing-games__about-us {
  background-color: #111111;
  padding-top: 80px;
  padding-bottom: 80px;
}

.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: #111111;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-10px);
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #FFD36B;
}

.page-fishing-games__feature-title {
  color: #FFD36B;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-fishing-games__feature-description {
  font-size: 1em;
  color: #FFF6D6;
  line-height: 1.7;
}

.page-fishing-games__gameshow-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #0A0A0A;
}

.page-fishing-games__gameshow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__gameshow-card {
  background-color: #111111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-fishing-games__gameshow-card:hover {
  transform: translateY(-10px);
}

.page-fishing-games__gameshow-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__gameshow-title {
  font-size: 1.4em;
  margin: 15px 15px 10px;
  color: #FFD36B;
}

.page-fishing-games__gameshow-title a {
  color: #FFD36B;
  text-decoration: none;
}

.page-fishing-games__gameshow-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__gameshow-description {
  font-size: 0.95em;
  color: #FFF6D6;
  padding: 0 15px 20px;
  line-height: 1.6;
}

.page-fishing-games__how-to-play {
  background-color: #111111;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-fishing-games__step-item {
  background-color: #0A0A0A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  text-align: center;
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-fishing-games__step-title {
  color: #FFD36B;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  font-size: 1em;
  color: #FFF6D6;
}

.page-fishing-games__cta-center {
  margin-top: 50px;
}

.page-fishing-games__promotions {
  background-color: #0A0A0A;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-fishing-games__promo-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-fishing-games__promo-card {
  background-color: #111111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  text-align: left;
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-10px);
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__promo-title {
  font-size: 1.5em;
  margin: 20px 20px 10px;
  color: #FFD36B;
}

.page-fishing-games__promo-description {
  font-size: 1em;
  color: #FFF6D6;
  padding: 0 20px 20px;
  line-height: 1.7;
}

.page-fishing-games__promo-card .page-fishing-games__btn-secondary {
  margin: 0 20px 20px;
  width: auto;
  max-width: none;
}

.page-fishing-games__faq-section {
  background-color: #111111;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-fishing-games__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD36B;
  cursor: pointer;
  background-color: #111111;
  border-bottom: 1px solid #3A2A12;
  list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker, 
.page-fishing-games__faq-question::marker {
  display: none;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #FFD36B;
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #FFF6D6;
  line-height: 1.7;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid #3A2A12;
}

.page-fishing-games__final-cta {
  background-color: #0A0A0A;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-fishing-games__cta-content {
  background-color: #111111;
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #3A2A12;
}

.page-fishing-games__cta-content .page-fishing-games__title {
  color: #FFF6D6;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-fishing-games__cta-content .page-fishing-games__text {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__gameshow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-fishing-games__promo-cards {
    flex-direction: column;
    align-items: center;
  }
  .page-fishing-games__promo-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 0;
  }
  .page-fishing-games__hero-content {
    padding: 30px 15px;
    margin-top: -60px; /* Adjust overlap for smaller screens */
  }
  .page-fishing-games__hero-title {
    font-size: 2em !important;
    max-width: 100% !important;
  }
  .page-fishing-games__hero-description {
    font-size: 1em !important;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__feature-item,
  .page-fishing-games__gameshow-card,
  .page-fishing-games__step-item,
  .page-fishing-games__promo-card,
  .page-fishing-games__faq-item,
  .page-fishing-games__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__title {
    font-size: 2em !important;
  }
  .page-fishing-games h3 {
    font-size: 1.4em !important;
  }
  .page-fishing-games__text {
    font-size: 1em !important;
  }
  
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__gameshow-grid {
    grid-template-columns: 1fr;
  }
  /* Specific rule for gameshow grid on mobile: first 4 as 2x2, then 2 as 1 per row */
  .page-fishing-games__gameshow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .page-fishing-games__gameshow-grid > *:nth-child(1),
  .page-fishing-games__gameshow-grid > *:nth-child(2),
  .page-fishing-games__gameshow-grid > *:nth-child(3),
  .page-fishing-games__gameshow-grid > *:nth-child(4) {
    grid-column: span 1;
  }
  .page-fishing-games__gameshow-grid > *:nth-child(5),
  .page-fishing-games__gameshow-grid > *:nth-child(6) {
    grid-column: 1 / -1; /* Make last two items span full width */
  }

  .page-fishing-games__how-to-play .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__promo-cards {
    flex-direction: column;
    gap: 20px;
  }
  .page-fishing-games__promo-card {
    max-width: 100%;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1em !important;
  }
  .page-fishing-games__faq-answer {
    font-size: 0.95em !important;
  }
  .page-fishing-games__cta-content .page-fishing-games__title {
    font-size: 2em !important;
  }
}