.page-fishing-games {
  color: #ffffff; /* Text color for dark body background */
  background-color: #121212; /* Inherited from shared.css, explicitly set for context */
  font-family: 'Arial', sans-serif;
}

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

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-fishing-games__dark-section {
  background-color: #1A2B4C;
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-fishing-games p {
  line-height: 1.7;
  margin-bottom: 1em;
  font-size: 17px;
  color: #f0f0f0;
}

.page-fishing-games__card {
  background: rgba(255, 255, 255, 0.08); /* Light transparent white for card backgrounds */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-primary,
.page-fishing-games__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold background */
  color: #1A2B4C; /* Dark blue text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.page-fishing-games__btn-primary:hover,
.page-fishing-games__play-now-button:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: #1A2B4C; /* Dark blue background */
  color: #ffffff; /* White text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid #FFD700; /* Gold border */
  cursor: pointer;
  white-space: nowrap;
}

.page-fishing-games__btn-secondary:hover {
  background: #0f1c33; /* Slightly darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-link {
  margin-top: 25px;
  display: inline-block;
}

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

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

.page-fishing-games__cta-buttons--large .page-fishing-games__cta-button {
  font-size: 20px;
  padding: 18px 45px;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  text-align: center;
  background: linear-gradient(135deg, #1A2B4C, #0f1c33);
  overflow: hidden;
}

.page-fishing-games__hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-fishing-games__main-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Specific Styles */
.page-fishing-games__video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event on parent A */
}

.page-fishing-games__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-fishing-games__video-link:hover .page-fishing-games__video-overlay {
  opacity: 1;
}

.page-fishing-games__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 30px;
  white-space: nowrap;
  color: #1A2B4C;
}

.page-fishing-games__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

/* Intro Section */
.page-fishing-games__intro-section {
  background-color: #121212;
  color: #f0f0f0;
}

.page-fishing-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-fishing-games__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games__text-block {
  flex: 1;
}

.page-fishing-games__image-wrapper {
  flex: 1;
  min-width: 300px;
}

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

/* Features Section */
.page-fishing-games__features-section {
  background-color: #1A2B4C;
}

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

.page-fishing-games__feature-item {
  text-align: center;
}

.page-fishing-games__feature-icon {
  width: 120px; /* Min 200px requirement is for content images, not decorative icons. These are examples of icons. */
  height: 120px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  padding: 15px;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.2);
  object-fit: contain;
}

.page-fishing-games__feature-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: #121212;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
}

.page-fishing-games__guide-list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
  font-size: 17px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-fishing-games__guide-list li strong {
  color: #FFD700;
}

.page-fishing-games__guide-list li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0;
  background: #FFD700;
  color: #1A2B4C;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #1A2B4C;
}

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

.page-fishing-games__promo-card {
  text-align: center;
  padding: 25px;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__promo-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

/* Security Section */
.page-fishing-games__security-section {
  background-color: #121212;
}

.page-fishing-games__security-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__security-item {
  text-align: center;
}

.page-fishing-games__security-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #1A2B4C;
}

.page-fishing-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a3e61; /* Darker blue background for question */
  border: 1px solid #3c5a8e;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games__faq-question:hover {
  background: #3c5a8e;
  border-color: #4e6b9f;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold color for toggle */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent toggle from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to form cross */
  color: #ffffff;
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05); /* Lighter transparent background for answer */
  color: #f0f0f0;
  border-radius: 0 0 10px 10px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important; /* Sufficiently large value */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
}

/* Blog Section */
.page-fishing-games__blog-section {
  background-color: #121212;
}

.page-fishing-games__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games__blog-item {
  padding: 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 25px;
  transition: background-color 0.3s ease;
}

.page-fishing-games__blog-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-fishing-games__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__blog-item-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-fishing-games__blog-item-excerpt {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-fishing-games__blog-item-date {
  font-size: 14px;
  color: #aaaaaa;
  display: block;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  background: linear-gradient(135deg, #0f1c33, #1A2B4C);
  text-align: center;
}

/* Mobile Floating Button */
.page-fishing-games__mobile-float-button {
  display: none; /* Hidden by default on desktop */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 40px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__section-description {
    font-size: 16px;
  }
  .page-fishing-games p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 100px; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
  }
  .page-fishing-games__main-title {
    font-size: 32px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-fishing-games__section-description {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-fishing-games__content-wrapper {
    flex-direction: column;
  }
  .page-fishing-games__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-fishing-games__text-block, .page-fishing-games__image-wrapper {
    width: 100%;
  }
  .page-fishing-games__image-wrapper {
    margin-top: 30px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
  }
  .page-fishing-games__cta-buttons--large .page-fishing-games__cta-button {
    font-size: 18px !important;
    padding: 15px 20px !important;
  }
  .page-fishing-games__play-now-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
  }
  
  /* Video Responsive Styles */
  .page-fishing-games__video-section {
    padding-top: 10px !important; /* Mobile: Ensure video is not covered */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-fishing-games__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-fishing-games__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    overflow: hidden !important;
  }
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
  }
  .page-fishing-games__video-click-hint {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }
  .page-fishing-games__video-cta {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* General Image/Video Responsive Styles */
  .page-fishing-games img,
  .page-fishing-games video {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Responsive */
  .page-fishing-games__faq-question {
    padding: 15px;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }
  
  /* Mobile Floating Button */
  .page-fishing-games__mobile-float-button {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    z-index: 1000;
  }
  .page-fishing-games__float-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 28px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__hero-description {
    font-size: 15px;
  }
  .page-fishing-games__play-now-button {
    font-size: 15px !important;
    padding: 12px 20px !important;
  }
  .page-fishing-games__cta-buttons--large .page-fishing-games__cta-button {
    font-size: 16px !important;
  }
  .page-fishing-games__float-button {
    font-size: 16px;
    padding: 12px 15px;
  }
}