.page-fishing-games-platforms {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-fishing-games-platforms__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-fishing-games-platforms__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-platforms__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: page-fishing-games-platforms__ripple 15s infinite linear;
}

@keyframes page-fishing-games-platforms__ripple {
  0% { transform: scale(0.5) rotate(0deg); opacity: 0.5; }
  50% { transform: scale(1) rotate(180deg); opacity: 0.7; }
  100% { transform: scale(0.5) rotate(360deg); opacity: 0.5; }
}

.page-fishing-games-platforms__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffc107; /* Auxiliary color for emphasis */
  position: relative;
  z-index: 1;
}

.page-fishing-games-platforms__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-fishing-games-platforms__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border: none;
}

.page-fishing-games-platforms__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #0056b3; /* Darker primary for contrast */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-fishing-games-platforms__btn--primary:hover {
  background-color: #e0a800; /* Darker auxiliary */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-fishing-games-platforms__btn--secondary {
  background-color: #007bff; /* Primary color */
  color: #fff;
  border: 2px solid #ffc107; /* Auxiliary border */
  padding: 12px 25px;
}

.page-fishing-games-platforms__btn--secondary:hover {
  background-color: #0056b3; /* Darker primary */
  border-color: #e0a800;
  transform: translateY(-3px);
}

.page-fishing-games-platforms__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 25px;
}

.page-fishing-games-platforms__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-fishing-games-platforms__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-fishing-games-platforms__sub-title {
  font-size: 1.8em;
  color: #007bff; /* Primary color */
  margin-bottom: 20px;
}

.page-fishing-games-platforms__introduction-section,
.page-fishing-games-platforms__featured-platforms,
.page-fishing-games-platforms__gameplay-tips,
.page-fishing-games-platforms__app-download-section,
.page-fishing-games-platforms__faq-section,
.page-fishing-games-platforms__cta-bottom {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background for content */
}

.page-fishing-games-platforms__introduction-section {
  background-color: #fff;
}

.page-fishing-games-platforms__image-text-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-platforms__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games-platforms__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-platforms__text-content {
  flex: 2;
  min-width: 300px;
}

.page-fishing-games-platforms__text-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games-platforms__text-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #495057;
}

.page-fishing-games-platforms__text-content ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffc107; /* Auxiliary color */
  font-weight: bold;
}

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

.page-fishing-games-platforms__platform-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-platforms__platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-platforms__card-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.page-fishing-games-platforms__card-title {
  font-size: 1.8em;
  color: #007bff; /* Primary color */
  margin-bottom: 15px;
}

.page-fishing-games-platforms__card-description {
  color: #555;
  margin-bottom: 25px;
  min-height: 90px; /* Ensure consistent card height */
}

.page-fishing-games-platforms__cta-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 50px;
  color: #007bff; /* Primary color */
  font-weight: bold;
}

.page-fishing-games-platforms__center-button {
  text-align: center;
  margin-top: 30px;
}

.page-fishing-games-platforms__gameplay-tips {
  background-color: #e9f5ff; /* Lighter primary background */
}

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

.page-fishing-games-platforms__tip-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games-platforms__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-fishing-games-platforms__tip-card .page-fishing-games-platforms__card-title {
  font-size: 1.5em;
  color: #007bff; /* Primary color */
  margin-bottom: 10px;
}

.page-fishing-games-platforms__tip-card p {
  color: #666;
  font-size: 0.95em;
}

.page-fishing-games-platforms__app-download-section {
  background-color: #fff;
}

.page-fishing-games-platforms__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-fishing-games-platforms__app-text {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games-platforms__app-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-fishing-games-platforms__app-features li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
}

.page-fishing-games-platforms__icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.page-fishing-games-platforms__icon--check::before {
  content: '✓';
  color: #ffc107; /* Auxiliary color */
  font-weight: bold;
  font-size: 1.2em;
}

.page-fishing-games-platforms__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-fishing-games-platforms__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-platforms__faq-section {
  background-color: #f8f9fa;
}

.page-fishing-games-platforms__faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px;
  border-left: 5px solid #007bff; /* Primary color accent */
}

.page-fishing-games-platforms__faq-question {
  font-size: 1.3em;
  color: #007bff; /* Primary color */
  margin-bottom: 10px;
  cursor: pointer;
}

.page-fishing-games-platforms__faq-answer {
  color: #555;
  font-size: 1em;
  display: block; /* Ensure visibility */
}

.page-fishing-games-platforms__faq-answer a {
  color: #007bff; /* Primary color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games-platforms__faq-answer a:hover {
  text-decoration: underline;
}

.page-fishing-games-platforms__cta-bottom {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #007bff, #ffc107);
  color: #fff;
}

.page-fishing-games-platforms__cta-bottom .page-fishing-games-platforms__section-title {
  color: #fff;
}

.page-fishing-games-platforms__cta-bottom .page-fishing-games-platforms__section-title::after {
  background-color: #fff;
}

.page-fishing-games-platforms__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-platforms__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-platforms__hero-subtitle {
    font-size: 1.3em;
  }
  .page-fishing-games-platforms__section-title {
    font-size: 2em;
  }
  .page-fishing-games-platforms__image-text-layout {
    flex-direction: column;
  }
  .page-fishing-games-platforms__app-content {
    flex-direction: column-reverse; /* App image on top for mobile */
  }
  .page-fishing-games-platforms__text-content, .page-fishing-games-platforms__app-text {
    text-align: center;
  }
  .page-fishing-games-platforms__text-content ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-platforms__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-platforms__hero-subtitle {
    font-size: 1.1em;
  }
  .page-fishing-games-platforms__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-fishing-games-platforms__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-platforms__sub-title {
    font-size: 1.5em;
  }
  .page-fishing-games-platforms__platform-card,
  .page-fishing-games-platforms__tip-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .page-fishing-games-platforms__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-platforms__hero-subtitle {
    font-size: 1em;
  }
  .page-fishing-games-platforms__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-platforms__card-description {
    min-height: auto;
  }
  .page-fishing-games-platforms__text-content ul li {
    padding-left: 0;
  }
  .page-fishing-games-platforms__text-content ul li::before {
    left: -20px;
  }
}