/* style/fishing-games.css */

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

.page-fishing-games {
  background-color: var(--we88-background);
  color: var(--we88-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  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-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to pull content slightly over the image, but not covering */
  background: rgba(8, 22, 15, 0.7); /* Use background color with transparency */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__main-title {
  color: var(--we88-gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  /* No fixed font-size, rely on clamp if needed, otherwise browser default for h1 */
}

.page-fishing-games__tagline {
  color: var(--we88-text-main);
  font-size: 1.1em;
  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 {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: var(--we88-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--we88-glow-color);
  border: 2px solid var(--we88-glow-color);
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-2px);
}

.page-fishing-games__section-title {
  color: var(--we88-gold-color);
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--we88-glow-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games__sub-title {
  color: var(--we88-glow-color);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-fishing-games__text-block {
  color: var(--we88-text-secondary);
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-fishing-games__dark-section {
  background-color: var(--we88-deep-green);
  padding: 60px 0;
}

.page-fishing-games__intro-section {
  padding: 60px 0;
}

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

.page-fishing-games__feature-card,
.page-fishing-games__strategy-card,
.page-fishing-games__promo-card {
  background-color: var(--we88-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--we88-border-color);
}

.page-fishing-games__feature-card:hover,
.page-fishing-games__strategy-card:hover,
.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__feature-image,
.page-fishing-games__strategy-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  color: var(--we88-gold-color);
  font-size: 1.5em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__card-text {
  color: var(--we88-text-secondary);
  font-size: 0.95em;
  padding: 0 15px;
}

.page-fishing-games__how-to-play-section {
  padding: 60px 0;
}

.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-fishing-games__step-item {
  background-color: var(--we88-card-bg);
  border-left: 5px solid var(--we88-glow-color);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  color: var(--we88-gold-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

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

.page-fishing-games__game-elements-section {
  padding: 60px 0;
}

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

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

.page-fishing-games__promotions-section {
  padding: 60px 0;
}

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

.page-fishing-games__promo-card .page-fishing-games__btn-secondary {
  margin-top: 20px;
  display: inline-block;
}

.page-fishing-games__register-login-section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games__faq-section {
  padding: 60px 0;
}

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--we88-gold-color);
  font-weight: bold;
  font-size: 1.2em;
  background-color: var(--we88-deep-green);
  border-bottom: 1px solid var(--we88-divider-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  border-bottom: 1px solid var(--we88-border-color);
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--we88-glow-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: 20px;
  color: var(--we88-text-secondary);
  font-size: 1em;
  line-height: 1.7;
}

.page-fishing-games__faq-answer a {
  color: var(--we88-glow-color);
  text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 2.8em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

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

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

  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

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

  .page-fishing-games__main-title {
    font-size: 2em;
  }

  .page-fishing-games__tagline {
    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% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-fishing-games__sub-title {
    font-size: 1.5em;
  }

  .page-fishing-games__text-block {
    font-size: 1em;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-cards,
  .page-fishing-games__grid-2-col {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-fishing-games__feature-image,
  .page-fishing-games__strategy-image {
    height: 180px;
  }

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

  .page-fishing-games__card {
    padding: 15px;
  }

  .page-fishing-games__step-item {
    padding: 20px 25px;
  }

  .page-fishing-games__step-title {
    font-size: 1.4em;
  }

  .page-fishing-games__content-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__hero-image {
    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,
  .page-fishing-games__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__why-choose-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__game-elements-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__register-login-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

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

/* Ensure no filter on images */
.page-fishing-games img {
  filter: none !important;
}