.page-fishing-games {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --text-main-color: #1F2D3D;
  --card-bg-color: #FFFFFF;
  --background-color: #F4F7FB;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  color: var(--text-main-color);
  background-color: var(--background-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: 2px;
}

.page-fishing-games__section-description {
  font-size: 18px;
  color: var(--text-main-color);
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button,
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__cta-button,
.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

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

.page-fishing-games__btn-secondary {
  background: var(--card-bg-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

/* 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, body handles header offset */
  background-color: var(--background-color);
}

.page-fishing-games__hero-container {
  position: relative;
  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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-fishing-games__hero-content h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-fishing-games__hero-content p {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.page-fishing-games__intro-section {
  padding: 80px 20px;
  background-color: var(--card-bg-color);
}

.page-fishing-games__grid-layout {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__intro-content,
.page-fishing-games__security-content {
  flex: 1;
}

.page-fishing-games__intro-image,
.page-fishing-games__security-image {
  flex: 1;
  text-align: center;
}

.page-fishing-games__intro-image img,
.page-fishing-games__security-image img,
.page-fishing-games__guide-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__intro-content p,
.page-fishing-games__security-content p {
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-main-color);
}

/* Games Showcase Section */
.page-fishing-games__games-showcase {
  padding: 80px 20px;
  background-color: var(--background-color);
}

.page-fishing-games__game-cards-grid,
.page-fishing-games__promotions-grid,
.page-fishing-games__blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__game-card,
.page-fishing-games__promo-card,
.page-fishing-games__blog-card {
  background: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-fishing-games__card-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-fishing-games__card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.page-fishing-games__card-text {
  font-size: 16px;
  color: var(--text-main-color);
  margin-bottom: 25px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-fishing-games__game-card .page-fishing-games__btn-secondary,
.page-fishing-games__promo-card .page-fishing-games__btn-secondary {
  margin: 0 auto;
  width: calc(100% - 60px);
}

/* Guide Section */
.page-fishing-games__guide-section {
  padding: 80px 20px;
  background-color: var(--card-bg-color);
}

.page-fishing-games__guide-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
}

.page-fishing-games__guide-content {
  flex: 1;
}

.page-fishing-games__guide-image {
  flex: 1;
  text-align: center;
}

.page-fishing-games__guide-content p {
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-main-color);
}

.page-fishing-games__guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__guide-list li {
  background-color: var(--background-color);
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 17px;
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__guide-list li strong {
  color: var(--primary-color);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 20px;
  background-color: var(--background-color);
}

/* Security Section */
.page-fishing-games__security-section {
  padding: 80px 20px;
  background-color: var(--card-bg-color);
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 20px;
  background-color: var(--background-color);
}

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

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;
}

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: #f5f8ff;
}

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

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

details[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 25px;
  background: #fdfefe;
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 12px 12px;
  font-size: 16px;
  color: var(--text-main-color);
}

.page-fishing-games__faq-answer p {
  margin: 0;
}

/* Blog Section */
.page-fishing-games__blog-section {
  padding: 80px 20px;
  background-color: var(--card-bg-color);
}

.page-fishing-games__blog-card {
  text-align: left;
  padding-bottom: 20px;
}

.page-fishing-games__blog-card img {
  border-radius: 8px;
}

.page-fishing-games__blog-card .page-fishing-games__card-title {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 0;
}

.page-fishing-games__blog-card .page-fishing-games__card-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  padding: 0;
}

.page-fishing-games__blog-date {
  display: block;
  font-size: 14px;
  color: #888;
  margin-left: 15px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-fishing-games__grid-layout {
    flex-direction: column;
  }
  .page-fishing-games__guide-layout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__games-showcase,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__security-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__blog-section {
    padding: 40px 15px;
  }

  .page-fishing-games__hero-section {
    padding-top: 10px !important;
  }

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

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

  .page-fishing-games__hero-content h1 {
    font-size: clamp(24px, 7vw, 40px);
  }

  .page-fishing-games__hero-content p {
    font-size: clamp(15px, 3.5vw, 18px);
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    margin-top: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__game-card img,
  .page-fishing-games__promo-card img,
  .page-fishing-games__blog-card img {
    
  }

  .page-fishing-games__game-cards-grid,
  .page-fishing-games__promotions-grid,
  .page-fishing-games__blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card-title {
    font-size: 20px;
  }

  .page-fishing-games__card-text {
    font-size: 15px;
  }

  .page-fishing-games__guide-list li {
    font-size: 15px;
    padding: 12px 15px;
  }

  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px;
  }

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

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

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

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}