/* style/fishing-games.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #E53E3E; /* Red for emphasis */
  --dark-bg-color: #1A202C; /* Deep dark blue/grey */
  --text-light: #ffffff;
  --text-dark: #333333;
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark body */
  --card-border-dark: rgba(255, 255, 255, 0.15);
  --button-text-dark-bg: #1A202C;
}

.page-fishing-games {
  background-color: #0d0d0d; /* Body background color */
  color: var(--text-light); /* Light text on dark body */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

.page-fishing-games__section-title {
  font-size: 38px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-bg-color) 0%, #0d0d0d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-fishing-games__description {
  font-size: 20px;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.page-fishing-games__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--button-text-dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-button--small {
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
}

.page-fishing-games__cta-button--mini {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  margin-top: 15px;
}

.page-fishing-games__hero-image-wrapper {
    margin-top: 40px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

/* Video Showcase Section */
.page-fishing-games__video-showcase-section {
  padding: 80px 0;
  background-color: var(--dark-bg-color);
}

.page-fishing-games__video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from interfering with click event */
}

.page-fishing-games__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-fishing-games__video-link:hover .page-fishing-games__video-overlay {
  opacity: 1;
}

.page-fishing-games__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 50px;
  white-space: nowrap;
}

.page-fishing-games__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-fishing-games__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--button-text-dark-bg);
  text-decoration: none;
  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;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-fishing-games__card {
  background: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.page-fishing-games__feature-icon {
  width: 150px; /* Increased size for content display */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-fishing-games__feature-text {
  font-size: 16px;
  color: #c0c0c0;
  flex-grow: 1;
}

/* Games List Section */
.page-fishing-games__games-list-section {
  padding: 80px 0;
  background-color: var(--dark-bg-color);
}

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

.page-fishing-games__game-card {
  padding: 0; /* Image takes full width */
  overflow: hidden;
}

.page-fishing-games__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 15px;
}

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

.page-fishing-games__game-card-description {
  font-size: 15px;
  color: #c0c0c0;
  margin-bottom: 20px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-fishing-games__game-card .page-fishing-games__cta-button {
  margin-top: auto;
  margin-bottom: 20px;
  background: var(--primary-color);
  color: var(--button-text-dark-bg);
  border: none;
}

.page-fishing-games__game-card .page-fishing-games__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* How to Play Section */
.page-fishing-games__how-to-play-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-fishing-games__step-item {
  padding-top: 50px;
  position: relative;
}

.page-fishing-games__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--button-text-dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 3px solid #0d0d0d;
}

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

.page-fishing-games__step-text {
  font-size: 16px;
  color: #c0c0c0;
  flex-grow: 1;
}

/* Tips Section */
.page-fishing-games__tips-section {
  padding: 80px 0;
  background-color: var(--dark-bg-color);
}

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

.page-fishing-games__tips-item {
  text-align: left;
  padding: 25px;
}

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

.page-fishing-games__tips-text {
  font-size: 16px;
  color: #c0c0c0;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-fishing-games__promo-item {
  padding: 0;
  overflow: hidden;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 15px;
}

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

.page-fishing-games__promo-text {
  font-size: 15px;
  color: #c0c0c0;
  margin-bottom: 20px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-fishing-games__promo-item .page-fishing-games__cta-button {
  margin-top: auto;
  margin-bottom: 20px;
  background: var(--primary-color);
  color: var(--button-text-dark-bg);
  border: none;
}

.page-fishing-games__promo-item .page-fishing-games__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__full-promo-cta {
  text-align: center;
}

/* Security Section */
.page-fishing-games__security-section {
  padding: 80px 0;
  background-color: var(--dark-bg-color);
}

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

.page-fishing-games__security-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-fishing-games__security-text {
  font-size: 16px;
  color: #c0c0c0;
  flex-grow: 1;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg-dark);
  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.12);
}

.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-item.active .page-fishing-games__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg);
}

.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(255, 255, 255, 0.05);
  border-top: 1px solid var(--card-border-dark);
}

.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-answer p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 10px;
}

/* Final CTA Section */
.page-fishing-games__cta-bottom-section {
  padding: 80px 0;
  background: linear-gradient(45deg, var(--primary-color) 0%, #e6c200 100%);
  text-align: center;
}

.page-fishing-games__cta-bottom-section .page-fishing-games__section-title {
  color: var(--button-text-dark-bg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-bottom-section .page-fishing-games__section-description {
  color: var(--button-text-dark-bg);
  margin-bottom: 40px;
}

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

.page-fishing-games__cta-bottom-section .page-fishing-games__cta-button--primary:hover {
  background: #0d0d0d;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-bottom-section .page-fishing-games__cta-button--secondary {
  background: transparent;
  color: var(--dark-bg-color);
  border: 2px solid var(--dark-bg-color);
}

.page-fishing-games__cta-bottom-section .page-fishing-games__cta-button--secondary:hover {
  background: var(--dark-bg-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Content Styles */
.page-fishing-games h2, .page-fishing-games h3, .page-fishing-games h4, .page-fishing-games h5, .page-fishing-games h6 {
  color: var(--primary-color);
}

.page-fishing-games p, .page-fishing-games li {
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 44px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__description, .page-fishing-games__section-description {
    font-size: 17px;
  }
  .page-fishing-games__cta-button {
    padding: 14px 30px;
    font-size: 16px;
  }
  .page-fishing-games__feature-icon, .page-fishing-games__security-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 15px;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__hero-section, .page-fishing-games__video-showcase-section, .page-fishing-games__features-section, .page-fishing-games__games-list-section, .page-fishing-games__how-to-play-section, .page-fishing-games__tips-section, .page-fishing-games__promotions-section, .page-fishing-games__security-section, .page-fishing-games__faq-section, .page-fishing-games__cta-bottom-section {
    padding: 50px 0;
  }
  .page-fishing-games__main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-fishing-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  .page-fishing-games__cta-button, .page-fishing-games__play-now-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__hero-image-wrapper, .page-fishing-games__video-container, .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-fishing-games__hero-image, .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }
  .page-fishing-games__feature-grid, .page-fishing-games__game-cards-grid, .page-fishing-games__steps-list, .page-fishing-games__tips-list, .page-fishing-games__promo-grid, .page-fishing-games__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__card {
    padding: 20px;
  }
  .page-fishing-games__feature-icon, .page-fishing-games__security-icon {
    width: 80px;
    height: 80px;
  }
  .page-fishing-games__feature-title, .page-fishing-games__game-card-title, .page-fishing-games__step-title, .page-fishing-games__tips-title, .page-fishing-games__promo-title, .page-fishing-games__security-title {
    font-size: 20px;
  }
  .page-fishing-games__feature-text, .page-fishing-games__game-card-description, .page-fishing-games__step-text, .page-fishing-games__tips-text, .page-fishing-games__promo-text, .page-fishing-games__security-text, .page-fishing-games__faq-answer p {
    font-size: 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-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }
  .page-fishing-games__video-click-hint {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 30px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__cta-button {
    padding: 12px 15px !important;
    font-size: 15px !important;
  }
  .page-fishing-games__play-now-button {
    padding: 12px 15px !important;
    font-size: 15px !important;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 15px;
  }
}