/* style/fishing-games.css */

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

.page-fishing-games .highlight {
  color: #FFCC00;
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  background: linear-gradient(135deg, #003366, #1a4a7a);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:fishing_game_underwater,abstract_water_texture]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
}

.page-fishing-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

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

/* General Buttons */
.page-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-fishing-games__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

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

.page-fishing-games__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border-color: #FFCC00;
}

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

.page-fishing-games__btn--download {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-fishing-games__btn--download::before {
  content: '⬇️'; /* Unicode for download arrow */
  font-size: 1.2em;
}

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

.page-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-fishing-games__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-fishing-games__btn--outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-fishing-games__btn--outline-light:hover {
  background-color: #ffffff;
  color: #003366;
  border-color: #ffffff;
}

/* Sections */
.page-fishing-games__section {
  padding: 80px 0;
}

.page-fishing-games__section--dark {
  background-color: #003366;
  color: #ffffff;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}

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

.page-fishing-games__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #555555;
}

.page-fishing-games__section-intro--light {
  color: #e0e0e0;
}

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

.page-fishing-games__feature-item {
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 1em;
  color: #666666;
}

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

.page-fishing-games__game-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-fishing-games__game-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Strategy Section */
.page-fishing-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__strategy-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-fishing-games__strategy-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games__strategy-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-fishing-games__strategy-description {
  font-size: 0.95em;
  color: #666666;
}

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

.page-fishing-games__promo-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 204, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__promo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-fishing-games__promo-title {
  font-size: 1.5em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-fishing-games__promo-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

/* App Section */
.page-fishing-games__app-section {
  background-color: #f0f4f8;
  padding: 100px 0;
}

.page-fishing-games__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-fishing-games__app-text {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-fishing-games__app-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

.page-fishing-games__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-fishing-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-fishing-games__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
  margin-top: 15px;
}

.page-fishing-games__faq-answer.active {
  display: block;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__app-image {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 80px 0;
  }
  .page-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-buttons, .page-fishing-games__app-buttons, .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-fishing-games__section {
    padding: 60px 0;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-intro {
    font-size: 0.95em;
  }
  .page-fishing-games__features-grid, .page-fishing-games__game-grid, .page-fishing-games__strategy-grid, .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-section {
    padding: 60px 0;
  }
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 0.9em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__btn--large {
    font-size: 1.1em;
  }
}