/* CSS cho trang Bắn Cá (fishing-games.html) */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
  min-height: 500px;
  background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%);
}

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

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFB04D; /* Glow */
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255,176,77,0.6);
}

.page-fishing-games__tagline {
  font-size: clamp(1em, 2vw, 1.3em);
  margin-bottom: 30px;
  line-height: 1.6;
  color: #FFF3E6;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(255,145,0,0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,145,0,0.6);
}

.page-fishing-games__btn-secondary {
  background: #17191F;
  color: #FFA53A;
  border: 2px solid #A84F0C; /* Border */
}

.page-fishing-games__btn-secondary:hover {
  transform: translateY(-3px);
  background: #2a2d34;
  color: #FFB04D;
}

/* Section Titles */
.page-fishing-games__section-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFB04D; /* Glow */
  text-shadow: 0 0 8px rgba(255,176,77,0.4);
}

.page-fishing-games__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Introduction Section */
.page-fishing-games__introduction-section {
  background-color: #0D0E12;
}

/* Features Section */
.page-fishing-games__features-section {
  background-color: #17191F; /* Card BG */
}

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

.page-fishing-games__feature-card {
  background: #2a2d34; /* Slightly lighter than Card BG for contrast */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-fishing-games__feature-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: contain;
}

.page-fishing-games__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-fishing-games__card-description {
  font-size: 1em;
  line-height: 1.6;
  flex-grow: 1;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  background-color: #0D0E12;
}

.page-fishing-games__article-body {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1em;
  color: #FFF3E6;
}

.page-fishing-games__article-body h3 {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-fishing-games__article-body ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-fishing-games__article-body li {
  margin-bottom: 10px;
}

.page-fishing-games__article-figure {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
}

.page-fishing-games__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-fishing-games__article-figure figcaption {
  margin-top: 15px;
  font-style: italic;
  color: #A84F0C;
  font-size: 0.95em;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #17191F; /* Card BG */
}

/* Download Section */
.page-fishing-games__download-section {
  background-color: #0D0E12;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: #17191F; /* Card BG */
}

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

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #2a2d34; /* Slightly lighter than Card BG for contrast */
  color: #FFF3E6;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  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: #3c414d;
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFA53A;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 20px 20px;
  background: #17191F;
  border-radius: 0 0 8px 8px;
  color: #FFF3E6;
}

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-fishing-games__container {
    padding: 20px 30px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

  .page-fishing-games__tagline {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px; /* Adjust padding for mobile */
  }

  .page-fishing-games__section {
    padding: 40px 0;
  }

  /* HERO Section */
  .page-fishing-games__hero-section {
    min-height: 400px;
    padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
  }

  .page-fishing-games__hero-image-wrapper {
    position: relative; /* Change to relative for better control on mobile */
    height: 250px; /* Fixed height for image on mobile */
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-image {
    object-fit: contain !important; /* Ensure image is fully visible */
    aspect-ratio: unset !important; /* Remove aspect ratio */
    width: 100% !important;
    height: 100% !important;
    opacity: 0.5; /* Slightly more visible on mobile */
  }

  .page-fishing-games__hero-content {
    padding: 15px;
    margin-top: -20px; /* Pull content up slightly over image if needed */
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-fishing-games__tagline {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
    margin-bottom: 20px;
  }

  /* Buttons & Button Containers */
  .page-fishing-games__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
    min-width: unset;
  }

  /* Features Grid (Product display area) */
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns for mobile */
    gap: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .page-fishing-games__feature-card {
    padding: 15px;
    border-radius: 8px;
  }

  .page-fishing-games__feature-image {
    max-width: 150px;
  }

  .page-fishing-games__card-title {
    font-size: 1.2em;
  }

  .page-fishing-games__card-description {
    font-size: 0.95em;
  }

  /* Article Body (SEO content area) */
  .page-fishing-games__article-body {
    padding: 0 15px;
    font-size: 1em;
  }

  .page-fishing-games__article-body h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-fishing-games__article-body ul {
    margin-left: 10px;
  }

  .page-fishing-games__article-figure {
    margin: 20px auto;
  }

  /* Generic Images and Containers */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__section,
  .page-fishing-games__container,
  .page-fishing-games__text-block,
  .page-fishing-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

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

  .page-fishing-games__faq-qtext {
    font-size: 1em;
  }

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

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

@media (max-width: 480px) {
  .page-fishing-games__features-grid {
    grid-template-columns: 1fr; /* Single column for very small screens */
  }
}