/* style/fishing-games.css */

/* Base styles for the fishing-games page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  padding-top: 120px; /* Space for fixed header on desktop */
}

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

.page-fishing-games__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #FFD700; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__description-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Hero Section */
.page-fishing-games__hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Brand colors for a gradient background */
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games__main-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__call-to-action {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-tertiary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: #FFD700;
  color: #8B0000;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-fishing-games__btn-secondary:hover {
  background: #ffffff;
  color: #8B0000;
  transform: translateY(-3px);
}

.page-fishing-games__btn-tertiary {
  background: #8B0000;
  color: #ffffff;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 25px;
}

.page-fishing-games__btn-tertiary:hover {
  background: #a30000;
  transform: translateY(-2px);
}

/* Advantages Section */
.page-fishing-games__advantages-section {
  padding: 60px 0;
  background: #f8f9fa;
  color: #333333; /* Dark text for light background */
}

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

.page-fishing-games__advantage-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__advantage-icon {
  width: 120px; /* Ensure images are not small icons */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-fishing-games__advantage-card p {
  font-size: 16px;
  color: #555555;
}

/* Featured Games Section */
.page-fishing-games__featured-games-section {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

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

.page-fishing-games__game-card-large {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-fishing-games__game-card-large:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 250px; /* Ensure images are large and consistent */
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-name {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 20px 15px;
  text-align: center;
}

.page-fishing-games__more-games-text {
  font-size: 16px;
  text-align: center;
  margin-top: 30px;
  color: #cccccc;
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 60px 0;
  background: #f8f9fa;
  color: #333333;
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games__guide-list li {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FFD700;
}

.page-fishing-games__guide-step-title {
  font-size: 26px;
  font-weight: bold;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-fishing-games__guide-list p {
  font-size: 16px;
  color: #555555;
}

.page-fishing-games__guide-list a {
  color: #007bff;
  text-decoration: none;
}

.page-fishing-games__guide-list a:hover {
  text-decoration: underline;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

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

.page-fishing-games__strategy-item {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #333333;
}

.page-fishing-games__strategy-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__strategy-item p {
  font-size: 16px;
  color: #cccccc;
}

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

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

.page-fishing-games__promo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__promo-image {
  width: 180px; /* Ensure images are not small icons */
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Support Section */
.page-fishing-games__support-section {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

.page-fishing-games__contact-info {
  margin-top: 30px;
  text-align: center;
}

.page-fishing-games__contact-info p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-fishing-games__contact-info ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.page-fishing-games__contact-info li {
  margin-bottom: 10px;
  color: #cccccc;
}

.page-fishing-games__contact-info a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__contact-info a:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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;
  padding: 0 15px;
  opacity: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important; /* Use !important to ensure priority */
  padding: 20px 15px !important;
  opacity: 1;
  background: #ffffff;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  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: #f5f5f5;
  border-color: #d0d0d0;
}

.page-fishing-games__faq-question:active {
  background: #eeeeee;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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: 28px;
  height: 28px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #8B0000;
  transform: rotate(45deg);
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  text-align: center;
  color: #ffffff;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
  color: #ffffff;
}

.page-fishing-games__conclusion-section .page-fishing-games__description-text {
  color: #f0f0f0;
}

.page-fishing-games__conclusion-section .page-fishing-games__btn-primary {
  background: #ffffff;
  color: #8B0000;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

.page-fishing-games__conclusion-section .page-fishing-games__btn-primary:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.6);
}

/* 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__advantage-card {
    padding: 25px;
  }
  .page-fishing-games__game-image {
    height: 200px;
  }
  .page-fishing-games__game-name {
    font-size: 20px;
  }
  .page-fishing-games__guide-step-title {
    font-size: 24px;
  }
  .page-fishing-games__strategy-title {
    font-size: 22px;
  }
  .page-fishing-games__promo-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    padding-top: 100px !important; /* Space for fixed header on mobile */
  }
  .page-fishing-games__hero-section {
    padding: 60px 0;
  }
  .page-fishing-games__main-title {
    font-size: 36px;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-fishing-games__description-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-fishing-games__call-to-action {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }
  .page-fishing-games__advantages-section,
  .page-fishing-games__featured-games-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__support-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__advantages-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__advantage-card,
  .page-fishing-games__game-card-large,
  .page-fishing-games__guide-list li,
  .page-fishing-games__strategy-item,
  .page-fishing-games__promo-card {
    padding: 20px;
  }
  .page-fishing-games__advantage-icon {
    width: 100px;
    height: 100px;
  }
  .page-fishing-games__card-title {
    font-size: 20px;
  }
  .page-fishing-games__game-image {
    height: 180px;
  }
  .page-fishing-games__game-name {
    font-size: 18px;
  }
  .page-fishing-games__guide-step-title {
    font-size: 22px;
  }
  .page-fishing-games__strategy-title {
    font-size: 20px;
  }
  .page-fishing-games__promo-image {
    width: 120px;
    height: 120px;
  }
  .page-fishing-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
  }
  .page-fishing-games__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }

  /* Force images to not overflow */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 30px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }
  .page-fishing-games__advantage-icon {
    width: 80px;
    height: 80px;
  }
  .page-fishing-games__card-title {
    font-size: 18px;
  }
  .page-fishing-games__game-image {
    height: 150px;
  }
  .page-fishing-games__game-name {
    font-size: 16px;
  }
  .page-fishing-games__guide-step-title {
    font-size: 20px;
  }
  .page-fishing-games__strategy-title {
    font-size: 18px;
  }
  .page-fishing-games__promo-image {
    width: 100px;
    height: 100px;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 15px;
  }
}