/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
  background-color: #0A0A0A; /* Background color */
  color: #FFF6D6; /* Main text color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 17px;
}

/* Section spacing and container */
.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: #F2C14E; /* Primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-fishing-games__section-description {
  font-size: clamp(16px, 2vw, 19px);
  color: #FFF6D6; /* Main text color */
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Dark background sections */
.page-fishing-games__dark-bg {
  background-color: #0A0A0A;
  padding: 60px 0;
}

/* Card styles */
.page-fishing-games__card {
  background-color: #111111; /* Card Background */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6; /* Main text color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #333333; /* Dark text for bright button */
  border: none;
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #FFE88A 0%, #EEB12D 100%);
  box-shadow: 0 0 15px #FFD36B;
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Primary color for text */
  border: 2px solid #F2C14E; /* Primary color for border */
}

.page-fishing-games__btn-secondary:hover {
  background-color: #F2C14E;
  color: #333333; /* Dark text for bright button */
  box-shadow: 0 0 15px #FFD36B;
}

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

.page-fishing-games__cta-buttons--single {
  margin-top: 50px;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Minimal top padding, body handles header offset */
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5), 0 0 20px #FFD36B;
  margin-bottom: 40px;
}

.page-fishing-games__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.page-fishing-games__main-title {
  font-size: clamp(36px, 5vw, 56px);
  color: #F2C14E; /* Primary color for main title */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.page-fishing-games__intro-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #FFF6D6; /* Main text color */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.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-card {
  text-align: center;
}

.page-fishing-games__feature-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.page-fishing-games__feature-title {
  font-size: clamp(20px, 3vw, 26px);
  color: #FFD36B; /* Glow color for feature titles */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-fishing-games__feature-text {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #FFF6D6;
}

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

.page-fishing-games__game-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__game-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.page-fishing-games__game-title {
  font-size: clamp(20px, 3vw, 26px);
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-fishing-games__game-text {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #FFF6D6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
  width: fit-content;
  margin: 0 auto;
  padding: 12px 25px;
  font-size: 16px;
}

/* How to Play Section */
.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__step-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-fishing-games__step-title {
  font-size: clamp(22px, 3.5vw, 28px);
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-fishing-games__step-text {
  font-size: clamp(16px, 2vw, 18px);
  color: #FFF6D6;
}

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

.page-fishing-games__promo-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.page-fishing-games__promo-title {
  font-size: clamp(20px, 3vw, 26px);
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-fishing-games__promo-text {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #FFF6D6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-fishing-games__promo-card .page-fishing-games__btn-secondary {
  width: fit-content;
  margin: 0 auto;
  padding: 12px 25px;
  font-size: 16px;
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-fishing-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: #F2C14E;
  background-color: #1a1a1a; /* Slightly darker for summary */
  border-bottom: 1px solid #3A2A12;
}

.page-fishing-games__faq-item summary:hover {
  background-color: #2a2a2a;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #FFD36B;
}

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

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: clamp(16px, 2vw, 18px);
  color: #FFF6D6;
  background-color: #111111;
}

.page-fishing-games__faq-answer p {
  margin: 0;
}

/* CTA Bottom Section */
.page-fishing-games__cta-bottom-section {
  text-align: center;
  padding: 80px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }
  .page-fishing-games__intro-description {
    font-size: clamp(17px, 2.2vw, 20px);
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-fishing-games__section-description {
    font-size: clamp(15px, 3vw, 18px);
    margin-bottom: 30px;
  }
  .page-fishing-games__dark-bg {
    padding: 40px 0;
  }
  .page-fishing-games__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  .page-fishing-games__hero-image {
    margin-bottom: 30px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(28px, 7vw, 42px);
  }
  .page-fishing-games__intro-description {
    font-size: clamp(16px, 3.5vw, 19px);
  }
  .page-fishing-games__cta-buttons {
    gap: 10px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__cta-buttons, .page-fishing-games__button-group, .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Image and Video responsive rules */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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: 15px;
    padding-right: 15px;
    overflow: hidden !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;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__feature-icon,
  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    max-width: 100%;
    width: 100%;
  }

  .page-fishing-games__faq-item summary {
    font-size: clamp(16px, 4vw, 20px);
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    font-size: clamp(15px, 3.5vw, 17px);
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: clamp(24px, 8vw, 36px);
  }
  .page-fishing-games__intro-description {
    font-size: clamp(15px, 4vw, 18px);
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    width: 100%;
    font-size: 15px;
    padding: 10px 15px;
  }
}