/* style/fishing-games.css */

:root {
  --page-fishing-games-primary-color: #11A84E;
  --page-fishing-games-secondary-color: #22C768;
  --page-fishing-games-background-color: #08160F;
  --page-fishing-games-card-bg: #11271B;
  --page-fishing-games-text-main: #F2FFF6;
  --page-fishing-games-text-secondary: #A7D9B8;
  --page-fishing-games-border-color: #2E7A4E;
  --page-fishing-games-glow-color: #57E38D;
  --page-fishing-games-gold-color: #F2C14E;
  --page-fishing-games-divider-color: #1E3A2A;
  --page-fishing-games-deep-green: #0A4B2C;
  --page-fishing-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-fishing-games {
  color: var(--page-fishing-games-text-main);
  background-color: var(--page-fishing-games-background-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles header offset, small top padding for visual space */
  background-color: var(--page-fishing-games-deep-green);
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height to prevent overly tall hero on desktop */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-fishing-games__hero-content {
  max-width: 900px;
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
  z-index: 1; /* Ensure text is above any potential background elements */
}

.page-fishing-games__main-title {
  color: var(--page-fishing-games-gold-color);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__hero-description {
  color: var(--page-fishing-games-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
}

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

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

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-btn-gradient);
  color: var(--page-fishing-games-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--page-fishing-games-gold-color);
  border: 2px solid var(--page-fishing-games-gold-color);
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.3);
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__section {
  padding: 60px 0;
  background-color: var(--page-fishing-games-background-color);
}

.page-fishing-games__dark-section {
  background-color: var(--page-fishing-games-card-bg);
  color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__section-title {
  color: var(--page-fishing-games-primary-color);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--page-fishing-games-gold-color);
  border-radius: 2px;
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--page-fishing-games-text-secondary);
  text-align: center;
}

.page-fishing-games__text-block a {
  color: var(--page-fishing-games-gold-color);
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-fishing-games__feature-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border-color);
}

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

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

.page-fishing-games__feature-description {
  color: var(--page-fishing-games-text-secondary);
  font-size: 1rem;
}

.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-item {
  background-color: var(--page-fishing-games-background-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border-color);
  position: relative;
  padding-top: 60px;
}

.page-fishing-games__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--page-fishing-games-gold-color);
  color: var(--page-fishing-games-deep-green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  border: 3px solid var(--page-fishing-games-primary-color);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-fishing-games__step-title {
  color: var(--page-fishing-games-primary-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-fishing-games__step-description {
  color: var(--page-fishing-games-text-secondary);
  font-size: 1rem;
}

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

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

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

.page-fishing-games__card {
  background-color: var(--page-fishing-games-card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__promotion-card .page-fishing-games__card-title {
  color: var(--page-fishing-games-gold-color);
  font-size: 1.4rem;
  padding: 20px 20px 10px 20px;
}

.page-fishing-games__promotion-card .page-fishing-games__card-description {
  color: var(--page-fishing-games-text-secondary);
  font-size: 1rem;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-fishing-games__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px 20px;
  padding: 12px 0;
  text-align: center;
  background: var(--page-fishing-games-btn-gradient);
  color: var(--page-fishing-games-text-main);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

.page-fishing-games__card-button:hover {
  filter: brightness(1.15);
}

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

.page-fishing-games__list-item {
  background-color: var(--page-fishing-games-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-border-color);
}

.page-fishing-games__list-title {
  color: var(--page-fishing-games-primary-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-fishing-games__list-description {
  color: var(--page-fishing-games-text-secondary);
  font-size: 1rem;
}

.page-fishing-games__app-download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.page-fishing-games__app-text {
  flex: 1;
}

.page-fishing-games__app-image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-fishing-games__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-fishing-games__app-benefits .page-fishing-games__list-item {
  background: none;
  box-shadow: none;
  border: none;
  padding: 10px 0;
  text-align: left;
  position: relative;
  padding-left: 30px;
  color: var(--page-fishing-games-text-secondary);
}

.page-fishing-games__app-benefits .page-fishing-games__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--page-fishing-games-gold-color);
  font-weight: bold;
  font-size: 1.2rem;
}

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

.page-fishing-games__faq-item {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--page-fishing-games-primary-color);
  font-size: 1.2rem;
  list-style: none;
}

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

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--page-fishing-games-gold-color);
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--page-fishing-games-text-secondary);
  font-size: 1rem;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

.page-fishing-games__faq-answer a {
  color: var(--page-fishing-games-gold-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-fishing-games__conclusion-content {
  text-align: center;
  padding: 50px 20px;
}

.page-fishing-games__btn-large {
  padding: 18px 40px;
  font-size: 1.25rem;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: 30px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  }
  .page-fishing-games__app-download-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-fishing-games__hero-content {
    margin-top: 20px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important; /* Ensure full width on mobile */
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 1rem;
  }
  .page-fishing-games__feature-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promotion-cards,
  .page-fishing-games__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__cta-buttons,
  .page-fishing-games__app-download-content,
  .page-fishing-games__faq-list {
    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__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-fishing-games__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-fishing-games__btn-large {
    font-size: 1.1rem;
    padding: 15px 25px;
  }
  .page-fishing-games__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}