/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-fishing-games__section--dark-bg {
  background-color: #0A4B2C; /* Deep Green for darker sections */
}

.page-fishing-games__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.page-fishing-games__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 70vh;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Ensure background color for hero */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px 40px;
  max-width: 900px;
  box-sizing: border-box;
}

.page-fishing-games__hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

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

/* CTA Buttons */
.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-fishing-games__cta-button--secondary {
  background: transparent;
  color: #2AD16F; /* Green from primary gradient */
  border: 2px solid #2AD16F;
}

.page-fishing-games__cta-button--secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-fishing-games__cta-button--small {
  padding: 10px 20px;
  font-size: 16px;
}

/* Card Styles */
.page-fishing-games__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__card .page-fishing-games__feature-title,
.page-fishing-games__card .page-fishing-games__game-title,
.page-fishing-games__card .page-fishing-games__step-title,
.page-fishing-games__card .page-fishing-games__strategy-title,
.page-fishing-games__card .page-fishing-games__promotion-title {
  color: #F2FFF6; /* Text Main */
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-fishing-games__card .page-fishing-games__feature-description,
.page-fishing-games__card .page-fishing-games__game-description,
.page-fishing-games__card .page-fishing-games__step-description,
.page-fishing-games__card .page-fishing-games__strategy-description,
.page-fishing-games__card .page-fishing-games__promotion-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

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

.page-fishing-games__feature-icon,
.page-fishing-games__game-image,
.page-fishing-games__strategy-image,
.page-fishing-games__promotion-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games__feature-icon {
  max-width: 200px;
  margin-bottom: 15px;
}

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

.page-fishing-games__step-card {
  text-align: left;
}

.page-fishing-games__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  font-size: 16px;
  color: #A7D9B8;
  text-align: left;
}

/* Video Section */
.page-fishing-games__video-container {
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-fishing-games__video-caption {
  text-align: center;
  padding: 15px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

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

.page-fishing-games__security-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fishing-games__security-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-fishing-games__security-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-fishing-games__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
}

.page-fishing-games__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

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

.page-fishing-games__faq-item summary:hover {
  background-color: rgba(17, 168, 78, 0.1);
}

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

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
  text-align: left;
}

/* General Image Styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

  .page-fishing-games__title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 20px;
  }

  .page-fishing-games__paragraph {
    font-size: 16px;
    text-align: left;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    min-height: auto;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .page-fishing-games__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }

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

  .page-fishing-games__cta-button,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-fishing-games__button-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .page-fishing-games__features-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__guide-steps,
  .page-fishing-games__strategy-cards,
  .page-fishing-games__promotion-cards,
  .page-fishing-games__security-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-icon {
    max-width: 150px;
  }

  /* Image responsive rules */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__feature-card,
  .page-fishing-games__game-card,
  .page-fishing-games__step-card,
  .page-fishing-games__strategy-card,
  .page-fishing-games__promotion-card,
  .page-fishing-games__security-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Video responsive rules */
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }

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

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

/* Ensure content area images maintain minimum size if not full width */
.page-fishing-games__feature-card img,
.page-fishing-games__game-card img,
.page-fishing-games__strategy-card img,
.page-fishing-games__promotion-card img {
  min-width: 200px;
  min-height: 200px;
}

/* Color Contrast Fixes (based on dark background) */
.page-fishing-games p,
.page-fishing-games li,
.page-fishing-games__faq-answer p {
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games__card {
  color: #F2FFF6; /* Text Main */
}

.page-fishing-games__faq-item summary {
  color: #F2FFF6; /* Text Main */
}