/* style/fishing-games.css */
.page-fishing-games {
  font-family: Arial, sans-serif;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-fishing-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-fishing-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  color: #DAA520;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #DAA520;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DAA520;
  border-radius: 2px;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-fishing-games__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-fishing-games__text-block p {
  margin-bottom: 20px;
}

.page-fishing-games__dark-bg {
  background-color: #1A1A1A;
  color: #ffffff;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background-color: #DAA520;
  color: #1A1A1A;
  border: 2px solid #DAA520;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e0b84f;
  color: #1A1A1A;
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #DAA520;
  border: 2px solid #DAA520;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #DAA520;
  color: #1A1A1A;
}

.page-fishing-games__hero-cta-buttons,
.page-fishing-games__cta-buttons--center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

.page-fishing-games__card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 1.8em;
  color: #DAA520;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-fishing-games__card-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__card .page-fishing-games__btn-primary {
  margin-top: auto;
}

.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__steps-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #DAA520;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__steps-list li h3 {
  color: #DAA520;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-fishing-games__steps-list li p {
  color: #f0f0f0;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.page-fishing-games__tip-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-fishing-games__tip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-fishing-games__tip-title {
  font-size: 1.5em;
  color: #DAA520;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-fishing-games__tip-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  padding: 0 20px;
  flex-grow: 1;
}

.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__promo-list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #DAA520;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__promo-list li h3 {
  color: #DAA520;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-fishing-games__promo-list li p {
  color: #f0f0f0;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.page-fishing-games__benefits-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__benefit-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games__benefits-list li h3 {
  color: #DAA520;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-fishing-games__benefits-list li p {
  color: #cccccc;
  line-height: 1.6;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  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 25px;
  cursor: pointer;
  background-color: #1A1A1A;
  color: #DAA520;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: rgba(26, 26, 26, 0.8);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  line-height: 1.7;
  font-size: 1em;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px 25px 25px;
}

.page-fishing-games__cta-bottom {
  background-color: #DAA520;
  padding: 80px 20px;
  text-align: center;
  color: #1A1A1A;
}

.page-fishing-games__cta-bottom-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__cta-bottom-title {
  font-size: 2.8em;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.page-fishing-games__cta-bottom-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-fishing-games__cta-bottom .page-fishing-games__btn-primary {
  background-color: #1A1A1A;
  color: #DAA520;
  border-color: #1A1A1A;
}

.page-fishing-games__cta-bottom .page-fishing-games__btn-primary:hover {
  background-color: #333333;
  color: #DAA520;
}

.page-fishing-games__cta-bottom .page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}

.page-fishing-games__cta-bottom .page-fishing-games__btn-secondary:hover {
  background-color: #1A1A1A;
  color: #DAA520;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__cta-bottom-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-description {
    font-size: 0.95em;
  }
  .page-fishing-games__content-area,
  .page-fishing-games__dark-bg {
    padding: 60px 15px;
  }
  .page-fishing-games__game-cards,
  .page-fishing-games__tips-grid,
  .page-fishing-games__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__card,
  .page-fishing-games__tip-item,
  .page-fishing-games__benefits-list li,
  .page-fishing-games__steps-list li,
  .page-fishing-games__promo-list li {
    padding: 20px;
  }
  .page-fishing-games__card-image,
  .page-fishing-games__tip-image {
    height: 180px;
  }
  .page-fishing-games__card-title,
  .page-fishing-games__tip-title,
  .page-fishing-games__steps-list li h3,
  .page-fishing-games__promo-list li h3,
  .page-fishing-games__benefits-list li h3 {
    font-size: 1.4em;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-buttons--center {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games__cta-bottom {
    padding: 60px 15px;
  }
  .page-fishing-games__cta-bottom-title {
    font-size: 1.8em;
  }
  .page-fishing-games__cta-bottom-description {
    font-size: 1em;
  }

  /* Mobile image, video, button responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__about-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__how-to-play,
  .page-fishing-games__strategies-tips,
  .page-fishing-games__promotions,
  .page-fishing-games__benefits,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-fishing-games__cta-bottom-content {
    padding-left: 0;
    padding-right: 0;
  }
  .page-fishing-games__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__faq-question, .page-fishing-games__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    height: 400px;
  }
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 0.9em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__cta-bottom-title {
    font-size: 1.6em;
  }
}