/* style/game-types-fishing.css */

.page-game-types-fishing {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0d123d; /* Darker variant of main color for overall background */
}

.page-game-types-fishing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-fishing__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #0d123d 100%); /* Main color to darker variant */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-game-types-fishing__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-game-types-fishing__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-game-types-fishing__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-game-types-fishing__btn--primary {
  background-color: #FFC107; /* Auxiliary color */
  color: #1A237E; /* Main color for text */
  border: 2px solid #FFC107;
}

.page-game-types-fishing__btn--primary:hover {
  background-color: #e5b006;
  transform: translateY(-3px);
}

.page-game-types-fishing__btn--secondary {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
  margin-left: 15px;
}

.page-game-types-fishing__btn--secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
  transform: translateY(-3px);
}

.page-game-types-fishing__btn--tertiary {
  background-color: #1A237E;
  color: #FFC107;
  border: 2px solid #1A237E;
  margin-left: 15px;
}

.page-game-types-fishing__btn--tertiary:hover {
  background-color: #0d123d;
  color: #FFC107;
  border-color: #FFC107;
  transform: translateY(-3px);
}

.page-game-types-fishing__section {
  padding: 60px 0;
  background-color: #1A237E; /* Main color for sections */
  margin-bottom: 20px;
}

.page-game-types-fishing__section:nth-child(even) {
  background-color: #0d123d; /* Darker variant for alternating sections */
}

.page-game-types-fishing__section-title {
  font-size: 2.8em;
  color: #FFC107;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types-fishing__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  border-radius: 2px;
}

.page-game-types-fishing__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-types-fishing__feature-grid, .page-game-types-fishing__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-types-fishing__feature-item, .page-game-types-fishing__advantage-item {
  background-color: #2c388e; /* Slightly lighter than main color */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-fishing__feature-item:hover, .page-game-types-fishing__advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-types-fishing__feature-icon, .page-game-types-fishing__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFC107);
}

.page-game-types-fishing__feature-title, .page-game-types-fishing__advantage-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-game-types-fishing__feature-description, .page-game-types-fishing__advantage-description {
  font-size: 1em;
  line-height: 1.6;
  color: #D0D0D0;
}

.page-game-types-fishing__game-list, .page-game-types-fishing__tip-list, .page-game-types-fishing__promo-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  color: #E0E0E0;
}

.page-game-types-fishing__game-list li, .page-game-types-fishing__tip-list li, .page-game-types-fishing__promo-list li {
  background-color: #2c388e;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  border-left: 5px solid #FFC107;
}

.page-game-types-fishing__game-list li strong, .page-game-types-fishing__tip-list li strong, .page-game-types-fishing__promo-list li strong {
  color: #FFC107;
}

.page-game-types-fishing__game-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.page-game-types-fishing__game-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-game-types-fishing__game-image:hover {
    transform: scale(1.05);
}

.page-game-types-fishing__cta-content {
  text-align: center;
  padding: 40px 20px;
  background-color: #2c388e;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types-fishing__cta-content .page-game-types-fishing__section-title {
  margin-bottom: 25px;
  color: #FFC107;
}

.page-game-types-fishing__cta-content .page-game-types-fishing__text-content {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-game-types-fishing__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-game-types-fishing__link {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-types-fishing__link:hover {
  color: #e5b006;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-fishing__title {
    font-size: 2.8em;
  }
  .page-game-types-fishing__subtitle {
    font-size: 1.3em;
  }
  .page-game-types-fishing__section-title {
    font-size: 2.2em;
  }
  .page-game-types-fishing__feature-grid, .page-game-types-fishing__advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-types-fishing__hero-section {
    padding: 80px 0;
  }
  .page-game-types-fishing__title {
    font-size: 2.2em;
  }
  .page-game-types-fishing__subtitle {
    font-size: 1.1em;
  }
  .page-game-types-fishing__section {
    padding: 40px 0;
  }
  .page-game-types-fishing__section-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }
  .page-game-types-fishing__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-game-types-fishing__btn--secondary, .page-game-types-fishing__btn--tertiary {
    margin-left: 0;
  }
  .page-game-types-fishing__feature-item, .page-game-types-fishing__advantage-item {
    padding: 25px;
  }
  .page-game-types-fishing__feature-title, .page-game-types-fishing__advantage-title {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-game-types-fishing__title {
    font-size: 1.8em;
  }
  .page-game-types-fishing__subtitle {
    font-size: 1em;
  }
  .page-game-types-fishing__section-title {
    font-size: 1.5em;
  }
  .page-game-types-fishing__feature-grid, .page-game-types-fishing__advantage-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-fishing__btn {
    width: 90%;
    margin: 10px auto;
  }
  .page-game-types-fishing__game-image {
    max-width: 90%;
  }
  .page-game-types-fishing__game-list li, .page-game-types-fishing__tip-list li, .page-game-types-fishing__promo-list li {
    font-size: 0.95em;
  }
}