/* style/fishing-games-bonus-features.css */
.page-fishing-games-bonus-features {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Main background color */
  line-height: 1.6;
}

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

.page-fishing-games-bonus-features__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-fishing-games-bonus-features__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:fishing_ocean,abstract,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-fishing-games-bonus-features__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-fishing-games-bonus-features__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-fishing-games-bonus-features__subtitle {
  font-size: 1.5em;
  color: #CBD5E0;
  margin-bottom: 40px;
}

.page-fishing-games-bonus-features__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-bonus-features__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.page-fishing-games-bonus-features__cta-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-fishing-games-bonus-features__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-bonus-features__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games-bonus-features__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-bonus-features__intro-section,
.page-fishing-games-bonus-features__features-grid-section,
.page-fishing-games-bonus-features__bonus-mechanisms-section,
.page-fishing-games-bonus-features__strategy-section,
.page-fishing-games-bonus-features__cta-section {
  padding: 60px 0;
  background-color: #2D3748; /* Slightly lighter dark background */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-bonus-features__intro-section {
  background-color: #1A202C;
  padding: 80px 0;
}

.page-fishing-games-bonus-features__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-bonus-features__section-description {
  font-size: 1.1em;
  color: #CBD5E0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-bonus-features__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-fishing-games-bonus-features__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-fishing-games-bonus-features__text-content {
  flex: 1;
}

.page-fishing-games-bonus-features__text-content p {
  margin-bottom: 15px;
  color: #E2E8F0;
  font-size: 1.05em;
}

.page-fishing-games-bonus-features__text-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-fishing-games-bonus-features__image-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-fishing-games-bonus-features__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.page-fishing-games-bonus-features__image:hover {
  transform: scale(1.02);
}

.page-fishing-games-bonus-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-bonus-features__grid-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games-bonus-features__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: #FFD700;
}

.page-fishing-games-bonus-features__grid-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-fishing-games-bonus-features__grid-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games-bonus-features__grid-text {
  color: #CBD5E0;
  font-size: 0.95em;
}

.page-fishing-games-bonus-features__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games-bonus-features__strategy-list li {
  background-color: #1A202C;
  border-left: 5px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.1em;
  color: #E2E8F0;
  transition: background-color 0.3s ease;
}

.page-fishing-games-bonus-features__strategy-list li:hover {
  background-color: #2D3748;
}

.page-fishing-games-bonus-features__strategy-list li strong {
  color: #FFD700;
}

.page-fishing-games-bonus-features__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #1A202C;
  border-top: 5px solid #FFD700;
}

.page-fishing-games-bonus-features__cta-section .page-fishing-games-bonus-features__cta-group {
  margin-top: 40px;
}

.highlight-text {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-bonus-features__main-title {
    font-size: 2.8em;
  }

  .page-fishing-games-bonus-features__subtitle {
    font-size: 1.3em;
  }

  .page-fishing-games-bonus-features__section-title {
    font-size: 2em;
  }

  .page-fishing-games-bonus-features__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games-bonus-features__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-fishing-games-bonus-features__image-box {
    order: -1; /* Image first on mobile for reversed content */
  }

  .page-fishing-games-bonus-features__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-bonus-features__hero-section,
  .page-fishing-games-bonus-features__intro-section,
  .page-fishing-games-bonus-features__features-grid-section,
  .page-fishing-games-bonus-features__bonus-mechanisms-section,
  .page-fishing-games-bonus-features__strategy-section,
  .page-fishing-games-bonus-features__cta-section {
    padding: 50px 0;
  }

  .page-fishing-games-bonus-features__main-title {
    font-size: 2.2em;
  }

  .page-fishing-games-bonus-features__subtitle {
    font-size: 1.1em;
  }

  .page-fishing-games-bonus-features__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games-bonus-features__cta-group {
    flex-direction: column;
  }

  .page-fishing-games-bonus-features__cta-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-fishing-games-bonus-features__text-content h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-bonus-features__main-title {
    font-size: 1.8em;
  }

  .page-fishing-games-bonus-features__subtitle {
    font-size: 1em;
  }

  .page-fishing-games-bonus-features__section-title {
    font-size: 1.5em;
  }

  .page-fishing-games-bonus-features__cta-button {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games-bonus-features__grid-item {
    padding: 20px;
  }

  .page-fishing-games-bonus-features__grid-icon {
    width: 60px;
    height: 60px;
  }

  .page-fishing-games-bonus-features__grid-title {
    font-size: 1.4em;
  }
}