/* style/fishing-games.css */

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

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

.page-fishing-games__section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.page-fishing-games__dark-bg {
  background-color: var(--page-fishing-games-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 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--page-fishing-games-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

.page-fishing-games__note {
  font-size: 16px;
  color: var(--page-fishing-games-text-main);
  text-align: center;
  margin-top: 30px;
  padding: 15px;
  background-color: var(--page-fishing-games-deep-green);
  border-radius: 8px;
  border: 1px solid var(--page-fishing-games-border);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 80px;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 40px; /* Space between image and content */
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games__hero-title {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--page-fishing-games-gold);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-fishing-games__hero-description {
  font-size: 20px;
  color: var(--page-fishing-games-text-main);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

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

.page-fishing-games__btn-primary {
  background: var(--page-fishing-games-button-gradient);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
  opacity: 0.9;
}

.page-fishing-games__btn-secondary {
  background: #ffffff; /* White background for secondary button */
  color: var(--page-fishing-games-primary-color); /* Primary color text */
  border: 2px solid var(--page-fishing-games-primary-color);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--page-fishing-games-primary-color);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Intro Section */
.page-fishing-games__intro-section .page-fishing-games__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Section */
.page-fishing-games__video-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-fishing-games-bg);
  color: var(--page-fishing-games-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Adjust max-width for video */
  margin: 0 auto 30px;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--page-fishing-games-border);
  box-sizing: border-box;
}

.page-fishing-games__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Ensure desktop width is 100% */
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

.page-fishing-games__video-description {
  font-size: 18px;
  color: var(--page-fishing-games-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

.page-fishing-games__card {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--page-fishing-games-glow);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-fishing-games-divider);
}

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

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

.page-fishing-games__card .page-fishing-games__btn-primary {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
}

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: var(--page-fishing-games-deep-green);
  color: var(--page-fishing-games-text-main);
}

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

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

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--page-fishing-games-button-gradient);
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(17, 168, 78, 0.5);
}

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

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

/* Strategy Section */
.page-fishing-games__strategy-section {
  background-color: var(--page-fishing-games-bg);
}

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

.page-fishing-games__strategy-card {
  padding: 30px;
  text-align: left;
}

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

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

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: var(--page-fishing-games-deep-green);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__promotion-item {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__promotion-item strong {
  color: var(--page-fishing-games-gold);
}

/* Why Choose Us Section */
.page-fishing-games__why-choose-us {
  background-color: var(--page-fishing-games-bg);
}

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

.page-fishing-games__feature-card {
  padding: 25px;
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-fishing-games-divider);
}

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

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

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: var(--page-fishing-games-deep-green);
  color: var(--page-fishing-games-text-main);
}

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

.page-fishing-games__faq-item {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: var(--page-fishing-games-text-main);
  cursor: pointer;
  background-color: var(--page-fishing-games-card-bg);
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  margin-left: 15px;
  color: var(--page-fishing-games-gold);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--page-fishing-games-text-secondary);
}

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

/* Details/Summary specific styles */
.page-fishing-games__faq-item summary {
  list-style: none;
}

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

/* Conclusion Section */
.page-fishing-games__conclusion-section .page-fishing-games__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }

  .page-fishing-games__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }

  .page-fishing-games__hero-description,
  .page-fishing-games__text-block {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 60px 0;
  }

  .page-fishing-games__hero-section {
    min-height: 500px;
    padding-bottom: 60px;
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 30px;
  }

  .page-fishing-games__hero-title {
    font-size: 32px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px;
  }

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

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

  .page-fishing-games__video-wrapper {
    padding-bottom: 75%; /* Adjust for mobile 4:3 or similar */
    margin: 0 auto 20px;
  }

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

  .page-fishing-games__game-cards,
  .page-fishing-games__steps,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card,
  .page-fishing-games__step-item,
  .page-fishing-games__strategy-card,
  .page-fishing-games__feature-card {
    padding: 20px;
  }

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

  .page-fishing-games__promotion-item {
    font-size: 16px;
    padding: 15px;
  }

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

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

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 28px;
  }

  .page-fishing-games__section-title {
    font-size: 24px;
  }

  .page-fishing-games__hero-description,
  .page-fishing-games__text-block {
    font-size: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 14px !important;
    padding: 10px 15px !important;
  }
}