/* style/fishing-games.css */
.page-fishing-games {
  color: #ffffff; /* Text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Fixed navigation bar spacing for the first content section */
.page-fishing-games__hero-section {
  padding-top: 120px; /* Desktop default */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #1A2B4C, #0a0a0a);
  color: #ffffff;
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 100px; /* Mobile spacing */
    padding-bottom: 40px;
  }
}

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

.page-fishing-games__section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-fishing-games__section--intro {
  background-color: #1a1a1a;
}

.page-fishing-games__section--guide {
  background-color: #1a1a1a;
}

.page-fishing-games__dark-section {
  background-color: #1A2B4C; /* Primary brand color for dark sections */
  color: #ffffff;
}

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for titles */
}

.page-fishing-games__section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-fishing-games__text-block {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-fishing-games__text-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__text-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games__hero-content {
  flex: 1;
}

.page-fishing-games__hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-fishing-games__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__hero-link-text {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__hero-link-text:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-fishing-games__hero-actions {
  display: flex;
  gap: 20px;
}

.page-fishing-games__hero-image-wrapper {
  flex: 1;
  text-align: center;
}

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

/* Buttons */
.page-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-fishing-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
}

.page-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-fishing-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

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

.page-fishing-games__game-card {
  background-color: #1A2B4C; /* Dark blue card background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-fishing-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-fishing-games__game-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD700;
  padding: 0 15px;
}

.page-fishing-games__game-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 25px;
  padding: 0 15px;
}

/* Benefits List */
.page-fishing-games__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__benefit-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for items */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  border-left: 5px solid #FFD700;
}

.page-fishing-games__benefit-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-fishing-games__benefit-description {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

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

.page-fishing-games__step-card {
  background-color: #1A2B4C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-fishing-games__step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-fishing-games__step-description {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-fishing-games__tips-block {
  background-color: rgba(255, 215, 0, 0.1); /* Light gold background */
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  border: 1px solid #FFD700;
}

.page-fishing-games__tips-title {
  font-size: 26px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
}

.page-fishing-games__tips-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-fishing-games__tips-list li::before {
  content: '★'; /* Star bullet */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1.8;
}

/* Promotions */
.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-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for items */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-fishing-games__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-fishing-games__promo-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD700;
  padding: 0 15px;
}

.page-fishing-games__promo-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 25px;
  padding: 0 15px;
}

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

.page-fishing-games__feature-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)); /* Gold glow */
}

.page-fishing-games__feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-fishing-games__feature-description {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

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

/* FAQ container style */
.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* FAQ default state - answer 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, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #e0e0e0;
  background-color: #1a1a1a;
}

/* FAQ expanded state - 🚨 Use!important and sufficiently large max-height */
.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important; /* 🚨 Use!important ensure priority, large enough value */
  padding: 20px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

/* Question style */
.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1A2B4C; /* Dark blue background */
  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: #2b3e63; /* Slightly lighter dark blue on hover */
}

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

/* Question title style */
.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold text */
  pointer-events: none; /* Prevent h3 from blocking click events */
}

/* Toggle icon */
.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click events */
  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: #ffffff;
  transform: rotate(180deg);
}

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

.page-fishing-games__blog-card {
  background-color: #1A2B4C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-fishing-games__blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__blog-card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 20px 10px;
  line-height: 1.4;
}

.page-fishing-games__blog-card-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__blog-card-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-fishing-games__blog-card-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 20px 15px;
}

.page-fishing-games__blog-card-date {
  display: block;
  font-size: 14px;
  color: #aaa;
  margin: 0 20px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 40px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .page-fishing-games__hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__section, 
  .page-fishing-games__container, 
  .page-fishing-games__game-card, 
  .page-fishing-games__benefit-item,
  .page-fishing-games__step-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__feature-item,
  .page-fishing-games__faq-item,
  .page-fishing-games__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__hero-section {
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .page-fishing-games__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn {
    width: 100%;
  }

  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-fishing-games__section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 15px;
  }

  .page-fishing-games__game-grid, 
  .page-fishing-games__benefits-list, 
  .page-fishing-games__guide-steps, 
  .page-fishing-games__promo-grid, 
  .page-fishing-games__security-features, 
  .page-fishing-games__blog-grid {
    gap: 20px;
  }
  .page-fishing-games__game-card-title, .page-fishing-games__benefit-title, .page-fishing-games__step-title, .page-fishing-games__promo-card-title, .page-fishing-games__feature-title, .page-fishing-games__blog-card-title {
    font-size: 20px;
  }
  .page-fishing-games__game-card-description, .page-fishing-games__benefit-description, .page-fishing-games__step-description, .page-fishing-games__promo-card-description, .page-fishing-games__feature-description, .page-fishing-games__blog-card-excerpt {
    font-size: 14px;
  }
  .page-fishing-games__game-card-image, .page-fishing-games__promo-card-image, .page-fishing-games__blog-card-image {
    height: 180px;
  }
  .page-fishing-games__tips-block {
    padding: 20px;
  }
  .page-fishing-games__tips-title {
    font-size: 22px;
  }
  .page-fishing-games__tips-list li {
    font-size: 14px;
  }

  .page-fishing-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-fishing-games__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 15px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 28px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-fishing-games__game-card-image, .page-fishing-games__promo-card-image, .page-fishing-games__blog-card-image {
    height: 160px;
  }
  .page-fishing-games__step-icon {
    width: 60px;
    height: 60px;
  }
  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }
}