.page-slots-games-fishing {
  font-family: 'Arial', sans-serif;
  color: #E0B400; /* Default text color for contrast */
  background-color: #0A2342;
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

.page-slots-games-fishing__section-title {
  font-size: 2.8em;
  color: #E0B400;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-slots-games-fishing__section-description {
  font-size: 1.1em;
  color: #D3D3D3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-slots-games-fishing .highlight {
  color: #E0B400;
}

.page-slots-games-fishing__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;
}

.page-slots-games-fishing__btn--primary {
  background-color: #E0B400;
  color: #0A2342;
  border: 2px solid #E0B400;
}

.page-slots-games-fishing__btn--primary:hover {
  background-color: #FFC72C;
  border-color: #FFC72C;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(224, 180, 0, 0.4);
}

.page-slots-games-fishing__btn--secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-slots-games-fishing__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(224, 180, 0, 0.4);
}

.page-slots-games-fishing__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-slots-games-fishing__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-slots-games-fishing__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3E6C 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-slots-games-fishing__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:underwater_pattern,subtle,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-slots-games-fishing__hero-content {
  max-width: 600px;
  text-align: left;
  z-index: 1;
  padding: 20px;
}

.page-slots-games-fishing__hero-title {
  font-size: 3.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.page-slots-games-fishing__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-slots-games-fishing__hero-actions {
  display: flex;
  gap: 20px;
}

.page-slots-games-fishing__hero-image-wrapper {
  z-index: 1;
  animation: floatImage 3s ease-in-out infinite;
}

.page-slots-games-fishing__hero-image {
  max-width: 550px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Introduction Section */
.page-slots-games-fishing__introduction {
  padding: 80px 0;
  background-color: #071C35;
  text-align: center;
}

.page-slots-games-fishing__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slots-games-fishing__feature-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid rgba(224, 180, 0, 0.2);
}

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

.page-slots-games-fishing__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.6));
}

.page-slots-games-fishing__feature-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slots-games-fishing__feature-text {
  color: #D3D3D3;
  font-size: 1em;
}

.page-slots-games-fishing__cta-bottom {
  margin-top: 60px;
}

/* Gameplay Section */
.page-slots-games-fishing__gameplay {
  padding: 80px 0;
  background-color: #0A2342;
  text-align: center;
}

.page-slots-games-fishing__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-slots-games-fishing__step-item {
  background-color: #071C35;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(224, 180, 0, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slots-games-fishing__step-number {
  width: 50px;
  height: 50px;
  background-color: #E0B400;
  color: #0A2342;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(224, 180, 0, 0.5);
}

.page-slots-games-fishing__step-title {
  font-size: 1.5em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slots-games-fishing__step-text {
  color: #D3D3D3;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slots-games-fishing__step-image {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-slots-games-fishing__promo {
  padding: 80px 0;
  background-color: #071C35;
  text-align: center;
}

.page-slots-games-fishing__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slots-games-fishing__promo-card {
  background-color: #0A2342;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(224, 180, 0, 0.2);
}

.page-slots-games-fishing__promo-card:hover {
  transform: translateY(-8px);
}

.page-slots-games-fishing__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(224, 180, 0, 0.3);
}

.page-slots-games-fishing__promo-title {
  font-size: 1.6em;
  color: #E0B400;
  padding: 20px 15px 10px;
  font-weight: 600;
}

.page-slots-games-fishing__promo-text {
  color: #D3D3D3;
  font-size: 1em;
  padding: 0 15px 25px;
}

/* App Download Section */
.page-slots-games-fishing__app-download {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-slots-games-fishing__app-download .page-slots-games-fishing__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.page-slots-games-fishing__app-content {
  max-width: 550px;
  text-align: left;
}

.page-slots-games-fishing__app-content .page-slots-games-fishing__section-title {
  text-align: left;
  font-size: 2.5em;
}

.page-slots-games-fishing__app-content .page-slots-games-fishing__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
}

.page-slots-games-fishing__download-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.page-slots-games-fishing__btn--app {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #E0B400;
  color: #0A2342;
  border: 2px solid #E0B400;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
}

.page-slots-games-fishing__btn--app:hover {
  background-color: #FFC72C;
  border-color: #FFC72C;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(224, 180, 0, 0.4);
}

.page-slots-games-fishing__app-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.page-slots-games-fishing__app-note {
  color: #D3D3D3;
  font-style: italic;
  font-size: 0.95em;
}

.page-slots-games-fishing__app-image-wrapper {
  flex-shrink: 0;
}

.page-slots-games-fishing__app-image {
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Safety Section */
.page-slots-games-fishing__safety {
  padding: 80px 0;
  background-color: #071C35;
  text-align: center;
}

.page-slots-games-fishing__safety-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slots-games-fishing__safety-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(224, 180, 0, 0.2);
}

.page-slots-games-fishing__safety-item:hover {
  transform: translateY(-8px);
}

.page-slots-games-fishing__safety-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.6));
}

.page-slots-games-fishing__safety-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slots-games-fishing__safety-text {
  color: #D3D3D3;
  font-size: 1em;
}

/* FAQ Section */
.page-slots-games-fishing__faq {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-slots-games-fishing__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-slots-games-fishing__faq-item {
  background-color: #071C35;
  border: 1px solid rgba(224, 180, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-slots-games-fishing__faq-question {
  font-size: 1.4em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slots-games-fishing__faq-answer {
  color: #D3D3D3;
  font-size: 1em;
}

.page-slots-games-fishing__faq-item .page-slots-games-fishing__btn {
  margin-top: 20px;
}

/* Final CTA Section */
.page-slots-games-fishing__final-cta {
  padding: 100px 0;
  background: linear-gradient(45deg, #0A2342, #1A3E6C);
  text-align: center;
  border-top: 5px solid #E0B400;
}

.page-slots-games-fishing__final-cta .page-slots-games-fishing__section-title {
  color: #FFFFFF;
  font-size: 3.2em;
}

.page-slots-games-fishing__final-cta .page-slots-games-fishing__section-description {
  color: #E0E0E0;
  margin-bottom: 60px;
}

.page-slots-games-fishing__final-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slots-games-fishing__hero-title {
    font-size: 3em;
  }
  .page-slots-games-fishing__hero-image {
    max-width: 450px;
  }
  .page-slots-games-fishing__app-image {
    max-width: 380px;
  }
  .page-slots-games-fishing__hero-content,
  .page-slots-games-fishing__app-content {
    text-align: center;
  }
  .page-slots-games-fishing__app-content .page-slots-games-fishing__section-title {
    text-align: center;
  }
  .page-slots-games-fishing__app-content .page-slots-games-fishing__section-description {
    text-align: center;
  }
  .page-slots-games-fishing__download-buttons,
  .page-slots-games-fishing__hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-slots-games-fishing__hero {
    padding: 80px 20px;
    flex-direction: column;
  }
  .page-slots-games-fishing__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games-fishing__hero-description {
    font-size: 1.1em;
  }
  .page-slots-games-fishing__section-title {
    font-size: 2.2em;
  }
  .page-slots-games-fishing__section-description {
    font-size: 1em;
  }
  .page-slots-games-fishing__hero-image {
    max-width: 100%;
  }
  .page-slots-games-fishing__app-download .page-slots-games-fishing__container {
    flex-direction: column;
  }
  .page-slots-games-fishing__app-image {
    max-width: 100%;
  }
  .page-slots-games-fishing__download-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-slots-games-fishing__final-actions {
    flex-direction: column;
    align-items: center;
  }
  .page-slots-games-fishing__btn--large {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-slots-games-fishing__hero-title {
    font-size: 2em;
  }
  .page-slots-games-fishing__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-fishing__hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .page-slots-games-fishing__btn {
    width: 90%;
    padding: 10px 15px;
  }
  .page-slots-games-fishing__btn--large {
    width: 90%;
  }
  .page-slots-games-fishing__hero-content {
    padding: 0;
  }
  .page-slots-games-fishing__app-content {
    padding: 0;
  }
  .page-slots-games-fishing__final-cta .page-slots-games-fishing__section-title {
    font-size: 2em;
  }
}