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

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

/* Hero Section */
.page-game-categories-fishing-games__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-categories-fishing-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="wave" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 0 5 Q 2.5 0 5 5 T 10 5" stroke="rgba(255,255,255,0.1)" fill="none"/></pattern></defs><rect x="0" y="0" width="100%" height="100%" fill="url(%23wave)"/></svg>') center center/200px 200px repeat;
  opacity: 0.1;
  z-index: 0;
}

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

.page-game-categories-fishing-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-categories-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-categories-fishing-games__hero-image {
  max-width: 500px;
  z-index: 1;
}

.page-game-categories-fishing-games__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-game-categories-fishing-games__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-categories-fishing-games__btn--primary {
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast */
  border: 2px solid #ffc107;
}

.page-game-categories-fishing-games__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

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

.page-game-categories-fishing-games__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-game-categories-fishing-games__btn--app-store,
.page-game-categories-fishing-games__btn--google-play {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-game-categories-fishing-games__btn--app-store:hover,
.page-game-categories-fishing-games__btn--google-play:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
}

.page-game-categories-fishing-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Section Styling */
.page-game-categories-fishing-games__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-game-categories-fishing-games__section:nth-of-type(even) {
  background-color: #f0f8ff; /* Light blue tint */
}

.page-game-categories-fishing-games__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-categories-fishing-games__subsection-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

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

.page-game-categories-fishing-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-game-categories-fishing-games__content-grid--reversed {
  grid-template-columns: 1fr 1fr;
  direction: rtl; /* Reverse order for content and image */
}

.page-game-categories-fishing-games__content-grid--reversed > * {
  direction: ltr; /* Restore text direction */
}

.page-game-categories-fishing-games__text-block p {
  margin-bottom: 15px;
  color: #444;
}

.page-game-categories-fishing-games__text-block strong {
  color: #007bff;
}

.page-game-categories-fishing-games__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Game List */
.page-game-categories-fishing-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-game-categories-fishing-games__game-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-categories-fishing-games__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-categories-fishing-games__game-item img {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-game-categories-fishing-games__game-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-game-categories-fishing-games__game-item p {
  color: #666;
  font-size: 0.95em;
}

/* Feature List */
.page-game-categories-fishing-games__feature-list,
.page-game-categories-fishing-games__promo-list,
.page-game-categories-fishing-games__safety-list,
.page-game-categories-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-game-categories-fishing-games__feature-list li,
.page-game-categories-fishing-games__promo-list li,
.page-game-categories-fishing-games__safety-list li,
.page-game-categories-fishing-games__strategy-list li {
  background-color: #e6f2ff; /* Light blue for list items */
  border-left: 5px solid #007bff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.page-game-categories-fishing-games__feature-list li strong,
.page-game-categories-fishing-games__promo-list li strong,
.page-game-categories-fishing-games__safety-list li strong,
.page-game-categories-fishing-games__strategy-list li strong {
  color: #0056b3;
}

/* Steps Grid */
.page-game-categories-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-game-categories-fishing-games__step-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
}

.page-game-categories-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast */
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-categories-fishing-games__step-item h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-game-categories-fishing-games__step-item p {
  color: #555;
  font-size: 1em;
}

.page-game-categories-fishing-games__step-item img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 8px;
}

.page-game-categories-fishing-games__step-item a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-game-categories-fishing-games__step-item a:hover {
  text-decoration: underline;
}

/* CTA Block */
.page-game-categories-fishing-games__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #e6f2ff; /* Light blue tint */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-game-categories-fishing-games__cta-block p {
  font-size: 1.3em;
  color: #0056b3;
  margin-bottom: 25px;
  font-weight: bold;
}

/* App Buttons */
.page-game-categories-fishing-games__app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-game-categories-fishing-games__faq-items {
  margin-top: 40px;
}

.page-game-categories-fishing-games__faq-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-categories-fishing-games__faq-item h3 {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-game-categories-fishing-games__faq-item p {
  color: #555;
  font-size: 1em;
}

/* Conclusion Section */
.page-game-categories-fishing-games__section--conclusion {
  text-align: center;
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
}

.page-game-categories-fishing-games__section--conclusion .page-game-categories-fishing-games__section-title {
  color: #ffc107;
}

.page-game-categories-fishing-games__section--conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-categories-fishing-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-categories-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-game-categories-fishing-games__content-grid,
  .page-game-categories-fishing-games__content-grid--reversed {
    grid-template-columns: 1fr;
    direction: ltr; /* Reset for smaller screens */
  }
  .page-game-categories-fishing-games__content-grid--reversed > * {
    direction: ltr;
  }
  .page-game-categories-fishing-games__hero-image {
    order: -1; /* Image above text on mobile */
  }
  .page-game-categories-fishing-games__section-title {
    font-size: 2em;
  }
  .page-game-categories-fishing-games__subsection-title {
    font-size: 1.5em;
  }
  .page-game-categories-fishing-games__game-list,
  .page-game-categories-fishing-games__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-categories-fishing-games__hero {
    padding: 60px 20px;
  }
  .page-game-categories-fishing-games__hero-title {
    font-size: 2em;
  }
  .page-game-categories-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-game-categories-fishing-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-categories-fishing-games__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-game-categories-fishing-games__section {
    padding: 40px 0;
  }
  .page-game-categories-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-game-categories-fishing-games__subsection-title {
    font-size: 1.3em;
  }
  .page-game-categories-fishing-games__game-item h3 {
    font-size: 1.3em;
  }
  .page-game-categories-fishing-games__step-item h3 {
    font-size: 1.4em;
  }
  .page-game-categories-fishing-games__cta-block p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-categories-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-game-categories-fishing-games__hero-description {
    font-size: 0.95em;
  }
  .page-game-categories-fishing-games__hero-actions {
    flex-direction: column;
  }
  .page-game-categories-fishing-games__btn {
    width: 100%;
    margin: 5px 0;
  }
  .page-game-categories-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-game-categories-fishing-games__section-intro {
    font-size: 0.95em;
  }
  .page-game-categories-fishing-games__app-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-game-categories-fishing-games__app-buttons .page-game-categories-fishing-games__btn {
    width: auto; /* Reset width for app buttons */
    max-width: 250px;
  }
  .page-game-categories-fishing-games__feature-list li,
  .page-game-categories-fishing-games__promo-list li,
  .page-game-categories-fishing-games__safety-list li,
  .page-game-categories-fishing-games__strategy-list li {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-game-categories-fishing-games__faq-item h3 {
    font-size: 1.2em;
  }
  .page-game-categories-fishing-games__faq-item p {
    font-size: 0.9em;
  }
}