/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f4f4f4; /* From shared.css body background */
}

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

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #11A84E;
  margin-bottom: 40px;
}

.page-fishing-games__card {
  background-color: #11271B; /* Custom Card BG */
  color: #F2FFF6; /* Custom Text Main */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Custom Border */
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__faq-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button Color */
  color: #F2FFF6; /* Custom Text Main */
  border: none;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #11A84E; /* Main color */
  border: 2px solid #11A84E; /* Main color */
}

.page-fishing-games__btn-secondary:hover {
  background: #11A84E;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-fishing-games__faq-link {
  background: #22C768; /* Auxiliary color */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-fishing-games__faq-link:hover {
  background: #13994A;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  overflow: hidden;
  padding: 10px 0 60px 0; /* Small top padding, more bottom for content */
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; /* Space between image and content */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

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

.page-fishing-games__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 900;
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__intro-text {
  font-size: 1.2em;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Game Section */
.page-fishing-games__about-game-section {
  background-color: #f4f4f4;
  color: #333333;
}

.page-fishing-games__about-game-section .page-fishing-games__section-title {
  color: #11A84E;
}

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

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

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-fishing-games__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

/* Benefits Section */
.page-fishing-games__benefits-section {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
}

.page-fishing-games__benefits-section .page-fishing-games__section-title {
  color: #F2C14E; /* Custom Gold */
}

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

.page-fishing-games__benefits-grid .page-fishing-games__card {
  text-align: center;
  padding: 30px 20px;
}

.page-fishing-games__benefits-grid .page-fishing-games__card-title {
  font-size: 1.3em;
}

.page-fishing-games__benefits-grid .page-fishing-games__card p {
  color: #A7D9B8; /* Custom Text Secondary */
  font-size: 0.95em;
}

/* Game Types Section */
.page-fishing-games__game-types-section {
  background-color: #f4f4f4;
  color: #333333;
}

.page-fishing-games__game-types-section .page-fishing-games__section-title {
  color: #11A84E;
}

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

.page-fishing-games__game-card .page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-fishing-games__game-card .page-fishing-games__card-title {
  color: #F2C14E; /* Custom Gold */
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-fishing-games__game-card p {
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 20px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
}

.page-fishing-games__guide-section .page-fishing-games__section-title {
  color: #F2C14E; /* Custom Gold */
}

.page-fishing-games__guide-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__guide-steps {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-fishing-games__step-item {
  background-color: #11271B; /* Custom Card BG */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Custom Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 1.3em;
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games__step-item p {
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-fishing-games__guide-image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #f4f4f4;
  color: #333333;
}

.page-fishing-games__promotions-section .page-fishing-games__section-title {
  color: #11A84E;
}

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

.page-fishing-games__promo-card .page-fishing-games__card-title {
  color: #F2C14E; /* Custom Gold */
  font-size: 1.4em;
}

.page-fishing-games__promo-card p {
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 20px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
}

.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: #F2C14E; /* Custom Gold */
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-fishing-games__faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Custom Border */
}

.page-fishing-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #11271B; /* Custom Card BG */
  color: #F2FFF6; /* Custom Text Main */
  cursor: pointer;
  list-style: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-item summary:hover {
  background-color: #1E3A2A; /* Custom Divider */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Custom Gold */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Custom Glow */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 20px;
  background-color: #0A4B2C; /* Custom Deep Green */
  color: #A7D9B8; /* Custom Text Secondary */
  font-size: 0.95em;
  line-height: 1.5;
  border-top: 1px solid #2E7A4E; /* Custom Border */
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  padding-bottom: 80px;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
  color: #F2C14E; /* Custom Gold */
}

.page-fishing-games__conclusion-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Custom Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* --- Responsive Styles --- */

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

  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__container {
    padding: 0 15px;
  }

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

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-fishing-games__intro-text {
    font-size: 1em;
  }

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

  .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,
  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-fishing-games__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__image-block {
    order: -1; /* Image appears above text on mobile */
  }

  .page-fishing-games__benefits-grid,
  .page-fishing-games__game-types-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__guide-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__guide-image-block {
    order: -1; /* Image appears above text on mobile */
  }

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

  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Video responsiveness */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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;
  }
}

/* Tablet (max-width: 1024px) - Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 2.2em;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2em, 4.5vw, 2.8em);
  }

  .page-fishing-games__content-wrapper,
  .page-fishing-games__guide-content {
    flex-direction: column;
  }

  .page-fishing-games__text-block,
  .page-fishing-games__image-block,
  .page-fishing-games__guide-steps,
  .page-fishing-games__guide-image-block {
    flex: none;
    width: 100%;
  }
}