/* style/fishing-games.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --button-login-color: #EA7C07;
  --background-color-white: #FFFFFF;
  --black-color: #000000;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light backgrounds */
  background-color: var(--background-color-white); /* Default body background */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

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

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

.page-fishing-games__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-color-dark);
  text-align: left;
}

.page-fishing-games__text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

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

.page-fishing-games__highlight-text {
  color: var(--primary-color);
  font-weight: bold;
}

/* --- HERO Section --- */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), #4CAF50); /* Adjusted gradient for visual appeal */
  color: var(--text-color-light);
  overflow: hidden;
  padding-top: 0; /* Handled by .page-fishing-games for main content */
}

.page-fishing-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-fishing-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games__hero-title {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--text-color-light);
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--button-login-color); /* Using custom login color */
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-button:hover {
  background: #E06C00; /* Slightly darker orange on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- General Section Styles --- */
.page-fishing-games__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__text-block,
.page-fishing-games__dark-bg .page-fishing-games__highlight-text,
.page-fishing-games__dark-bg .page-fishing-games__card-title,
.page-fishing-games__dark-bg .page-fishing-games__card-description,
.page-fishing-games__dark-bg .page-fishing-games__step-title,
.page-fishing-games__dark-bg .page-fishing-games__step-description,
.page-fishing-games__dark-bg .page-fishing-games__promo-title,
.page-fishing-games__dark-bg .page-fishing-games__promo-description,
.page-fishing-games__dark-bg .page-fishing-games__item-title,
.page-fishing-games__dark-bg .page-fishing-games__item-description,
.page-fishing-games__dark-bg .page-fishing-games__feature-title,
.page-fishing-games__dark-bg .page-fishing-games__feature-description,
.page-fishing-games__dark-bg .page-fishing-games__cta-title,
.page-fishing-games__dark-bg .page-fishing-games__cta-description,
.page-fishing-games__dark-bg .page-fishing-games__text-link {
  color: var(--text-color-light);
}

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

.page-fishing-games__light-bg .page-fishing-games__section-title,
.page-fishing-games__light-bg .page-fishing-games__text-block,
.page-fishing-games__light-bg .page-fishing-games__highlight-text,
.page-fishing-games__light-bg .page-fishing-games__card-title,
.page-fishing-games__light-bg .page-fishing-games__card-description,
.page-fishing-games__light-bg .page-fishing-games__step-title,
.page-fishing-games__light-bg .page-fishing-games__step-description,
.page-fishing-games__light-bg .page-fishing-games__promo-title,
.page-fishing-games__light-bg .page-fishing-games__promo-description,
.page-fishing-games__light-bg .page-fishing-games__item-title,
.page-fishing-games__light-bg .page-fishing-games__item-description,
.page-fishing-games__light-bg .page-fishing-games__feature-title,
.page-fishing-games__light-bg .page-fishing-games__feature-description,
.page-fishing-games__light-bg .page-fishing-games__cta-title,
.page-fishing-games__light-bg .page-fishing-games__cta-description,
.page-fishing-games__light-bg .page-fishing-games__text-link {
  color: var(--text-color-dark);
}

.page-fishing-games__light-bg .page-fishing-games__highlight-text {
  color: var(--primary-color);
}

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

.page-fishing-games__game-card {
  background-color: var(--background-color-white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

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

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

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

.page-fishing-games__card-description {
  font-size: 16px;
  color: var(--text-color-dark);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games__step-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.page-fishing-games__step-description {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.7;
  flex-grow: 1;
}

.page-fishing-games__btn-primary {
  display: inline-block;
  padding: 14px 35px;
  background: var(--button-login-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__btn-primary:hover {
  background: #E06C00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Strategy Section --- */
.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-fishing-games__list-item {
  font-size: 17px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-color-dark);
}

.page-fishing-games__list-item::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
  top: 0;
}

/* --- Promotion Section --- */
.page-fishing-games__promo-card {
  display: flex;
  background-color: var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
  overflow: hidden;
  text-align: left;
}

.page-fishing-games__promo-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-fishing-games__promo-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-fishing-games__promo-title {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-fishing-games__promo-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

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

.page-fishing-games__promo-item {
  background-color: var(--background-color-white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

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

.page-fishing-games__item-description {
  font-size: 15px;
  color: var(--text-color-dark);
}

.page-fishing-games__view-all-promos {
  margin-top: 40px;
  display: inline-block;
  font-size: 18px;
}

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

.page-fishing-games__feature-card {
  background-color: var(--primary-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-color-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-fishing-games__feature-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-color-light);
}

.page-fishing-games__feature-description {
  font-size: 16px;
  color: var(--text-color-light);
}

.page-fishing-games__inline-image {
  max-width: 100px; /* Smaller size for inline image */
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  border-radius: 4px;
}

.page-fishing-games__learn-more {
  margin-top: 40px;
  display: inline-block;
  font-size: 18px;
}

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

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

.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 15px;
  opacity: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 5px 5px;
  color: var(--text-color-dark);
  text-align: left;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}