/* style/fishing-games.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-btn-color: #C30808;
  --login-btn-color: #C30808;
  --background-color: #FFFFFF;
  --login-register-font-color: #FFFF00;
  --dark-text-color: #333333;
  --light-text-color: #ffffff;
}

.page-fishing-games {
  color: var(--light-text-color); /* Body background is dark, so light text */
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #000000; /* Dark background for hero */
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for the image */
  margin-bottom: 30px;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--light-text-color);
}

.page-fishing-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--light-text-color);
  margin-bottom: 20px;
}

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

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-register {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

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

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

.page-fishing-games__btn-register {
  background-color: var(--register-btn-color);
  color: var(--login-register-font-color);
  border: 2px solid var(--register-btn-color);
}

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

.page-fishing-games__section {
  padding: 80px 20px;
  text-align: center;
}

.page-fishing-games__dark-bg {
  background-color: #000000; /* Body background color */
  color: var(--light-text-color);
}

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

.page-fishing-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-fishing-games__dark-text {
  color: var(--dark-text-color);
}

.page-fishing-games__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-fishing-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.page-fishing-games__text-block {
  margin-bottom: 40px;
}

.page-fishing-games p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: inherit; /* Inherit from parent section */
}

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

.page-fishing-games__list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1em;
  line-height: 1.7;
  color: inherit; /* Inherit from parent section */
}

.page-fishing-games__list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-fishing-games__list-item-title {
  color: var(--primary-color);
}

.page-fishing-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  max-width: 800px;
}

.page-fishing-games__game-showcase {
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

.page-fishing-games__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games__game-card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: var(--dark-text-color);
}

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

.page-fishing-games__game-card-title {
  font-size: 1.5em;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 10px;
}

.page-fishing-games__game-card-text {
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games__game-card-button {
  margin: 0 20px 20px;
  text-align: center;
  width: calc(100% - 40px);
}

.page-fishing-games__promotions {
  background-color: var(--background-color);
}

.page-fishing-games__promotion-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games__promotion-card {
  background-color: var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: var(--light-text-color);
}

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

.page-fishing-games__promotion-card-title {
  font-size: 1.6em;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 10px;
}

.page-fishing-games__promotion-card-text {
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-fishing-games__promo-card-button {
  margin: 0 20px 20px;
  text-align: center;
  width: calc(100% - 40px);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-fishing-games__promo-card-button:hover {
  background-color: darken(var(--secondary-color), 10%);
  border-color: darken(var(--secondary-color), 10%);
}

.page-fishing-games__tips-strategies {
  background-color: var(--background-color);
}

.page-fishing-games__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games__tip-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--dark-text-color);
}

.page-fishing-games__tip-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__tip-text {
  font-size: 0.95em;
  line-height: 1.6;
}

.page-fishing-games__how-to-play {
  background-color: #000000; /* Dark background */
}

.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games__step-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: var(--dark-text-color);
}

.page-fishing-games__step-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__step-text {
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__faq-section {
  background-color: var(--background-color);
}

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

.page-fishing-games__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--dark-text-color);
}

.page-fishing-games__faq-item summary {
  display: block;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  list-style: none;
  user-select: none;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--dark-text-color);
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--dark-text-color);
}

.page-fishing-games__conclusion {
  background-color: #017439;
  color: var(--light-text-color);
}

.page-fishing-games__conclusion .page-fishing-games__section-title {
  color: var(--light-text-color);
}

.page-fishing-games__conclusion .page-fishing-games__description {
  color: var(--light-text-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  background-color: #000000; /* Dark background */
}

.page-fishing-games__video-container {
  width: 100%; /* Important for desktop */
  max-width: 1000px; /* Max width for the video */
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__video-link {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.page-fishing-games__video {
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__video-description {
  margin-top: 20px;
  font-size: 1.1em;
  color: var(--light-text-color);
  max-width: 800px;
}

.highlight-text {
  color: var(--login-register-font-color); /* Use a distinct color for highlights */
  font-weight: bold;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 2.8em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section,
  .page-fishing-games__section {
    padding: 40px 15px;
  }

  .page-fishing-games__hero-content,
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promotion-cards-grid,
  .page-fishing-games__tips-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__faq-list,
  .page-fishing-games__content-area,
  .page-fishing-games__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__main-title {
    font-size: 2em;
  }

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

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

  .page-fishing-games__sub-title {
    font-size: 1.3em;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-register {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games video,
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__video-section {
    padding-top: 10px !important;
  }

  .page-fishing-games__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }

  .page-fishing-games__game-card-image,
  .page-fishing-games__promotion-card-image {
    height: 200px;
  }

  .page-fishing-games__list li {
    padding-left: 25px;
  }
}

/* Ensure no filter is used for images */
.page-fishing-games img {
  filter: none; /* Prohibit any CSS filters */
}

.page-fishing-games__video-container,
.page-fishing-games__video-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}