/* style/fishing-games.css */

/* Custom Colors */
:root {
  --page-fishing-games-primary-color: #11A84E;
  --page-fishing-games-secondary-color: #22C768;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-background: #08160F;
  --page-fishing-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-fishing-games-border-color: #2E7A4E;
  --page-fishing-games-glow-color: #57E38D;
  --page-fishing-games-gold-color: #F2C14E;
  --page-fishing-games-divider-color: #1E3A2A;
  --page-fishing-games-deep-green: #0A4B2C;
}

.page-fishing-games {
  background-color: var(--page-fishing-games-background);
  color: var(--page-fishing-games-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--page-fishing-games-primary-color);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-fishing-games__section-title--light {
  color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__section-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: var(--page-fishing-games-text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__sub-title {
  font-size: 1.8em;
  color: var(--page-fishing-games-gold-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games__text-block p,
.page-fishing-games__text-block li {
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__text-content--light p,
.page-fishing-games__text-content--light li {
  color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--page-fishing-games-gold-color);
  font-weight: bold;
}

.page-fishing-games__list-item strong {
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__card {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: var(--page-fishing-games-gold-color);
  margin-bottom: 10px;
}

.page-fishing-games__card-text {
  color: var(--page-fishing-games-text-secondary);
  font-size: 0.95em;
  line-height: 1.5;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-btn-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--page-fishing-games-gold-color);
  border: 2px solid var(--page-fishing-games-gold-color);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-fishing-games__btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__main-title {
  color: var(--page-fishing-games-gold-color);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: clamp(2.2em, 4vw, 3.5em); /* Using clamp for responsive H1 */
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--page-fishing-games-text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
}

/* Video Section */
.page-fishing-games__video-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-deep-green);
  text-align: center;
}

.page-fishing-games__video-description {
  color: var(--page-fishing-games-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__video-link-wrapper {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-fishing-games__video-link-wrapper:hover {
    transform: scale(1.01);
}

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%; /* Ensure desktop width is 100% */
  box-sizing: border-box;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Games Section */
.page-fishing-games__games-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 20px;
}

.page-fishing-games__game-card .page-fishing-games__card-content {
  padding: 0 20px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-deep-green);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__guide-section .page-fishing-games__sub-title {
  color: var(--page-fishing-games-gold-color);
}

.page-fishing-games__button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
}

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

.page-fishing-games__promo-card {
  display: flex;
  flex-direction: column;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.page-fishing-games__promo-card .page-fishing-games__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__promo-card .page-fishing-games__btn-primary {
  margin-top: auto; /* Push button to bottom */
  align-self: flex-start;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-deep-green);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__faq-illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__faq-list {
  max-width: 800px;
  width: 100%;
  margin-top: 20px;
}

.page-fishing-games__faq-item {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--page-fishing-games-text-main);
  background-color: var(--page-fishing-games-deep-green);
  border-bottom: 1px solid var(--page-fishing-games-divider-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid var(--page-fishing-games-border-color);
}

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

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

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-fishing-games-gold-color);
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--page-fishing-games-text-secondary);
  background-color: var(--page-fishing-games-card-bg);
}

.page-fishing-games__faq-answer p {
  margin: 0;
  color: var(--page-fishing-games-text-secondary);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-background);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    min-height: 500px;
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, small decorative padding */
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-fishing-games__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-fishing-games__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  /* Image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    height: auto !important; /* Allow auto height for mobile */
    min-height: 200px; /* Ensure minimum size */
  }

  /* Video responsiveness */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body handles --header-offset, small decorative padding */
  }

  .page-fishing-games__games-grid,
  .page-fishing-games__promotions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-fishing-games__game-card,
  .page-fishing-games__promo-card {
    padding: 15px;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-fishing-games__faq-answer {
    padding: 15px 20px;
  }

  .page-fishing-games__button-group {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start; /* Align buttons to left for better readability */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__button-group .page-fishing-games__btn-primary,
  .page-fishing-games__button-group .page-fishing-games__btn-secondary {
      width: auto !important;
      max-width: 100% !important;
      align-self: stretch; /* Make buttons stretch to full width of container */
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    min-height: 400px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.6em, 7vw, 2.5em);
  }
  .page-fishing-games__hero-description {
    font-size: 0.9em;
  }
  .page-fishing-games__btn-large {
      padding: 12px 25px;
      font-size: 1em;
  }
}