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

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-secondary); /* Default text color for general page content */
  background-color: var(--background); /* Overall page 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: var(--text-main); /* Headings use main text color */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: var(--background); /* Ensure hero section background */
  overflow: hidden; /* To contain image */
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  max-width: 1920px; /* Max width for hero image */
  object-fit: cover;
  display: block;
  margin-bottom: 30px; /* Space between image and content */
  border-radius: 15px;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--text-main); /* Main title color */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-fishing-games__description {
  font-size: 1.1em;
  color: var(--text-secondary); /* Secondary text color */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* Video Section */
.page-fishing-games__video-section {
  padding: 60px 20px;
  background-color: var(--card-bg); /* Darker background for video */
  text-align: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
}

.page-fishing-games__video-container {
  max-width: 1000px;
  width: 100%; /* Important for desktop flex container */
  margin: 0 auto;
  box-sizing: border-box;
}

.page-fishing-games__section-title {
  font-size: 2em;
  color: var(--text-main);
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

.page-fishing-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__video-wrapper a {
  display: block; /* Make the entire wrapper clickable */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
}

.page-fishing-games__video-caption {
  font-size: 0.95em;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Area */
.page-fishing-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: var(--background);
  color: var(--text-secondary);
}

.page-fishing-games__about-section,
.page-fishing-games__gameplay-section,
.page-fishing-games__features-section,
.page-fishing-games__strategy-section,
.page-fishing-games__promotions-section,
.page-fishing-games__security-section,
.page-fishing-games__faq-section,
.page-fishing-games__cta-section {
  padding-bottom: 40px;
}

.page-fishing-games__sub-title {
  font-size: 1.6em;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-fishing-games__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-fishing-games__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Use primary color for checkmark */
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-fishing-games__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

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

.page-fishing-games__faq-item {
  background-color: var(--card-bg); /* FAQ item background */
  border: 1px solid var(--divider); /* Border color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-item summary {
  list-style: none; /* Hide default marker */
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main);
  background-color: var(--card-bg);
  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: var(--deep-green); /* Slightly darker on hover */
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  padding-right: 10px;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-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: 0 20px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-fishing-games__faq-answer p {
  margin: 0;
}

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

.page-fishing-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text on gradient button */
}

.page-fishing-games__btn-secondary {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 10px 15px 40px;
  }
  .page-fishing-games__main-title {
    font-size: 1.8em;
  }
  .page-fishing-games__description {
    font-size: 1em;
  }
  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games__video-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles header offset */
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__content-area {
    padding: 40px 15px;
  }
  .page-fishing-games__sub-title {
    font-size: 1.4em;
  }
  .page-fishing-games__text-block,
  .page-fishing-games__list-item,
  .page-fishing-games__faq-answer {
    font-size: 0.95em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .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-left: 15px;
    padding-right: 15px;
  }
  /* Image and video responsive rules */
  .page-fishing-games img {
    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;
  }
}