/* style/fishing-games.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #2F4F4F;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #121212;
  --background-light: #f5f5f5;
  --border-color: #e0e0e0;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--background-dark);
  line-height: 1.6;
}

.page-fishing-games a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games a:hover {
  color: #ffeb3b; /* Lighter gold on hover */
}

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

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

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

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

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

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

.page-fishing-games__hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Additional overlay for text contrast */
}

.page-fishing-games__main-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 24px;
  color: var(--text-light);
  max-width: 800px;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.page-fishing-games__cta-button--primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-fishing-games__cta-button--primary:hover {
  background: #ffeb3b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__cta-button--secondary:hover {
  background: #1a2b2b; /* Slightly darker secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__features-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.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-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid var(--primary-color);
}

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

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

.page-fishing-games__game-types-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-fishing-games__game-type-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-fishing-games__game-type-card:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__game-type-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__game-type-description {
  font-size: 15px;
  color: var(--text-light);
}

.page-fishing-games__guide-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

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

.page-fishing-games__guide-step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__step-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 10px;
  margin-bottom: 15px;
}

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

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

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

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

.page-fishing-games__strategy-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-fishing-games__strategy-card:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__strategy-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.page-fishing-games__promotions-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

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

.page-fishing-games__promotion-list li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 17px;
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__promotion-list li a {
  color: var(--primary-color);
  font-weight: bold;
}

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

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

.page-fishing-games__safety-list li {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 17px;
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

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

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.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 25px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 8px 8px;
  color: var(--text-light);
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg); /* Use rotate for '-' effect */
}

.page-fishing-games__brand-intro-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-fishing-games__brand-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__brand-subtitle {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.page-fishing-games__news-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

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

.page-fishing-games__news-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__news-link {
  display: block;
  padding: 25px;
  color: var(--text-light);
  text-decoration: none;
}

.page-fishing-games__news-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-fishing-games__news-excerpt {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-fishing-games__news-date {
  font-size: 14px;
  color: #cccccc;
  display: block;
  text-align: right;
}

.page-fishing-games__conclusion-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-fishing-games__cta-buttons--center {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 44px;
  }
  .page-fishing-games__hero-description {
    font-size: 20px;
  }
  .page-fishing-games__section-title {
    font-size: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games__hero-overlay {
    padding: 15px;
  }

  .page-fishing-games__main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-fishing-games__text-block {
    font-size: 16px;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__game-type-card,
  .page-fishing-games__guide-step,
  .page-fishing-games__strategy-card,
  .page-fishing-games__brand-item,
  .page-fishing-games__news-item {
    padding: 20px;
  }

  .page-fishing-games__feature-image {
    height: 150px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__game-type-title,
  .page-fishing-games__step-title,
  .page-fishing-games__strategy-title,
  .page-fishing-games__brand-subtitle,
  .page-fishing-games__news-title {
    font-size: 20px;
  }

  .page-fishing-games__feature-description,
  .page-fishing-games__game-type-description,
  .page-fishing-games__step-description,
  .page-fishing-games__strategy-description,
  .page-fishing-games__brand-description,
  .page-fishing-games__news-excerpt {
    font-size: 15px;
  }

  .page-fishing-games__step-number {
    width: 35px;
    height: 35px;
    font-size: 20px;
    top: -10px;
    left: 15px;
  }

  .page-fishing-games__promotion-list li,
  .page-fishing-games__safety-list li {
    font-size: 16px;
    padding: 15px;
  }

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

  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

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

  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 30px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
  }
  .page-fishing-games__cta-button {
    padding: 10px 20px;
    font-size: 15px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__hero-section {
    height: 400px;
  }
}