/* style/fishing-games.css */

/* Variables for consistency */
:root {
  --page-fishing-games-primary-color: #0A192F;
  --page-fishing-games-secondary-color: #FFD700;
  --page-fishing-games-text-light: #ffffff;
  --page-fishing-games-text-dark: #333333;
  --page-fishing-games-bg-light: #f8f9fa;
}

.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-fishing-games-text-light); /* Default for dark body background */
  background-color: #000000; /* Ensuring text contrast with body background */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
  min-height: 600px;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background-color: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-text-light);
}

.page-fishing-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

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

.page-fishing-games__hero-section .page-fishing-games__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

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

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--page-fishing-games-text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-fishing-games__btn-primary {
  background-color: var(--page-fishing-games-secondary-color);
  color: var(--page-fishing-games-primary-color); /* Gold background, dark text */
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-secondary-color); /* Dark blue background, gold text */
  border: 2px solid var(--page-fishing-games-secondary-color);
}

.page-fishing-games__btn-secondary:hover {
  background-color: #050d1a;
  transform: translateY(-2px);
  border-color: #e6c200;
}

/* General Section Styling */
.page-fishing-games__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-fishing-games__dark-bg {
  background-color: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-text-light);
  padding: 80px 0;
}

.page-fishing-games__light-bg {
  background-color: var(--page-fishing-games-bg-light);
  color: var(--page-fishing-games-text-dark);
  padding: 80px 0;
}

/* Intro Section */
.page-fishing-games__intro-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-fishing-games__text-block {
  flex: 1;
}

.page-fishing-games__image-right {
  flex: 1;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* How-to-play Section */
.page-fishing-games__how-to-play-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-secondary-color);
}

.page-fishing-games__how-to-play-section .page-fishing-games__section-description {
  color: var(--page-fishing-games-text-light);
}

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

.page-fishing-games__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-fishing-games__step-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__step-title {
  font-size: 1.6em;
  color: var(--page-fishing-games-secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games__step-card p {
  font-size: 1.05em;
  color: var(--page-fishing-games-text-light);
}

/* Game Types Section */
.page-fishing-games__game-types-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-primary-color);
}

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

.page-fishing-games__type-card {
  background-color: #ffffff;
  color: var(--page-fishing-games-text-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__type-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-fishing-games__type-card .page-fishing-games__card-title {
  font-size: 1.4em;
  padding: 15px 20px 0;
  margin-bottom: 10px;
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__type-card p {
  padding: 0 20px 20px;
  font-size: 0.95em;
  flex-grow: 1;
}

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

/* Benefits Section */
.page-fishing-games__benefits-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-secondary-color);
}

.page-fishing-games__benefits-section .page-fishing-games__section-description {
  color: var(--page-fishing-games-text-light);
}

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

.page-fishing-games__benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-fishing-games__benefit-title {
  font-size: 1.6em;
  color: var(--page-fishing-games-secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games__benefit-item p {
  font-size: 1.05em;
  color: var(--page-fishing-games-text-light);
}

/* Guide Section */
.page-fishing-games__guide-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-primary-color);
}

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

.page-fishing-games__guide-step {
  background-color: #ffffff;
  color: var(--page-fishing-games-text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__guide-heading {
  font-size: 1.8em;
  color: var(--page-fishing-games-primary-color);
  margin-bottom: 20px;
}

.page-fishing-games__guide-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-fishing-games__guide-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-fishing-games__guide-list strong {
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__guide-button {
  width: 100%;
  text-align: center;
}

/* Promotions Section */
.page-fishing-games__promotions-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-secondary-color);
}

.page-fishing-games__promotions-section .page-fishing-games__section-description {
  color: var(--page-fishing-games-text-light);
}

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

.page-fishing-games__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--page-fishing-games-text-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.page-fishing-games__promo-card .page-fishing-games__card-title {
  font-size: 1.4em;
  padding: 15px 20px 0;
  margin-bottom: 10px;
  color: var(--page-fishing-games-secondary-color);
}

.page-fishing-games__promo-card p {
  padding: 0 20px 20px;
  font-size: 0.95em;
  flex-grow: 1;
}

/* FAQ Section */
.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-fishing-games__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-text-light);
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #050d1a;
}

.page-fishing-games__faq-heading {
  margin: 0;
  font-size: 1.1em;
  color: inherit;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--page-fishing-games-secondary-color);
}

.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;
  background-color: var(--page-fishing-games-bg-light);
  color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-fishing-games__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-secondary-color);
}

.page-fishing-games__conclusion-section .page-fishing-games__section-description {
  color: var(--page-fishing-games-text-light);
}

/* Responsive Styling */

/* All images responsive by default */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All video responsive by default */
.page-fishing-games video,
.page-fishing-games__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Video container responsive by default */
.page-fishing-games__video-section,
.page-fishing-games__video-container,
.page-fishing-games__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* All buttons responsive by default */
.page-fishing-games__cta-button,
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games a[class*="button"],
.page-fishing-games a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button container responsive by default */
.page-fishing-games__cta-buttons,
.page-fishing-games__button-group,
.page-fishing-games__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }

  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }

  .page-fishing-games__section-title {
    font-size: 2.2em;
  }

  .page-fishing-games__content-grid {
    flex-direction: column;
  }

  .page-fishing-games__image-right {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games__hero-section {
    min-height: 500px;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }

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

  .page-fishing-games__dark-bg,
  .page-fishing-games__light-bg {
    padding: 60px 0;
  }

  .page-fishing-games__steps-grid,
  .page-fishing-games__types-grid,
  .page-fishing-games__benefits-grid,
  .page-fishing-games__guide-grid,
  .page-fishing-games__promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__step-card,
  .page-fishing-games__type-card,
  .page-fishing-games__benefit-item,
  .page-fishing-games__guide-step,
  .page-fishing-games__promo-card {
    padding: 20px;
  }

  .page-fishing-games__step-title,
  .page-fishing-games__type-card .page-fishing-games__card-title,
  .page-fishing-games__benefit-title,
  .page-fishing-games__guide-heading,
  .page-fishing-games__promo-card .page-fishing-games__card-title {
    font-size: 1.3em;
  }

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

  .page-fishing-games__faq-heading {
    font-size: 1em;
  }

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

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

  /* Mobile specific overrides for images, videos, buttons */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}