/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is #0d0d0d from shared.css */
}

.page-fishing-games__section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure content starts below fixed header */
.page-fishing-games__section--intro {
  padding-top: 120px; /* Desktop spacing for fixed header */
}

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

.page-fishing-games__heading-primary {
  font-size: 3.2em;
  color: #FFCC00; /* Auxiliary color for primary heading */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.page-fishing-games__heading-secondary {
  font-size: 2.5em;
  color: #FFCC00; /* Auxiliary color for secondary headings */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-fishing-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-fishing-games__link {
  color: #FFCC00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Buttons */
.page-fishing-games__cta-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-fishing-games__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-fishing-games__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-fishing-games__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border-color: #FFCC00;
}

.page-fishing-games__btn--secondary:hover {
  background-color: #004488;
  border-color: #FFCC00;
}

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

.page-fishing-games__btn--text {
  background: none;
  border: none;
  color: #FFCC00;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-fishing-games__btn--text:hover {
  color: #fff;
}

/* HERO Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: #003366;
}

.page-fishing-games__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-fishing-games__hero-image {
  width: 100%;
  margin: 0;
}

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

/* Products Section */
.page-fishing-games__products-section {
  width: 100%;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.05); /* Light transparent background for cards */
}

.page-fishing-games__products-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr; /* Desktop: 4 small cards, 2 large cards */
  gap: 20px;
}

.page-fishing-games__products-grid {
  display: grid;
  gap: 20px;
}

.page-fishing-games__products-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.page-fishing-games__products-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-fishing-games__product-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08); /* Slightly lighter transparent background */
  border: 3px solid #ffd700; /* Gold border */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-fishing-games__product-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.page-fishing-games__product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Quick Access Section */
.page-fishing-games__section--quick-access {
  background-color: #003366;
}

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

.page-fishing-games__quick-link-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #f0f0f0;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games__quick-link-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.page-fishing-games__quick-link-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #FFCC00;
}

.page-fishing-games__quick-link-desc {
  font-size: 0.95em;
  color: #cccccc;
}

.page-fishing-games__paragraph--note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #aaaaaa;
}

/* Games Section */
.page-fishing-games__section--games {
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-fishing-games__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  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;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-fishing-games__game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fishing-games__game-title {
  font-size: 1.5em;
  color: #FFCC00;
  padding: 15px 20px 10px;
  margin: 0;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games__game-card .page-fishing-games__btn {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* Promotions Section */
.page-fishing-games__section--promotions {
  background-color: #003366;
}

.page-fishing-games__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-fishing-games__promotion-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFCC00;
}

.page-fishing-games__promotion-title {
  font-size: 1.6em;
  color: #FFCC00;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-fishing-games__promotion-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Security & Support Section */
.page-fishing-games__section--security-support {
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-fishing-games__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__feature-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-fishing-games__section--faq {
  background-color: #003366;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #f0f0f0;
  pointer-events: none;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFCC00;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #fff;
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #cccccc;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 5px 5px;
}

/* Blog Section */
.page-fishing-games__section--blog {
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-fishing-games__blog-card {
  background-color: rgba(255, 255, 255, 0.08);
  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;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-fishing-games__blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fishing-games__blog-title {
  font-size: 1.5em;
  color: #FFCC00;
  padding: 15px 20px 10px;
  margin: 0;
}

.page-fishing-games__blog-link {
  color: #FFCC00;
  text-decoration: none;
}

.page-fishing-games__blog-link:hover {
  text-decoration: underline;
}

.page-fishing-games__blog-excerpt {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games__blog-card .page-fishing-games__btn {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__heading-primary {
    font-size: 2.8em;
  }
  .page-fishing-games__heading-secondary {
    font-size: 2em;
  }
  .page-fishing-games__products-container {
    grid-template-columns: 1fr; /* Mobile: two grids stack vertically */
  }
  .page-fishing-games__products-grid--small {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid for small cards */
  }
  .page-fishing-games__products-grid--large {
    grid-template-columns: repeat(2, 1fr); /* 2 large cards side-by-side */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 15px;
  }
  .page-fishing-games__section--intro {
    padding-top: 100px; /* Mobile spacing for fixed header */
  }
  .page-fishing-games__container {
    padding: 0 10px;
  }
  .page-fishing-games__heading-primary {
    font-size: 2.2em;
    margin-bottom: 20px;
  }
  .page-fishing-games__heading-secondary {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-fishing-games__paragraph {
    font-size: 1em;
  }
  .page-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  /* HERO Section */
  .page-fishing-games__hero-section {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .page-fishing-games__hero-image img {
    width: 100% !important;
    height: auto !important;
  }

  /* Products Section Mobile */
  .page-fishing-games__products-section {
    padding: 40px 15px;
  }
  .page-fishing-games__products-container {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 15px;
  }
  .page-fishing-games__products-grid--small {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-fishing-games__products-grid--small .page-fishing-games__product-card {
    aspect-ratio: 1 / 1; /* Square */
  }
  .page-fishing-games__products-grid--small .page-fishing-games__product-card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1; /* Square */
  }
  .page-fishing-games__products-grid--large {
    grid-template-columns: 1fr; /* Each large card takes full width */
    gap: 15px;
  }
  .page-fishing-games__products-grid--large .page-fishing-games__product-card {
    aspect-ratio: 1 / 1; /* Square */
  }
  .page-fishing-games__products-grid--large .page-fishing-games__product-card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1; /* Square */
  }

  /* All images responsive fix */
  .page-fishing-games img {
    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__product-card,
  .page-fishing-games__quick-link-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promotion-item,
  .page-fishing-games__feature-card,
  .page-fishing-games__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Mobile */
  .page-fishing-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-fishing-games__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__heading-primary {
    font-size: 1.8em;
  }
  .page-fishing-games__heading-secondary {
    font-size: 1.5em;
  }
  .page-fishing-games__link-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__promotion-list,
  .page-fishing-games__feature-grid,
  .page-fishing-games__blog-grid {
    grid-template-columns: 1fr;
  }
}