/* style/fishing-games.css */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

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

.page-fishing-games-text-center {
  text-align: center;
}

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

.page-fishing-games-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-fishing-games-hero-section > .page-fishing-games-container {
  position: relative;
  z-index: 2;
}

.page-fishing-games-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-fishing-games-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-fishing-games-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* General Section Styling */
.page-fishing-games-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-fishing-games-section:nth-of-type(even) {
  background-color: #fff;
}

.page-fishing-games-section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-fishing-games-section-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-fishing-games-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-fishing-games-btn-primary {
  background-color: #ffc107;
  color: #007bff;
  font-size: 1.1em;
}

.page-fishing-games-btn-primary:hover {
  background-color: #e0a800;
  color: #0056b3;
  transform: translateY(-2px);
}

.page-fishing-games-btn-secondary {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-fishing-games-btn-secondary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-fishing-games-btn-large {
  padding: 15px 35px;
  font-size: 1.3em;
}

/* Grid Layouts */
.page-fishing-games-grid-two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games-grid-three-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Feature Cards */
.page-fishing-games-feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-fishing-games-feature-card:hover {
  transform: translateY(-5px);
}

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

.page-fishing-games-feature-text {
  font-size: 1em;
  color: #555;
}

.page-fishing-games-feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Steps List */
.page-fishing-games-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.page-fishing-games-step-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-fishing-games-step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007bff;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-fishing-games-step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-fishing-games-step-text {
  color: #555;
}

.page-fishing-games-cta-bottom {
  text-align: center;
  margin-top: 40px;
}

/* Tips Section */
.page-fishing-games-tip-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  text-align: center;
}

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

.page-fishing-games-tip-text {
  color: #666;
}

/* Detail List Section */
.page-fishing-games-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fishing-games-detail-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.page-fishing-games-detail-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-fishing-games-detail-item > h3, .page-fishing-games-detail-item > p, .page-fishing-games-detail-item > a {
  padding: 0 25px;
}

.page-fishing-games-detail-title {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-fishing-games-detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-fishing-games-detail-title a:hover {
  text-decoration: underline;
}

.page-fishing-games-detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games-detail-item .page-fishing-games-btn-secondary {
  margin: 0 25px 25px 25px; /* Adjust margin for button */
}

/* Commitment Section */
.page-fishing-games-commitment-text {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #444;
}

/* FAQ Section */
.page-fishing-games-faq-item {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-fishing-games-faq-answer {
  color: #555;
}

/* Final CTA */
.page-fishing-games-final-cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games-final-cta-title {
  font-size: 3em;
  color: #ffc107;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-final-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games-section-title {
    font-size: 2em;
  }
  .page-fishing-games-feature-title {
    font-size: 1.5em;
  }
  .page-fishing-games-step-item {
    padding-left: 60px;
  }
  .page-fishing-games-step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-fishing-games-final-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-hero-section {
    padding: 60px 0;
  }
  .page-fishing-games-hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games-hero-description {
    font-size: 1em;
  }
  .page-fishing-games-section {
    padding: 40px 0;
  }
  .page-fishing-games-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games-grid-two-cols, .page-fishing-games-grid-three-cols, .page-fishing-games-detail-list {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-feature-card, .page-fishing-games-tip-card, .page-fishing-games-detail-item, .page-fishing-games-faq-item {
    padding: 20px;
  }
  .page-fishing-games-final-cta-title {
    font-size: 2em;
  }
  .page-fishing-games-btn-large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-hero-section {
    padding: 40px 0;
  }
  .page-fishing-games-hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games-section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-feature-title {
    font-size: 1.3em;
  }
  .page-fishing-games-step-item {
    padding-left: 50px;
  }
  .page-fishing-games-step-item::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
    left: 10px;
  }
  .page-fishing-games-final-cta-title {
    font-size: 1.8em;
  }
}