/* style/game-types-fishing.css */
.page-game-types-fishing {
  font-family: 'Arial', sans-serif;
  color: #1A2E44; /* Dark blue for primary text */
  line-height: 1.6;
}

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

.page-game-types-fishing__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5b82 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-fishing__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_ocean_pattern,dark_blue_gold]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-game-types-fishing__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #FFD700; /* Gold for title */
}

.page-game-types-fishing__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-game-types-fishing__section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-game-types-fishing__section:nth-child(even) {
  background-color: #e9ecef;
}

.page-game-types-fishing__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-game-types-fishing__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-game-types-fishing__grid-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-types-fishing__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-game-types-fishing__grid-item h3 {
  font-size: 1.5em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-game-types-fishing__grid-item p {
  color: #333333;
  font-size: 1em;
}

.page-game-types-fishing__text-content {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 25px;
  text-align: justify;
}

.page-game-types-fishing__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-types-fishing__list li {
  background-color: #FFFFFF;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #1A2E44;
}

.page-game-types-fishing__list--icon li {
  display: flex;
  align-items: flex-start;
  background-color: transparent;
  border-left: none;
  box-shadow: none;
  padding: 10px 0;
}

.page-game-types-fishing__list-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-game-types-fishing__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin: 30px 0;
}

.page-game-types-fishing__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-fishing__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  width: 40%;
  max-width: 400px;
}

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

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

.page-game-types-fishing__bonus-text p {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 15px;
}

.page-game-types-fishing__cta-content {
  text-align: center;
  background-color: #1A2E44;
  color: #FFFFFF;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-game-types-fishing__cta-content .page-game-types-fishing__section-title {
  color: #FFD700;
}

.page-game-types-fishing__cta-content .page-game-types-fishing__section-title::after {
  background-color: #FFD700;
}

.page-game-types-fishing__cta-content .page-game-types-fishing__text-content {
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-types-fishing__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E44; /* Dark blue */
  border: 2px solid #FFD700;
}

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

.page-game-types-fishing__btn--secondary {
  background-color: #1A2E44; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #1A2E44;
}

.page-game-types-fishing__btn--secondary:hover {
  background-color: #0f1c2a;
  transform: translateY(-2px);
}

.page-game-types-fishing__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-types-fishing__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-game-types-fishing__inline-link {
  color: #1A2E44;
  font-weight: bold;
  text-decoration: underline;
}

.page-game-types-fishing__inline-link:hover {
  color: #FFD700;
}

.highlight-text {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-fishing__hero-title {
    font-size: 2.8em;
  }
  .page-game-types-fishing__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-types-fishing__section-title {
    font-size: 2em;
  }
  .page-game-types-fishing__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-game-types-fishing__image--left {
    float: none;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .page-game-types-fishing__bonus-content {
    flex-direction: column;
    text-align: center;
  }
  .page-game-types-fishing__image--left {
    order: -1; /* Move image to top on mobile */
  }
}

@media (max-width: 768px) {
  .page-game-types-fishing__hero {
    padding: 80px 0;
  }
  .page-game-types-fishing__hero-title {
    font-size: 2.2em;
  }
  .page-game-types-fishing__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-types-fishing__section {
    padding: 60px 0;
  }
  .page-game-types-fishing__section-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing__cta-content {
    padding: 40px;
  }
  .page-game-types-fishing__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types-fishing__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-game-types-fishing__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-fishing__hero-subtitle {
    font-size: 1em;
  }
  .page-game-types-fishing__section-title {
    font-size: 1.5em;
  }
  .page-game-types-fishing__grid-item h3 {
    font-size: 1.3em;
  }
  .page-game-types-fishing__text-content, .page-game-types-fishing__list li {
    font-size: 0.95em;
  }
  .page-game-types-fishing__cta-content {
    padding: 30px 20px;
  }
  .page-game-types-fishing__btn {
    width: 90%;
  }
}