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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  box-sizing: border-box;
}

.page-fishing-games__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-fishing-games__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
  margin-top: 150px; /* Push content down to avoid overlapping video controls */
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Primary button highlight */
  border: 2px solid #2AD16F; /* Border */
}

.page-fishing-games__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.3);
}

/* General Sections */
.page-fishing-games__introduction-section,
.page-fishing-games__advantages-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__guide-section,
.page-fishing-games__tips-section,
.page-fishing-games__promotions-section,
.page-fishing-games__security-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  padding: 60px 20px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-fishing-games__introduction-section:last-of-type,
.page-fishing-games__cta-section {
    border-bottom: none;
}

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

.page-fishing-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-fishing-games__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

/* Grid Layout for Advantages and Tips */
.page-fishing-games__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__card,
.page-fishing-games__tip-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover,
.page-fishing-games__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__card-image,
.page-fishing-games__tip-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure it takes full width */
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
  object-fit: cover;
}

.page-fishing-games__card-title,
.page-fishing-games__tip-title,
.page-fishing-games__game-name,
.page-fishing-games__step-title,
.page-fishing-games__promo-title,
.page-fishing-games__security-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-fishing-games__card-text,
.page-fishing-games__tip-description,
.page-fishing-games__game-description,
.page-fishing-games__step-description,
.page-fishing-games__promo-description,
.page-fishing-games__security-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
  text-align: justify;
}

/* Lists */
.page-fishing-games__game-list,
.page-fishing-games__step-list,
.page-fishing-games__promo-list,
.page-fishing-games__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__game-item,
.page-fishing-games__step-item,
.page-fishing-games__promo-item,
.page-fishing-games__security-item {
  background-color: #0A4B2C; /* Deep Green */
  border-left: 5px solid #2AD16F; /* Highlight */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-fishing-games__game-item:hover,
.page-fishing-games__step-item:hover,
.page-fishing-games__promo-item:hover,
.page-fishing-games__security-item:hover {
  transform: translateX(5px);
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 30px;
}

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

.page-fishing-games__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #13994A; /* Darker green on hover */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2AD16F; /* Primary highlight */
  margin-left: 15px;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-fishing-games__faq-answer {
  padding: 15px 25px;
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
  text-align: justify;
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-content {
    margin-top: 80px;
    padding: 15px;
  }

  .page-fishing-games__main-title {
    font-size: 2.2rem;
  }

  .page-fishing-games__description {
    font-size: 1rem;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100% !important; /* Force full width on mobile */
    max-width: 100% !important;
  }

  .page-fishing-games__introduction-section,
  .page-fishing-games__advantages-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__security-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__cta-section {
    padding: 40px 15px;
  }

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

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

  .page-fishing-games__grid-layout {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
  }

  .page-fishing-games__card-title,
  .page-fishing-games__tip-title,
  .page-fishing-games__game-name,
  .page-fishing-games__step-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__security-title {
    font-size: 1.2rem;
  }

  .page-fishing-games__card-text,
  .page-fishing-games__tip-description,
  .page-fishing-games__game-description,
  .page-fishing-games__step-description,
  .page-fishing-games__promo-description,
  .page-fishing-games__security-description {
    font-size: 0.9rem;
  }

  .page-fishing-games__game-item,
  .page-fishing-games__step-item,
  .page-fishing-games__promo-item,
  .page-fishing-games__security-item {
    padding: 15px;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-fishing-games__faq-answer {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Mobile image and video responsive rules */
  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__video-wrapper,
  .page-fishing-games__video-container,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Padding for containers on mobile */
  .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body already has padding-top */
  }

  /* Ensure button containers also adapt */
  .page-fishing-games__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-fishing-games__cta-buttons a[class*="btn"] {
    padding-left: 0 !important; /* Reset padding from general button rule if needed */
    padding-right: 0 !important;
  }
}

/* Color Contrast Check for body background #08160F (dark) */
.page-fishing-games {
  color: #F2FFF6; /* Text Main - good contrast with dark background */
}

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3,
.page-fishing-games h4,
.page-fishing-games h5,
.page-fishing-games h6 {
  color: #F2C14E; /* Gold - good contrast with dark background */
}

.page-fishing-games__text-block,
.page-fishing-games__card-text,
.page-fishing-games__tip-description,
.page-fishing-games__game-description,
.page-fishing-games__step-description,
.page-fishing-games__promo-description,
.page-fishing-games__security-description,
.page-fishing-games__description,
.page-fishing-games__faq-answer {
  color: #A7D9B8; /* Text Secondary - good contrast with dark background */
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Good contrast */
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Good contrast with dark background */
  border: 2px solid #2AD16F;
}
.page-fishing-games__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Good contrast */
}

.page-fishing-games__card,
.page-fishing-games__tip-card {
  background-color: #11271B; /* Darker background, text is light */
  color: #F2FFF6;
}

.page-fishing-games__game-item,
.page-fishing-games__step-item,
.page-fishing-games__promo-item,
.page-fishing-games__security-item {
  background-color: #0A4B2C; /* Deep Green, text is light */
  color: #F2FFF6;
}

.page-fishing-games__faq-question {
  background-color: #0A4B2C; /* Deep Green, text is light */
  color: #F2FFF6;
}