/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000 (dark), so main text is light */
  background-color: #000; /* Ensure body has dark background */
}

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

.page-fishing-games__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-fishing-games__dark-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-fishing-games__medium-bg {
  background-color: #0d0d0d; /* Slightly lighter dark for contrast variation */
  color: #ffffff;
}

.page-fishing-games__text-center {
  text-align: center;
}

.page-fishing-games__section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffc107; /* Highlight titles with auxiliary color */
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-fishing-games__content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  margin-top: 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ffc107;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

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

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

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

.page-fishing-games__btn-primary {
  background-color: #ffc107;
  color: #000000;
  border: 2px solid #ffc107;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: #ffc107;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.page-fishing-games__btn-inline {
  margin-top: 20px;
}

.page-fishing-games__btn-small {
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  background-color: #007bff;
  color: #ffffff;
  border: 1px solid #007bff;
  margin-top: 15px;
}

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

.page-fishing-games__btn-link {
  display: inline-block;
  margin-top: 10px;
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.page-fishing-games__btn-link:hover {
  color: #e0a800;
  text-decoration: underline;
}

.page-fishing-games__btn-large {
  padding: 18px 40px;
  font-size: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

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

.page-fishing-games__game-card {
  background-color: #0d0d0d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

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

.page-fishing-games__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__game-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 10px;
  padding: 0 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-fishing-games__game-card-text {
  font-size: 15px;
  color: #e0e0e0;
  padding: 0 20px;
  margin-bottom: 15px;
  flex-grow: 1;
}

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

.page-fishing-games__step-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
}

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

.page-fishing-games__step-text {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  flex-grow: 1;
}

/* Promotions Section */
.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: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

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

.page-fishing-games__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__promo-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 10px;
  padding: 0 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-fishing-games__promo-card-text {
  font-size: 15px;
  color: #e0e0e0;
  padding: 0 20px;
  margin-bottom: 15px;
  flex-grow: 1;
}

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

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

.page-fishing-games__info-item {
  background-color: #0d0d0d;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__info-title {
  font-size: 26px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 15px;
}

.page-fishing-games__info-text {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  flex-grow: 1;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #007bff;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
  position: relative;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-fishing-games__faq-question:hover {
  background-color: #0056b3;
}

.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;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffc107;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

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

.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 25px;
  opacity: 0;
  background-color: #0d0d0d;
  color: #e0e0e0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-fishing-games__faq-answer p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  background-color: #007bff;
  padding: 80px 0;
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title {
  color: #ffffff;
  margin-bottom: 30px;
}

.page-fishing-games__conclusion-section .page-fishing-games__paragraph {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

/* Image styles */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 44px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__section-description {
    font-size: 16px;
  }
  .page-fishing-games__game-card img {
    height: 200px;
  }
  .page-fishing-games__game-card-title {
    font-size: 22px;
  }
  .page-fishing-games__promo-card img {
    
  }
  .page-fishing-games__promo-card-title {
    font-size: 20px;
  }
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-grid,
  .page-fishing-games__info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-fishing-games__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__hero-section {
    min-height: 400px;
  }
  .page-fishing-games__hero-content {
    padding: 25px;
  }
  .page-fishing-games__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-fishing-games__hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-fishing-games__hero-actions {
    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: 16px;
  }
  .page-fishing-games__cta-wrapper,
  .page-fishing-games__hero-actions {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    gap: 15px;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-fishing-games__section-description {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .page-fishing-games__paragraph {
    font-size: 15px;
  }
  .page-fishing-games__game-cards-grid,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-grid,
  .page-fishing-games__info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-fishing-games__game-card img {
    
  }
  .page-fishing-games__game-card-title {
    font-size: 20px;
  }
  .page-fishing-games__promo-card img {
    
  }
  .page-fishing-games__promo-card-title {
    font-size: 18px;
  }
  .page-fishing-games__step-title,
  .page-fishing-games__info-title {
    font-size: 22px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }
  .page-fishing-games__conclusion-section {
    padding: 60px 0;
  }
  .page-fishing-games__conclusion-section .page-fishing-games__paragraph {
    font-size: 16px;
  }
  /* Ensure all images are responsive */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  /* Exclude logo-item from general image rule if it were present */
  .page-fishing-games__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    box-sizing: border-box;
  }
}