/* style/slots-games-fishing-games.css */
.page-slots-games-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #1A1A2E;
  line-height: 1.6;
}

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

.page-slots-games-fishing-games__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5c 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-slots-games-fishing-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-slots-games-fishing-games__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-slots-games-fishing-games__hero-buttons .page-slots-games-fishing-games__btn {
  margin: 0 15px;
}

.page-slots-games-fishing-games__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slots-games-fishing-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-slots-games-fishing-games__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slots-games-fishing-games p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-slots-games-fishing-games__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-fishing-games__list,
.page-slots-games-fishing-games__feature-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-slots-games-fishing-games__list li,
.page-slots-games-fishing-games__feature-list li {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-slots-games-fishing-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-slots-games-fishing-games__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-slots-games-fishing-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slots-games-fishing-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slots-games-fishing-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-3px);
}

.page-slots-games-fishing-games__cta-content {
  text-align: center;
  background-color: #2A2A4A;
  padding: 50px;
  border-radius: 10px;
  margin: 40px auto;
}

.page-slots-games-fishing-games__cta-content .page-slots-games-fishing-games__section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-slots-games-fishing-games__cta-content .page-slots-games-fishing-games__section-title::after {
  background-color: #FFD700;
}

.page-slots-games-fishing-games__cta-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-slots-games-fishing-games__cta-buttons .page-slots-games-fishing-games__btn {
  margin: 0 15px;
}

.page-slots-games-fishing-games__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-fishing-games__image--full-width {
  width: 100%;
}

.page-slots-games-fishing-games__image--medium {
  width: 75%;
}

.page-slots-games-fishing-games__image--small {
  width: 60%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-slots-games-fishing-games__hero-title {
    font-size: 2.5em;
  }

  .page-slots-games-fishing-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-slots-games-fishing-games__section-title {
    font-size: 2em;
  }

  .page-slots-games-fishing-games__sub-title {
    font-size: 1.5em;
  }

  .page-slots-games-fishing-games__hero-buttons .page-slots-games-fishing-games__btn,
  .page-slots-games-fishing-games__cta-buttons .page-slots-games-fishing-games__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }

  .page-slots-games-fishing-games__image--medium,
  .page-slots-games-fishing-games__image--small {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-slots-games-fishing-games__hero-title {
    font-size: 2em;
  }

  .page-slots-games-fishing-games__hero-subtitle {
    font-size: 1em;
  }

  .page-slots-games-fishing-games__section-title {
    font-size: 1.8em;
  }

  .page-slots-games-fishing-games__sub-title {
    font-size: 1.3em;
  }

  .page-slots-games-fishing-games__cta-content {
    padding: 30px 20px;
  }
}