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

.page-fishing-games {
  color: var(--text-main); /* Default text color for the page content */
  background-color: var(--page-bg); /* Page background from custom colors */
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit hero image height */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin-top: 40px; /* Space below image */
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-weight: 800;
  line-height: 1.2;
  color: var(--gold-color);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
}

.page-fishing-games__subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

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

.page-fishing-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
  filter: brightness(1.1);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(17, 168, 78, 0.3);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.5);
}

.page-fishing-games__section {
  padding: 60px 20px;
  background-color: var(--page-bg);
}

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

.page-fishing-games__heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-fishing-games__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__feature-item {
  text-align: center;
  padding: 25px;
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__feature-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-fishing-games__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games__card-title {
  font-size: 1.4rem;
  color: var(--text-main);
  padding: 15px 20px 10px;
  font-weight: 600;
}

.page-fishing-games__card-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__card-title a:hover {
  color: var(--primary-color);
}

.page-fishing-games__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-fishing-games__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: var(--button-gradient);
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-fishing-games__card-button:hover {
  filter: brightness(1.1);
}

.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 {
  text-align: center;
  padding: 25px;
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__step-number {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__step-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-fishing-games__cta-buttons--centered {
  margin-top: 50px;
  justify-content: center;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-fishing-games__list-item {
  background-color: var(--card-bg);
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.page-fishing-games__strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card--promotion {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.page-fishing-games__card--promotion .page-fishing-games__card-title {
  font-size: 1.6rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games__card--promotion .page-fishing-games__card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.page-fishing-games__card--promotion .page-fishing-games__card-button {
  width: auto;
  padding: 12px 25px;
  margin: 0 auto;
}

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
  list-style: none; /* For details summary */
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

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

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-fishing-games__conclusion-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--deep-green);
  border-top: 1px solid var(--border-color);
  box-shadow: inset 0 5px 15px rgba(0,0,0,0.3);
}

.page-fishing-games__conclusion-section .page-fishing-games__heading {
  color: var(--gold-color);
  margin-bottom: 25px;
}

.page-fishing-games__conclusion-section .page-fishing-games__paragraph {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: 20px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .page-fishing-games__subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-image {
    max-height: 400px;
  }

  .page-fishing-games__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

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

  .page-fishing-games__subtitle {
    font-size: 0.95rem;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-fishing-games__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games__heading {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games__paragraph {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promotion-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__card-image,
  .page-fishing-games__strategy-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__card,
  .page-fishing-games__step-item,
  .page-fishing-games__list-item,
  .page-fishing-games__faq-item,
  .page-fishing-games__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__card-button {
    width: calc(100% - 30px) !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

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

  .page-fishing-games__strategy-list {
    margin-left: 0;
    margin-right: 0;
    padding: 0 15px;
  }

  .page-fishing-games__faq-list {
    margin-left: 0;
    margin-right: 0;
    padding: 0 15px;
  }

  .page-fishing-games__faq-question,
  .page-fishing-games__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

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

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-fishing-games__subtitle {
    font-size: 0.85rem;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 0.9rem;
    padding: 10px 15px !important;
  }

  .page-fishing-games__heading {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
  }

  .page-fishing-games__paragraph {
    font-size: 0.85rem;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__card-title,
  .page-fishing-games__step-title,
  .page-fishing-games__card--promotion .page-fishing-games__card-title {
    font-size: 1.3rem;
  }

  .page-fishing-games__faq-question {
    font-size: 1.1rem;
  }

  .page-fishing-games__faq-answer {
    font-size: 0.9rem;
  }
}