/* style/fishing-games.css */
/* 
  Body background is #0D0E12 (dark) from shared.css. 
  Primary text color will be #FFF3E6. 
  Card background is #17191F (dark), text #FFF3E6. 
*/

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px; /* Adjust padding as needed, but not var(--header-offset) */
  background-color: #0D0E12; /* Ensure dark background */
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and text */
}

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

.page-fishing-games__hero-content {
  position: relative; /* Not absolute, to be in document flow */
  z-index: 1;
  max-width: 800px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.2rem;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 30px;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap; /* Prevent breaking on desktop */
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff; /* White text for contrast */
  border: none;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #FFA53A; /* Auxiliary color */
  border: 2px solid #FFA53A; /* Auxiliary color border */
}

.page-fishing-games__btn-secondary:hover {
  background: #FFA53A;
  color: #ffffff;
}

/* Video Section */
.page-fishing-games__video-section {
  padding: 60px 20px;
  background-color: #0D0E12; /* Background */
  text-align: center;
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px; /* Max width for video */
  margin: 30px auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 140, 26, 0.5); /* Glow */
}

.page-fishing-games__video {
  width: 100%; /* Desktop width */
  height: auto;
  display: block;
  cursor: pointer;
}

/* General Section Styles */
.page-fishing-games__section {
  padding: 80px 0;
}

.page-fishing-games__dark-section {
  background-color: #0D0E12; /* Background */
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF3E6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
}

.page-fishing-games__section-description {
  font-size: 1.1rem;
  color: #FFF3E6; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-fishing-games__card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
  color: #FFF3E6; /* Text Main */
}

/* Features/Benefits Section */
.page-fishing-games__features-grid,
.page-fishing-games__game-list,
.page-fishing-games__steps-grid,
.page-fishing-games__promo-grid,
.page-fishing-games__security-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-fishing-games__feature-card,
.page-fishing-games__game-card,
.page-fishing-games__step-card,
.page-fishing-games__promo-card,
.page-fishing-games__security-item {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__feature-icon,
.page-fishing-games__step-icon,
.page-fishing-games__security-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}

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

.page-fishing-games__feature-title,
.page-fishing-games__game-title,
.page-fishing-games__step-title,
.page-fishing-games__promo-title,
.page-fishing-games__security-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-fishing-games__feature-text,
.page-fishing-games__game-text,
.page-fishing-games__step-text,
.page-fishing-games__promo-text,
.page-fishing-games__security-text {
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
}

.page-fishing-games__game-btn,
.page-fishing-games__step-btn,
.page-fishing-games__promo-btn,
.page-fishing-games__contact-btn {
  margin-top: auto; /* Push button to bottom */
  width: auto;
  white-space: normal; /* Allow text wrapping on button if needed */
  padding: 10px 20px;
  font-size: 1rem;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 20px;
  text-align: left;
  border: 1px solid #A84F0C; /* Border */
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  cursor: pointer;
  list-style: none; /* For details/summary */
}

.page-fishing-games__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFA53A;
  margin-left: 10px;
}

.page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
}

.page-fishing-games__faq-answer p {
  margin-bottom: 10px;
}
.page-fishing-games__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__hero-section {
    padding: 20px 15px 20px;
    padding-top: 10px !important; /* Small top padding */
  }

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

  .page-fishing-games__hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

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

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

  .page-fishing-games__video-section,
  .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__section {
    padding: 40px 0;
  }

  .page-fishing-games__section-title {
    font-size: 2rem;
  }

  .page-fishing-games__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__steps-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__security-grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    height: 180px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__game-title,
  .page-fishing-games__step-title,
  .page-fishing-games__promo-title,
  .page-fishing-games__security-title {
    font-size: 1.3rem;
  }

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

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