/* style/game-types-fishing-games.css */
.page-game-types-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-game-types-fishing-games__hero {
  background: linear-gradient(135deg, #0A2463 0%, #2a4c9c 100%);
  padding: 80px 20px;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-game-types-fishing-games__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-types-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B505; /* Gold for highlight */
  line-height: 1.2;
}

.page-game-types-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-types-fishing-games__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  opacity: 0.2;
  z-index: 0;
}

.page-game-types-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.page-game-types-fishing-games__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-game-types-fishing-games__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-types-fishing-games__section-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-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: none;
}

.page-game-types-fishing-games__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
}

.page-game-types-fishing-games__btn--primary:hover {
  background-color: #f5c92f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227, 181, 5, 0.3);
}

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

.page-game-types-fishing-games__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227, 181, 5, 0.3);
}

.page-game-types-fishing-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-game-types-fishing-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-types-fishing-games__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-game-types-fishing-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-types-fishing-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-game-types-fishing-games__feature-heading {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-game-types-fishing-games__feature-text {
  color: #666;
}

.page-game-types-fishing-games__hall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-types-fishing-games__hall-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.page-game-types-fishing-games__hall-item:hover {
  transform: translateY(-8px);
}

.page-game-types-fishing-games__hall-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-game-types-fishing-games__hall-name {
  font-size: 1.6em;
  color: #0A2463;
  margin: 20px 0 10px;
}

.page-game-types-fishing-games__hall-description {
  padding: 0 20px 20px;
  color: #555;
}

.page-game-types-fishing-games__cta-banner {
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

.page-game-types-fishing-games__cta-banner--promo {
  background: linear-gradient(90deg, #0A2463, #3a5aa8);
}

.page-game-types-fishing-games__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  line-height: 1.4;
}

.page-game-types-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-game-types-fishing-games__guide-list li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #E3B505;
}

.page-game-types-fishing-games__guide-list li:last-child {
  margin-bottom: 0;
}

.page-game-types-fishing-games__guide-heading {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-game-types-fishing-games__guide-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-game-types-fishing-games__tip-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-top: 4px solid #E3B505;
}

.page-game-types-fishing-games__tip-heading {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-game-types-fishing-games__tips-image {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-types-fishing-games__promo-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.page-game-types-fishing-games__promo-list li:hover {
  transform: translateY(-5px);
  border-left: 5px solid #E3B505;
}

.page-game-types-fishing-games__promo-heading {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

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

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

.page-game-types-fishing-games__app-text ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

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

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

.page-game-types-fishing-games__conclusion-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-game-types-fishing-games .highlight {
  color: #E3B505;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-types-fishing-games__hero-title {
    font-size: 3em;
  }
  .page-game-types-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-types-fishing-games__hero-image-wrapper {
    width: 300px;
    height: 300px;
    bottom: -30px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .page-game-types-fishing-games__hero {
    padding: 60px 15px;
  }
  .page-game-types-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-types-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-game-types-fishing-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types-fishing-games__section {
    padding: 40px 15px;
  }
  .page-game-types-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing-games__cta-text {
    font-size: 1.2em;
  }
  .page-game-types-fishing-games__feature-grid, 
  .page-game-types-fishing-games__hall-grid, 
  .page-game-types-fishing-games__tips-grid, 
  .page-game-types-fishing-games__promo-list {
    grid-template-columns: 1fr;
  }
  .page-game-types-fishing-games__app-content {
    flex-direction: column-reverse;
  }
  .page-game-types-fishing-games__app-image-wrapper {
    order: -1;
  }
  .page-game-types-fishing-games__hero-image-wrapper {
    display: none; /* Hide on smaller screens */
  }
}