/* style/fishing-games.css */

/* General Styling for the Page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for contrast on light backgrounds */
  line-height: 1.6;
  background-color: #f0f2f5; /* Light grey background */
}

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

.page-fishing-games section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3 {
  color: #1A2B4C; /* Primary color for headings */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-fishing-games h1 {
  font-size: 3.2em;
  line-height: 1.2;
}

.page-fishing-games h2 {
  font-size: 2.5em;
  position: relative;
  padding-bottom: 15px;
}

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

.page-fishing-games h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #1A2B4C;
}

.page-fishing-games p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555555;
}

.page-fishing-games p.promo-call-to-action {
  font-size: 1.2em;
  font-weight: bold;
  color: #1A2B4C;
  margin-top: 40px;
}

.page-fishing-games a {
  color: #1A2B4C; /* Primary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games a:hover {
  color: #FFD700; /* Accent color on hover */
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Accent color for main CTA */
  color: #1A2B4C; /* Dark text on accent background */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-fishing-games .cta-button:hover {
  background: #e6c200; /* Slightly darker accent on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: #1A2B4C;
}

.page-fishing-games .secondary-cta {
  background: #1A2B4C; /* Primary color for secondary CTA */
  color: #FFD700; /* Accent text on primary background */
  border-color: #FFD700;
}

.page-fishing-games .secondary-cta:hover {
  background: #0f1c34; /* Darker primary on hover */
  color: #ffffff;
  border-color: #FFD700;
}

.page-fishing-games .tertiary-cta {
  background: #5a7d9a; /* A lighter shade of primary for tertiary CTA */
  color: #ffffff;
  border-color: #5a7d9a;
}

.page-fishing-games .tertiary-cta:hover {
  background: #4a6a82;
  border-color: #4a6a82;
}

.page-fishing-games .btn-small {
  display: inline-block;
  padding: 8px 20px;
  background: #1A2B4C;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-small:hover {
  background: #FFD700;
  color: #1A2B4C;
  transform: translateY(-1px);
}

/* HERO Section */
.page-fishing-games .hero-section {
  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, #1A2B4C, #0f1c34); /* Dark gradient background */
}

.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 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games .hero-content h1 {
  color: #FFD700; /* Accent color for hero title */
  font-size: 3.8em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-fishing-games .hero-content p {
  color: #e0e0e0; /* Light grey for hero text */
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Section Intro */
.page-fishing-games .section-intro .intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-fishing-games .section-intro .intro-item {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .section-intro .intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .section-intro .intro-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games .section-intro .intro-item h3 {
  color: #1A2B4C;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-fishing-games .section-intro .intro-item p {
  font-size: 1em;
  color: #666666;
  text-align: center;
}

/* Quick Links Section */
.page-fishing-games .section-quick-links {
  background-color: #e6eaf0; /* Lighter shade of primary */
  text-align: center;
}

.page-fishing-games .section-quick-links ol {
  text-align: left;
  max-width: 800px;
  margin: 30px auto 0;
  padding-left: 25px;
}

.page-fishing-games .section-quick-links ol li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444444;
}

.page-fishing-games .section-quick-links ol li strong {
  color: #1A2B4C;
}

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

.page-fishing-games .section-quick-links .link-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-fishing-games .section-quick-links .link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games .section-quick-links .link-card h3 {
  font-size: 1.5em;
  color: #1A2B4C;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games .section-quick-links .link-card h3 i {
  margin-right: 10px;
  color: #FFD700;
}

.page-fishing-games .section-quick-links .link-card p {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 0;
}

/* Games Section */
.page-fishing-games .section-games .game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games .section-games .game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .section-games .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .section-games .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games .section-games .game-card h3 {
  font-size: 1.6em;
  margin: 20px 15px 10px;
  color: #1A2B4C;
}

.page-fishing-games .section-games .game-card h3 a {
  color: #1A2B4C;
}

.page-fishing-games .section-games .game-card h3 a:hover {
  color: #FFD700;
}

.page-fishing-games .section-games .game-card p {
  font-size: 1em;
  color: #666666;
  padding: 0 15px 20px;
  margin-bottom: 0;
}

.page-fishing-games .section-games ul {
  text-align: left;
  max-width: 900px;
  margin: 50px auto 0;
  padding-left: 25px;
  list-style-type: disc;
}

.page-fishing-games .section-games ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #444444;
}

.page-fishing-games .section-games ul li strong {
  color: #1A2B4C;
}

/* Promotions Section */
.page-fishing-games .section-promotions {
  background-color: #1A2B4C; /* Primary color background */
  color: #ffffff;
}

.page-fishing-games .section-promotions h2 {
  color: #FFD700; /* Accent color for heading */
}

.page-fishing-games .section-promotions p {
  color: #e0e0e0;
}

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

.page-fishing-games .section-promotions .promo-card {
  background: #2a3d5f; /* Slightly lighter primary for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-fishing-games .section-promotions .promo-card:hover {
  transform: translateY(-8px);
  background-color: #3b5078;
}

.page-fishing-games .section-promotions .promo-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games .section-promotions .promo-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games .section-promotions .promo-card h3 a {
  color: #FFD700;
}

.page-fishing-games .section-promotions .promo-card h3 a:hover {
  color: #ffffff;
}

.page-fishing-games .section-promotions .promo-card p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 0;
}

/* Security & Support Section */
.page-fishing-games .section-security-support .security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games .section-security-support .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .section-security-support .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .section-security-support .feature-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-fishing-games .section-security-support .feature-item h3 {
  color: #1A2B4C;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-fishing-games .section-security-support .feature-item p {
  font-size: 1em;
  color: #666666;
  margin-bottom: 0;
}

.page-fishing-games .support-contact {
  margin-top: 40px;
  font-size: 1.1em;
  font-weight: bold;
  color: #1A2B4C;
}

/* FAQ Section */
.page-fishing-games .section-faq {
  background-color: #e6eaf0; /* Lighter shade of primary */
}

.page-fishing-games .faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.page-fishing-games .faq-question:hover {
  background: #f5f5f5;
  border-color: #FFD700;
}

.page-fishing-games .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #f5f5f5;
  border-color: #FFD700;
}

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #1A2B4C;
  text-align: left;
}

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-fishing-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #1A2B4C;
}

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px 25px;
  border-color: #FFD700;
}

.page-fishing-games .faq-answer p {
  text-align: left;
  color: #555555;
  font-size: 1em;
  margin-bottom: 0;
}

/* Blog Section */
.page-fishing-games .section-blog {
  /* No specific background, uses default */
}

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

.page-fishing-games .section-blog .blog-post-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .section-blog .blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .section-blog .blog-post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games .section-blog .blog-post-card h3 {
  font-size: 1.5em;
  margin: 20px 20px 10px;
  color: #1A2B4C;
  text-align: left;
}

.page-fishing-games .section-blog .blog-post-card h3 a {
  color: #1A2B4C;
}

.page-fishing-games .section-blog .blog-post-card h3 a:hover {
  color: #FFD700;
}

.page-fishing-games .section-blog .blog-post-card p {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  text-align: left;
  margin-bottom: 15px;
}

.page-fishing-games .section-blog .blog-post-card .post-date {
  display: block;
  font-size: 0.9em;
  color: #999999;
  padding: 0 20px 20px;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games h1 {
    font-size: 2.8em;
  }
  .page-fishing-games h2 {
    font-size: 2.2em;
  }
  .page-fishing-games h3 {
    font-size: 1.5em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games h1 {
    font-size: 2.2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games p {
    font-size: 1em;
  }
  .page-fishing-games .hero-image {
    margin-bottom: 20px;
  }
  .page-fishing-games .hero-image img {
    border-radius: 8px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2.5em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games .intro-grid,
  .page-fishing-games .link-grid,
  .page-fishing-games .game-cards-grid,
  .page-fishing-games .promo-grid,
  .page-fishing-games .security-features,
  .page-fishing-games .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games .section-quick-links ol {
    padding-left: 20px;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px 20px;
  }
  .page-fishing-games .section-blog .blog-post-card h3 {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games h1 {
    font-size: 1.8em;
  }
  .page-fishing-games h2 {
    font-size: 1.6em;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-fishing-games .section-intro .intro-item img,
  .page-fishing-games .section-security-support .feature-item img,
  .page-fishing-games .section-promotions .promo-card img {
    max-width: 250px;
  }
}