/* style/fishing-games.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a;
  --bg-light: #f5f5f5;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-fishing-games {
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherits from body, but ensures consistency */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.page-fishing-games__section-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__sub-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-fishing-games__text-block p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 1em;
  color: var(--text-light);
}

/* Specific background/text colors based on body background */
.page-fishing-games__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-fishing-games__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-fishing-games__light-bg .page-fishing-games__section-description,
.page-fishing-games__light-bg .page-fishing-games__text-block p,
.page-fishing-games__light-bg .page-fishing-games__guide-item p,
.page-fishing-games__light-bg .page-fishing-games__guide-item li,
.page-fishing-games__light-bg .page-fishing-games__support-list li,
.page-fishing-games__light-bg .page-fishing-games__faq-answer p {
  color: var(--text-dark);
}

.page-fishing-games__light-bg .page-fishing-games__faq-question {
  color: var(--text-dark);
}

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

.page-fishing-games__light-bg .page-fishing-games__btn-secondary:hover {
  background: darken(var(--primary-color), 10%);
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
  background: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

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

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

.page-fishing-games__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  min-width: 200px;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  color: var(--text-light);
  padding-top: var(--header-offset, 120px); /* Desktop padding-top */
}

.page-fishing-games__hero-video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}

.page-fishing-games__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page-fishing-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-fishing-games__hero-title {
  font-size: 4em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-fishing-games__hero-actions .page-fishing-games__btn-primary,
.page-fishing-games__hero-actions .page-fishing-games__btn-secondary {
  margin: 0 10px;
}

/* Intro Section */
.page-fishing-games__intro-section .page-fishing-games__text-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

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

.page-fishing-games__game-card {
  background: var(--card-bg-dark);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-light);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__game-card .page-fishing-games__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__game-card .page-fishing-games__card-text {
  font-size: 0.95em;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-fishing-games__guide-item {
  background: var(--card-bg-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-fishing-games__guide-item .page-fishing-games__guide-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__guide-item p {
  font-size: 1em;
  margin-bottom: 10px;
}

.page-fishing-games__guide-item ul {
  list-style: disc;
  margin-left: 20px;
  font-size: 1em;
}

.page-fishing-games__guide-item li {
  margin-bottom: 5px;
}

.page-fishing-games__guide-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games__guide-item a:hover {
  text-decoration: underline;
}

/* Strategy Section */
.page-fishing-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__strategy-card {
  background: var(--card-bg-dark);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-fishing-games__strategy-card .page-fishing-games__card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__strategy-list {
  list-style: disc;
  margin-left: 20px;
  font-size: 1.05em;
}

.page-fishing-games__strategy-list li {
  margin-bottom: 10px;
}

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

.page-fishing-games__promo-card {
  background: var(--card-bg-light);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-dark);
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__promo-card .page-fishing-games__card-text {
  font-size: 0.95em;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-fishing-games__feature-item {
  background: var(--card-bg-dark);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__feature-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__feature-text {
  font-size: 1em;
  color: var(--text-light);
}

/* Support Section */
.page-fishing-games__support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
  text-align: left;
}

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

.page-fishing-games__support-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-fishing-games__support-list li strong {
  color: var(--primary-color);
}

/* FAQ Area */
.page-fishing-games__faq-area {
  background: var(--card-bg-light);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.page-fishing-games__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-dark);
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  color: var(--primary-color);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-dark);
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
  font-size: 1em;
  color: var(--text-dark);
}

.page-fishing-games__faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section .page-fishing-games__text-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Global Image Styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
  /* No filter property to change image color */
}

/* Global Video Styles */
.page-fishing-games video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 3.5em;
  }

  .page-fishing-games__section-title {
    font-size: 2.2em;
  }

  .page-fishing-games__hero-section {
    min-height: 600px;
  }
}

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

  .page-fishing-games__container {
    padding: 20px 15px;
  }

  .page-fishing-games__section {
    padding: 60px 0;
  }

  .page-fishing-games__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
  }

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

  .page-fishing-games__hero-actions .page-fishing-games__btn-primary,
  .page-fishing-games__hero-actions .page-fishing-games__btn-secondary {
    margin: 0;
    width: 100%;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games__section-description {
    font-size: 1em;
  }

  .page-fishing-games__game-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__security-features,
  .page-fishing-games__support-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__strategy-card,
  .page-fishing-games__feature-item,
  .page-fishing-games__guide-item,
  .page-fishing-games__faq-area {
    padding: 15px;
  }

  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    height: 180px;
  }

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

  .page-fishing-games__cta-container .page-fishing-games__btn-primary,
  .page-fishing-games__cta-container .page-fishing-games__btn-secondary {
    width: 100%;
  }

  /* Mobile responsive for images, videos, and containers */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games video,
  .page-fishing-games__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__game-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__security-features,
  .page-fishing-games__support-content,
  .page-fishing-games__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* Buttons mobile specific */
  .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;
  }

  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}