/* style/fishing-games.css */

/* Base styles for the fishing-games page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000; /* Inherited from body via shared.css */
}

/* Fixed header spacing */
.page-fishing-games__hero-banner {
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-fishing-games__hero-banner {
    padding-top: 100px; /* Adjust for fixed header on mobile */
  }
}

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

.page-fishing-games__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-fishing-games__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

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

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

.page-fishing-games__text-block strong {
  color: #FFD700;
}

/* Hero Banner Section */
.page-fishing-games__hero-banner {
  background: linear-gradient(135deg, #0A2463 0%, #000 100%); /* Dark blue to black gradient */
  padding-bottom: 80px;
  text-align: center;
}

.page-fishing-games__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: 48px;
  color: #FFD700; /* Gold color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 40px;
}

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

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

.page-fishing-games__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e0b000;
  border-color: #e0b000;
  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: #0A2463;
  transform: translateY(-2px);
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Introduction Section */
.page-fishing-games__introduction {
  background-color: #1a1a1a;
}

.page-fishing-games__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-fishing-games__image-full {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

/* Advantages Section */
.page-fishing-games__advantages {
  background-color: #0A2463;
}

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

.page-fishing-games__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffffff;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__card-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-fishing-games__card-text {
  font-size: 16px;
  color: #f0f0f0;
}

/* Popular Games Section */
.page-fishing-games__popular-games {
  background-color: #1a1a1a;
}

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

.page-fishing-games__game-item {
  background-color: #2a2a2a; /* Darker background for game cards */
  padding: 25px;
  text-align: center;
  color: #ffffff;
}

.page-fishing-games__game-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-fishing-games__game-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-fishing-games__btn-play {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

/* Guide Section */
.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games__guide-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__guide-step-title {
  font-size: 24px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-fishing-games__guide-item p {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-fishing-games__guide-item a {
  color: #FFD700;
  text-decoration: underline;
}

.page-fishing-games__guide-item a:hover {
  color: #e0b000;
}

/* Promotions Section */
.page-fishing-games__promotions {
  background-color: #1a1a1a;
}

.page-fishing-games__promo-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__promo-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffffff;
}

.page-fishing-games__promo-icon-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #0A2463;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-fishing-games__promo-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-fishing-games__promo-title {
  font-size: 20px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-fishing-games__promo-content p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Security Section */
.page-fishing-games__security {
  background-color: #0A2463;
}

.page-fishing-games__security-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__security-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffffff;
}

.page-fishing-games__security-title {
  font-size: 22px;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

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

/* FAQ Section */
.page-fishing-games__faq {
  background-color: #1a1a1a;
}

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

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #2a2a2a;
  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: #3a3a3a;
}

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

.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;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.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;
  font-size: 16px;
  color: #f0f0f0;
}

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

.page-fishing-games__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #202020;
  border-radius: 0 0 5px 5px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Change + to X (rotated +) */
}

/* Conclusion Section */
.page-fishing-games__conclusion {
  background-color: #0A2463;
  text-align: center;
  padding-bottom: 80px;
}

.page-fishing-games__conclusion .page-fishing-games__text-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 20px;
}

.page-fishing-games__conclusion .page-fishing-games__text-block a {
  color: #FFD700;
  text-decoration: underline;
}

.page-fishing-games__conclusion .page-fishing-games__text-block a:hover {
  color: #e0b000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 40px;
  }
  .page-fishing-games__hero-description {
    font-size: 20px;
  }
  .page-fishing-games__section-title {
    font-size: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 17px;
  }
  .page-fishing-games__grid-3-cols, .page-fishing-games__game-list, .page-fishing-games__promo-list, .page-fishing-games__security-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__main-title {
    font-size: 32px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary, .page-fishing-games__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-fishing-games__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 16px;
  }
  .page-fishing-games__card, .page-fishing-games__game-item, .page-fishing-games__promo-item, .page-fishing-games__security-item {
    padding: 20px;
  }
  .page-fishing-games__card-title, .page-fishing-games__game-title, .page-fishing-games__promo-title, .page-fishing-games__security-title {
    font-size: 20px;
  }
  .page-fishing-games__promo-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-fishing-games__promo-icon-wrapper {
    margin-bottom: 15px;
  }
  .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: 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;
  }
  /* Mobile responsive image adaptation */
  .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,
  .page-fishing-games__game-item,
  .page-fishing-games__promo-item,
  .page-fishing-games__security-item,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}