.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A1931;
  line-height: 1.6;
}

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

.page-fishing-games-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-fishing-games-section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-fishing-games-section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #B0B0B0;
}

/* Hero Section */
.page-fishing-games-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A1931, #1A2E47);
}

.page-fishing-games-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games-hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games-hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
}

.page-fishing-games-hero-content h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-hero-content p {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #0A1931;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fishing-games-cta-button:hover {
  background: #FFC400;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 20px rgba(255, 215, 0, 0.5);
}

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

/* Card Styles */
.page-fishing-games-card {
  background-color: #1A2E47;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-fishing-games-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games-card p {
  font-size: 1.05em;
  color: #C0C0C0;
  flex-grow: 1;
}

/* How-to-Play Steps */
.page-fishing-games-step-by-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-step-item {
  background-color: #1A2E47;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  flex: 1 1 45%; /* Allow items to grow/shrink, min 45% width */
  max-width: 48%; /* Max width for two columns */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games-step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A1931;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-fishing-games-step-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games-step-item p {
  font-size: 1.05em;
  color: #C0C0C0;
}

.page-fishing-games-step-item a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-fishing-games-step-item a:hover {
  color: #FFC400;
}

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

/* Promotions List */
.page-fishing-games-promo-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-fishing-games-promo-list li {
  background-color: #1A2E47;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-promo-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-promo-list h4 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games-promo-list p {
  font-size: 1.05em;
  color: #C0C0C0;
}

.page-fishing-games-promo-list p a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-fishing-games-promo-list p a:hover {
  color: #FFC400;
}

/* FAQ Section */
.page-fishing-games-faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A2E47;
  border: 1px solid #2A405D;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #2A405D;
  border-color: #FFD700;
}

.faq-question h3 {
  font-size: 1.25em;
  color: #FFD700;
  margin: 0;
  font-weight: bold;
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #0A1931;
  color: #C0C0C0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid #2A405D;
}

.faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

.faq-answer p a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.faq-answer p a:hover {
  color: #FFC400;
}

/* Bottom CTA */
.page-fishing-games-cta-bottom {
  background: linear-gradient(45deg, #0A1931, #1A2E47);
  padding: 80px 20px;
}

.page-fishing-games-cta-bottom-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-cta-bottom-content h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-fishing-games-cta-bottom-content p {
  color: #E0E0E0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-hero-content h1 {
    font-size: 3em;
  }
  .page-fishing-games-section-title {
    font-size: 2.5em;
  }
  .page-fishing-games-card h3, .page-fishing-games-step-item h3 {
    font-size: 1.6em;
  }
  .page-fishing-games-promo-list h4 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-hero-content h1 {
    font-size: 2.5em;
  }
  .page-fishing-games-hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-fishing-games-section {
    padding: 40px 0;
  }
  .page-fishing-games-section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-fishing-games-section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games-grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-step-item {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.8em;
  }
  .page-fishing-games-cta-bottom-content h2 {
    font-size: 2.2em;
  }
  .page-fishing-games-cta-bottom-content p {
    font-size: 1.1em;
  }
  .page-fishing-games-card-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-hero-content h1 {
    font-size: 2em;
  }
  .page-fishing-games-hero-content p {
    font-size: 0.95em;
  }
  .page-fishing-games-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-fishing-games-section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-card h3, .page-fishing-games-step-item h3 {
    font-size: 1.4em;
  }
  .page-fishing-games-promo-list h4 {
    font-size: 1.2em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games-cta-bottom-content h2 {
    font-size: 1.8em;
  }
  .page-fishing-games-cta-bottom-content p {
    font-size: 1em;
  }
}