.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from body, but explicitly set for clarity */
}

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

/* Hero Video Section */
.page-fishing-games__hero-video-section {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Explicitly set for video section */
}

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

.page-fishing-games__video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

/* General Section Styles */
.page-fishing-games__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.3;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-fishing-games__dark-bg {
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
  color: #ffffff; /* White title on dark background */
}

.page-fishing-games__dark-bg .page-fishing-games__section-description {
  color: #f0f0f0;
}

.page-fishing-games__light-bg {
  background-color: #ffffff; /* Light background */
  color: #333333;
  padding: 80px 0;
}

.page-fishing-games__light-bg .page-fishing-games__section-title {
  color: #26A9E0; /* Brand color title on light background */
}

.page-fishing-games__light-bg .page-fishing-games__section-description {
  color: #555555;
}

/* Buttons */
.page-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games__btn-play {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-fishing-games__btn-play:hover {
  background-color: #c46606;
  border-color: #c46606;
}

.page-fishing-games__btn-details {
  background-color: #f0f0f0;
  color: #333333;
  border: 2px solid #f0f0f0;
}

.page-fishing-games__btn-details:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

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

.page-fishing-games__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__text-link:hover {
  text-decoration: underline;
}

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

.page-fishing-games__feature-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-10px);
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-fishing-games__feature-text {
  color: #f0f0f0;
}

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

.page-fishing-games__game-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  color: #333333;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-title {
  font-size: 1.8em;
  margin: 20px 0 10px;
  color: #26A9E0;
}

.page-fishing-games__game-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games__game-link:hover {
  text-decoration: underline;
}

.page-fishing-games__game-description {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #555555;
}

/* How to Play */
.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__step-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
}

.page-fishing-games__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #26A9E0;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-fishing-games__step-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-fishing-games__step-text {
  color: #f0f0f0;
}

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

.page-fishing-games__promotion-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  color: #333333;
}

.page-fishing-games__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__promotion-title {
  font-size: 1.8em;
  margin: 20px 0 10px;
  color: #26A9E0;
}

.page-fishing-games__promotion-text {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #555555;
}

.page-fishing-games__mt-40 {
  margin-top: 40px;
}

/* Mobile Section */
.page-fishing-games__mobile-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-fishing-games__mobile-content {
  flex: 1;
}

.page-fishing-games__mobile-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__mobile-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-fishing-games__mobile-benefits li img {
  
  
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 0; /* Ensure no border-radius for small icons */
}

.page-fishing-games__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-fishing-games__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__mt-20 {
  margin-top: 20px;
}

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

.page-fishing-games__security-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-fishing-games__security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-fishing-games__security-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-fishing-games__security-text {
  color: #555555;
}

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

.page-fishing-games__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-fishing-games__faq-qtext {
  color: #ffffff;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.1em;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Final CTA Section */
.page-fishing-games__final-cta-section {
  padding: 100px 0;
  text-align: center;
}

.page-fishing-games__cta-content {
  max-width: 900px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 3em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__mobile-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-fishing-games__mobile-image-wrapper {
    order: -1; /* Image above content on mobile */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-video-section {
    height: 60vh;
    padding-top: var(--header-offset, 120px) !important; /* Mobile video section padding */
  }
  .page-fishing-games__hero-content {
    padding: 20px;
  }
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn {
    padding: 12px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-play,
  .page-fishing-games__btn-details {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-fishing-games__dark-bg, .page-fishing-games__light-bg {
    padding: 60px 0;
  }
  .page-fishing-games__feature-icon, .page-fishing-games__security-icon {
    width: 80px;
    height: 80px;
  }
  .page-fishing-games__game-image, .page-fishing-games__promotion-image {
    height: 180px;
  }
  .page-fishing-games__game-title, .page-fishing-games__promotion-title {
    font-size: 1.5em;
  }
  .page-fishing-games__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95em;
  }

  /* Mobile image/video/container responsive */
  .page-fishing-games img,
  .page-fishing-games video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__container,
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__mobile-flex,
  .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 !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  .page-fishing-games__cta-buttons-center {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__mobile-benefits li img {
    
    
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__hero-video-section {
    height: 50vh;
  }
  .page-fishing-games__feature-item, .page-fishing-games__game-card, .page-fishing-games__promotion-card, .page-fishing-games__security-item {
    padding: 20px;
  }
  .page-fishing-games__step-item {
    padding-left: 60px;
  }
  .page-fishing-games__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
    left: 15px;
  }
  .page-fishing-games__step-title {
    font-size: 1.3em;
  }
  .page-fishing-games__faq-item summary {
    font-size: 0.95em;
  }
}