/* style/fishing-games.css */

:root {
  --page-fishing-games-primary-color: #26A9E0;
  --page-fishing-games-secondary-color: #FFFFFF;
  --page-fishing-games-text-dark: #333333;
  --page-fishing-games-text-light: #ffffff;
  --page-fishing-games-login-color: #EA7C07;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--page-fishing-games-text-light); /* Default to light text for dark body background */
  background-color: var(--black-color, #000000); /* Assuming shared.css defines --black-color as dark */
}

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

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  padding-top: calc(var(--header-offset, 120px) + 80px); /* Ensure content is below header */
  text-align: center;
  background: linear-gradient(135deg, var(--page-fishing-games-primary-color) 0%, #007bff 100%);
  color: var(--page-fishing-games-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.page-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-fishing-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__subsection-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__text-block p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__text-block strong {
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games__list li {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__about-section,
.page-fishing-games__how-to-play,
.page-fishing-games__promotions,
.page-fishing-games__safety-security,
.page-fishing-games__cta-section {
  padding: 80px 0;
}

.page-fishing-games__popular-games,
.page-fishing-games__tips-strategies,
.page-fishing-games__app-download,
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-text-light);
}

.page-fishing-games__popular-games .page-fishing-games__section-title,
.page-fishing-games__tips-strategies .page-fishing-games__section-title,
.page-fishing-games__app-download .page-fishing-games__section-title,
.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-text-light);
}

.page-fishing-games__popular-games .page-fishing-games__section-description,
.page-fishing-games__tips-strategies .page-fishing-games__section-description,
.page-fishing-games__app-download .page-fishing-games__section-description,
.page-fishing-games__faq-section .page-fishing-games__section-description {
  color: var(--page-fishing-games-text-light);
}

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

.page-fishing-games__game-card,
.page-fishing-games__strategy-card,
.page-fishing-games__promo-card {
  background-color: var(--page-fishing-games-secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--page-fishing-games-text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover,
.page-fishing-games__strategy-card:hover,
.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-fishing-games__card-title a {
  color: var(--page-fishing-games-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__card-title a:hover {
  text-decoration: underline;
}

.page-fishing-games__card-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

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

.page-fishing-games__btn-primary:hover {
  background-color: #007bff;
  border-color: #007bff;
}

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

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

.page-fishing-games__btn-small {
  padding: 8px 18px;
  font-size: 0.95em;
}

.page-fishing-games__btn-large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-fishing-games__ordered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-fishing-games__ordered-list li {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__list-heading {
  font-size: 1.4em;
  color: var(--page-fishing-games-primary-color);
  margin-top: 10px;
  margin-bottom: 5px;
}

.page-fishing-games__app-download .page-fishing-games__container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.page-fishing-games__app-content {
  flex: 1;
  min-width: 300px;
  color: var(--page-fishing-games-text-light);
}

.page-fishing-games__app-content .page-fishing-games__section-title {
  text-align: left;
  color: var(--page-fishing-games-text-light);
}

.page-fishing-games__app-content .page-fishing-games__section-description {
  text-align: left;
  color: var(--page-fishing-games-text-light);
}

.page-fishing-games__app-content .page-fishing-games__list li {
  color: var(--page-fishing-games-text-light);
}

.page-fishing-games__app-image-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: center;
}

.page-fishing-games__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-fishing-games-text-light);
}

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

.page-fishing-games__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--page-fishing-games-text-light);
}

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

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.6;
  color: var(--page-fishing-games-text-light);
}

.page-fishing-games__cta-section {
  text-align: center;
  background-color: var(--page-fishing-games-secondary-color);
  color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
  color: var(--page-fishing-games-primary-color);
}

.page-fishing-games__cta-section .page-fishing-games__section-description {
  color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__text-center {
  text-align: center;
}

.page-fishing-games__flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__dark-bg {
  background-color: var(--page-fishing-games-primary-color);
  color: var(--page-fishing-games-text-light);
}

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

.page-fishing-games__light-bg .page-fishing-games__list li {
  color: var(--page-fishing-games-text-dark);
}

.page-fishing-games__light-bg .page-fishing-games__text-block p {
  color: var(--page-fishing-games-text-dark);
}

/* Responsive styles */

/* All images basic responsive styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All video basic responsive styles */
.page-fishing-games video,
.page-fishing-games__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Video container basic responsive styles */
.page-fishing-games__video-section,
.page-fishing-games__video-container,
.page-fishing-games__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* All buttons basic responsive styles */
.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%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button container basic responsive styles */
.page-fishing-games__hero-buttons,
.page-fishing-games__button-group,
.page-fishing-games__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 992px) {
  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__subsection-title {
    font-size: 1.6em;
  }
  .page-fishing-games__app-download .page-fishing-games__container {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__app-content .page-fishing-games__section-title,
  .page-fishing-games__app-content .page-fishing-games__section-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 60px 0;
    padding-top: calc(var(--header-offset, 120px) + 60px);
  }
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100%;
    padding: 12px 20px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__subsection-title {
    font-size: 1.4em;
  }
  .page-fishing-games__about-section,
  .page-fishing-games__how-to-play,
  .page-fishing-games__promotions,
  .page-fishing-games__safety-security,
  .page-fishing-games__cta-section,
  .page-fishing-games__popular-games,
  .page-fishing-games__tips-strategies,
  .page-fishing-games__app-download,
  .page-fishing-games__faq-section {
    padding: 50px 0;
  }
  .page-fishing-games__text-block p,
  .page-fishing-games__list li,
  .page-fishing-games__ordered-list li {
    font-size: 0.95em;
  }
  .page-fishing-games__game-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 15px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px;
  }

  /* Mobile responsive for images, videos, and buttons - IMPORTANT */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .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__hero-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;
    overflow-x: hidden !important;
  }
  .page-fishing-games__hero-buttons {
    flex-direction: column !important;
  }
  .page-fishing-games__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}