/* Base Styles & Typography */
.page-fishing-games {
  font-family: Arial, sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: #08162B; /* Deep Navy from shared body */
  line-height: 1.6;
}

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

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

.page-fishing-games__dark-section {
  background-color: #10233F; /* Card BG */
  color: #F3F8FF;
}

.page-fishing-games__light-bg {
  background-color: #08162B; /* Deep Navy, contrasting with dark-section */
  color: #F3F8FF;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__text-block {
  font-size: 17px;
  color: #AFC4E8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-fishing-games__hero-content {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  font-size: clamp(32px, 5vw, 48px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-fishing-games__description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #F3F8FF; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__cta-buttons--center {
  margin-top: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-fishing-games__btn-secondary {
  background: #08162B; /* Deep Navy */
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E;
}

.page-fishing-games__btn-secondary:hover {
  background: #F2C14E;
  color: #08162B;
  border-color: #F2C14E;
  transform: translateY(-2px);
}

.page-fishing-games__btn-link {
  background: transparent;
  color: #F2C14E;
  border: 1px solid #F2C14E;
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 15px;
}

.page-fishing-games__btn-link:hover {
  background: #F2C14E;
  color: #08162B;
}

/* Card Styles */
.page-fishing-games__card {
  background: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F3F8FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

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

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

.page-fishing-games__card-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-fishing-games__card-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  flex-grow: 1;
}

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

/* Products Grid */
.page-fishing-games__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  gap: 30px;
  margin-top: 40px;
}

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

.page-fishing-games__step-card .page-fishing-games__card-title {
  color: #4FA8FF; /* Glow */
}

/* Promotions Grid */
.page-fishing-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Reasons List */
.page-fishing-games__reasons-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-fishing-games__list-item {
  font-size: 17px;
  color: #AFC4E8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-fishing-games__list-item strong {
  color: #F3F8FF;
}

.page-fishing-games__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* FAQ Section */
details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #10233F; /* Card BG */
  color: #F3F8FF;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Gold */
  font-weight: 600;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: rgba(43, 115, 246, 0.1); /* Lighter hover from button gradient */
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #F3F8FF;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: #08162B; /* Deep Navy */
  border-radius: 0 0 10px 10px;
  color: #AFC4E8;
  font-size: 16px;
  line-height: 1.7;
}

/* Final CTA Section */
.page-fishing-games__final-cta {
  padding: 80px 0;
}

.page-fishing-games__cta-content {
  max-width: 900px;
}

/* Responsive Design */

/* Common mobile styles */
@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 15px;
  }

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

  .page-fishing-games__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 25px;
  }

  .page-fishing-games__text-block {
    font-size: 15px;
    margin-bottom: 15px;
  }

  /* Hero Section Mobile */
  .page-fishing-games__hero-section {
    min-height: auto;
    padding-top: 10px; /* Ensure small top padding */
  }

  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    max-height: 400px; /* Limit height for mobile hero */
  }

  .page-fishing-games__hero-content {
    padding: 30px 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(28px, 8vw, 38px);
    margin-bottom: 15px;
  }

  .page-fishing-games__description {
    font-size: clamp(16px, 4vw, 18px);
    margin-bottom: 25px;
  }

  /* CTA Buttons Mobile */
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 16px;
  }
  
  .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: 0;
    padding-right: 0;
    flex-wrap: wrap !important; /* Ensure buttons wrap if not column */
    gap: 15px;
  }

  /* Card Styles Mobile */
  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__card-image {
    max-height: 150px;
  }

  .page-fishing-games__card-title {
    font-size: 18px;
  }

  .page-fishing-games__card-text {
    font-size: 14px;
  }

  /* Grids Mobile */
  .page-fishing-games__features-grid,
  .page-fishing-games__products-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promotions-grid {
    grid-template-columns: 1fr; /* Single column for most grids */
    gap: 20px;
    margin-top: 30px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  .page-fishing-games__products-grid {
    grid-template-columns: repeat(2, 1fr); /* Products grid: 2 columns on mobile */
  }

  /* Reasons List Mobile */
  .page-fishing-games__reasons-list {
    margin-top: 30px;
    padding-left: 0;
  }

  .page-fishing-games__list-item {
    font-size: 15px;
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .page-fishing-games__list-item::before {
    font-size: 18px;
  }

  /* FAQ Mobile */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px;
  }

  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 24px;
    margin-left: 10px;
  }

  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }

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

  .page-fishing-games__article-body,
  .page-fishing-games__article-figure,
  .page-fishing-games__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}