/* style/fishing-games.css */

:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --text-main-color: #1F2D3D;
  --background-card: #FFFFFF;
  --background-body: #F4F7FB;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-fishing-games {
  font-family: Arial, sans-serif;
  color: var(--text-main-color); /* Body background is light, so use dark text */
  background-color: var(--background-body);
}

.page-fishing-games__section {
  padding: 60px 0;
  position: relative;
}

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-main-color);
}

/* HERO Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background: var(--background-body);
  overflow: hidden;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.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.1);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: var(--background-card);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-50px);
  margin-bottom: -50px; /* Overlap with image slightly */
}

.page-fishing-games__hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-fishing-games__hero-content p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-main-color);
  margin-bottom: 30px;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.3);
  border: none;
}

.page-fishing-games__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(47, 107, 255, 0.4);
}

/* General Buttons */
.page-fishing-games__btn-primary {
  display: inline-block;
  padding: 14px 35px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.2);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.3);
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 14px 35px;
  background: var(--background-card);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-left: 15px;
}

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.3);
}

.page-fishing-games__button-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Quick Access Section */
.page-fishing-games__quick-access-section {
  background-color: var(--background-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-fishing-games__quick-link-card {
  display: block;
  background: var(--background-body);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--text-main-color);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.page-fishing-games__quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(47, 107, 255, 0.1);
  border-color: var(--primary-color);
}

.page-fishing-games__quick-link-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__quick-link-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main-color);
}

/* Games Showcase Section */
.page-fishing-games__games-showcase-section {
  background-color: var(--background-body);
}

.page-fishing-games__game-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: var(--background-card);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.page-fishing-games__game-card--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games__game-card img {
  width: 50%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__game-info {
  width: 50%;
}

.page-fishing-games__game-info h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__game-info p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main-color);
  margin-bottom: 25px;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: var(--background-card);
  border-top: 1px solid var(--border-color);
}

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

.page-fishing-games__promo-card {
  background: var(--background-body);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  border: 1px solid var(--border-color);
}

.page-fishing-games__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-fishing-games__promo-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__promo-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main-color);
  padding: 0 15px;
}

/* Security Section */
.page-fishing-games__security-section {
  background-color: var(--background-body);
}

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

.page-fishing-games__feature-item {
  background: var(--background-card);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-fishing-games__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games__feature-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__feature-item p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main-color);
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: var(--background-card);
  border-top: 1px solid var(--border-color);
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--background-card);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
  color: var(--text-main-color);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: var(--background-body);
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: var(--background-body);
  border-radius: 0 0 8px 8px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-main-color);
}

/* Blog Section */
.page-fishing-games__blog-section {
  background-color: var(--background-body);
}

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

.page-fishing-games__blog-card {
  display: flex;
  flex-direction: column;
  background: var(--background-card);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-main-color);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-fishing-games__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-fishing-games__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__blog-content h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-fishing-games__blog-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-fishing-games__blog-date {
  font-size: 14px;
  color: #666;
  text-align: right;
}

.page-fishing-games__view-all-blog {
  margin-top: 50px;
}

/* Global image responsiveness */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__container {
    padding: 0 15px;
  }

  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-fishing-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* Hero Section */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-content {
    padding: 15px;
    transform: translateY(-30px);
    margin-bottom: -30px;
  }

  .page-fishing-games__hero-content h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .page-fishing-games__hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General Buttons */
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
  }

  .page-fishing-games__button-group {
    flex-direction: column;
    gap: 10px;
  }

  /* Quick Access Section */
  .page-fishing-games__link-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Games Showcase Section */
  .page-fishing-games__game-card,
  .page-fishing-games__game-card--reverse {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .page-fishing-games__game-card img,
  .page-fishing-games__game-info {
    width: 100%;
  }

  .page-fishing-games__game-info h3 {
    font-size: 24px;
  }

  .page-fishing-games__game-info p {
    font-size: 16px;
  }

  /* Promotions Section */
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__promo-card h3 {
    font-size: 20px;
  }

  /* Security Section */
  .page-fishing-games__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-item h3 {
    font-size: 20px;
  }

  /* FAQ Section */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 24px;
  }

  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* Blog Section */
  .page-fishing-games__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__blog-card img {
    
  }

  .page-fishing-games__blog-content h3 {
    font-size: 18px;
  }

  .page-fishing-games__blog-content p {
    font-size: 15px;
  }

  /* Ensure all images and containers are responsive */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__link-grid,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-grid,
  .page-fishing-games__security-features,
  .page-fishing-games__blog-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}