/* style/fishing-games.css */

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

.page-fishing-games {
  background-color: var(--k066-background);
  color: var(--k066-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;
}

/* Hero Section */
.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;
  box-sizing: border-box;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  position: relative;
  /* Keep image above text */
  order: 1;
}

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

.page-fishing-games__hero-content {
  order: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual flow */
  background: rgba(8, 22, 15, 0.9); /* Dark background with transparency */
  border-radius: 10px;
  z-index: 10;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--k066-gold-color);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-fishing-games__hero-description {
  font-size: 1.15rem;
  color: var(--k066-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: var(--k066-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 255, 100, 0.3);
}

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

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

.page-fishing-games__btn-secondary:hover {
  background-color: var(--k066-deep-green);
  color: var(--k066-text-main);
  transform: translateY(-3px);
}

/* Sections */
.page-fishing-games__intro-section,
.page-fishing-games__features-overview,
.page-fishing-games__how-to-play,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
  padding: 80px 0;
  box-sizing: border-box;
}

.page-fishing-games__dark-section {
  background-color: var(--k066-deep-green);
  color: var(--k066-text-main);
}

.page-fishing-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--k066-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-fishing-games__text-block {
  font-size: 1.05rem;
  color: var(--k066-text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

.page-fishing-games__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto 25px auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

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

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

/* Feature List */
.page-fishing-games__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-fishing-games__list-item {
  background-color: var(--k066-card-bg);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--k066-border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--k066-text-main);
}

.page-fishing-games__list-title {
  font-size: 1.6rem;
  color: var(--k066-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__list-item p {
  font-size: 1.05rem;
  color: var(--k066-text-secondary);
}

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

/* How-To-Play Steps */
.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-card {
  background-color: var(--k066-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--k066-border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--k066-text-main);
}

.page-fishing-games__step-number {
  width: 50px;
  height: 50px;
  background: var(--k066-button-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px auto;
  box-shadow: 0 2px 10px rgba(0, 255, 100, 0.4);
}

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

.page-fishing-games__step-card p {
  font-size: 1rem;
  color: var(--k066-text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games__step-link {
  color: var(--k066-secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-fishing-games__step-link:hover {
  color: var(--k066-gold-color);
  text-decoration: underline;
}

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

.page-fishing-games__strategy-item {
  text-align: center;
  color: var(--k066-text-main);
}

.page-fishing-games__strategy-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin-bottom: 25px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__strategy-title {
  font-size: 1.6rem;
  color: var(--k066-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__strategy-item p {
  font-size: 1.05rem;
  color: var(--k066-text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

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

/* Promotions Section */
.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__promo-item {
  background-color: var(--k066-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--k066-border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--k066-text-main);
}

.page-fishing-games__promo-title {
  font-size: 1.5rem;
  color: var(--k066-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__promo-item p {
  font-size: 1rem;
  color: var(--k066-text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games__promo-link {
  color: var(--k066-secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-fishing-games__promo-link:hover {
  color: var(--k066-gold-color);
  text-decoration: underline;
}

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

.page-fishing-games__faq-item {
  background-color: var(--k066-card-bg);
  border: 1px solid var(--k066-border-color);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--k066-text-main);
}

.page-fishing-games__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--k066-gold-color);
  background-color: var(--k066-deep-green);
  border-bottom: 1px solid var(--k066-divider-color);
}

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

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

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  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 30px;
  font-size: 1rem;
  color: var(--k066-text-secondary);
  background-color: var(--k066-card-bg);
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
  color: var(--k066-text-secondary);
}

.page-fishing-games__faq-answer a {
  color: var(--k066-secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding-bottom: 100px;
}

.page-fishing-games__conclusion-section .page-fishing-games__text-block {
  margin-bottom: 40px;
}

/* General Link Styling */
.page-fishing-games a {
  color: var(--k066-secondary-color);
  text-decoration: none;
}

.page-fishing-games a:hover {
  text-decoration: underline;
}

/* Images general responsive */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

  .page-fishing-games__hero-description {
    font-size: 1.05rem;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__features-overview,
  .page-fishing-games__how-to-play,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 60px 0;
  }
}

@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: -40px;
    padding: 25px 15px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-fishing-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-fishing-games__text-block {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__step-card,
  .page-fishing-games__promo-item,
  .page-fishing-games__faq-item {
    padding: 25px 20px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__list-title,
  .page-fishing-games__step-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__promo-title {
    font-size: 1.3rem;
  }

  .page-fishing-games__feature-description,
  .page-fishing-games__list-item p,
  .page-fishing-games__step-card p,
  .page-fishing-games__strategy-item p,
  .page-fishing-games__promo-item p,
  .page-fishing-games__faq-answer p {
    font-size: 0.95rem;
  }

  .page-fishing-games__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

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

  /* Force responsive images, videos, and containers */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games video,
  .page-fishing-games__video {
    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__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  
  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-content {
    margin-top: -30px;
    padding: 20px 10px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .page-fishing-games__hero-description {
    font-size: 0.9rem;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.3rem, 6.5vw, 2rem);
  }

  .page-fishing-games__text-block {
    font-size: 0.9rem;
  }

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

  .page-fishing-games__intro-section,
  .page-fishing-games__features-overview,
  .page-fishing-games__how-to-play,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__step-card,
  .page-fishing-games__promo-item,
  .page-fishing-games__faq-item {
    padding: 20px 15px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__list-title,
  .page-fishing-games__step-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__promo-title {
    font-size: 1.2rem;
  }

  .page-fishing-games__faq-item summary {
    padding: 12px 15px;
    font-size: 1rem;
  }

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