.page-game-hall-classic-fishing {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is dark, so text should be light */
  line-height: 1.6;
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-game-hall-classic-fishing__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-game-hall-classic-fishing__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for better text readability */
}

.page-game-hall-classic-fishing__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-game-hall-classic-fishing__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-game-hall-classic-fishing__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-hall-classic-fishing__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-game-hall-classic-fishing__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-hall-classic-fishing__btn-primary,
.page-game-hall-classic-fishing__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-hall-classic-fishing__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-game-hall-classic-fishing__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-game-hall-classic-fishing__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-game-hall-classic-fishing__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-game-hall-classic-fishing__section {
  padding: 80px 0;
  text-align: center;
  background-color: #0a0a0a; /* Dark background for sections */
  color: #ffffff; /* Light text for sections */
}

.page-game-hall-classic-fishing__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-game-hall-classic-fishing__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for titles */
}

.page-game-hall-classic-fishing__section-title--light {
  color: #ffffff;
}

.page-game-hall-classic-fishing__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-game-hall-classic-fishing__section-description--light {
  color: #e0e0e0;
}

.page-game-hall-classic-fishing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-game-hall-classic-fishing__feature-card {
  background-color: #1a1a1a; /* Dark background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-game-hall-classic-fishing__feature-card:hover {
  transform: translateY(-10px);
}

.page-game-hall-classic-fishing__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure it respects max-width */
}

.page-game-hall-classic-fishing__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-game-hall-classic-fishing__feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-game-hall-classic-fishing__content-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
  margin-top: 40px;
}

.page-game-hall-classic-fishing__content-text {
  flex: 1;
}

.page-game-hall-classic-fishing__content-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-hall-classic-fishing__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-game-hall-classic-fishing__subsection-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-game-hall-classic-fishing__content-text p,
.page-game-hall-classic-fishing__content-text ul {
  color: #f0f0f0;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-game-hall-classic-fishing__content-text ul {
  list-style: disc;
}

.page-game-hall-classic-fishing__content-text li {
  margin-bottom: 8px;
}

.page-game-hall-classic-fishing__strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-hall-classic-fishing__strategy-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-game-hall-classic-fishing__strategy-card:hover {
  transform: translateY(-8px);
}

.page-game-hall-classic-fishing__strategy-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-game-hall-classic-fishing__strategy-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-game-hall-classic-fishing__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
}

.page-game-hall-classic-fishing__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.page-game-hall-classic-fishing__video-cta {
  margin-top: 30px;
}

.page-game-hall-classic-fishing__app-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-hall-classic-fishing__app-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-game-hall-classic-fishing__app-image {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-game-hall-classic-fishing__app-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-game-hall-classic-fishing__app-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-game-hall-classic-fishing__app-benefits-text {
  margin-top: 40px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-game-hall-classic-fishing__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-game-hall-classic-fishing__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-game-hall-classic-fishing__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-hall-classic-fishing__faq-question:hover {
  background-color: #1e87b7;
}

.page-game-hall-classic-fishing__faq-question h3 {
  margin: 0;
  color: #ffffff;
}

.page-game-hall-classic-fishing__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-game-hall-classic-fishing__faq-item.active .page-game-hall-classic-fishing__faq-toggle {
  transform: rotate(45deg);
}

.page-game-hall-classic-fishing__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #2a2a2a;
  color: #e0e0e0;
}

.page-game-hall-classic-fishing__faq-item.active .page-game-hall-classic-fishing__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px 25px;
}

.page-game-hall-classic-fishing__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-game-hall-classic-fishing__call-to-action {
  padding: 100px 0;
  background-color: #26A9E0; /* Brand color background for CTA */
}

.page-game-hall-classic-fishing__call-to-action .page-game-hall-classic-fishing__section-title,
.page-game-hall-classic-fishing__call-to-action .page-game-hall-classic-fishing__section-description {
  color: #ffffff;
}

/* Links within content */
.page-game-hall-classic-fishing a {
  color: #ffffff; /* Use white on dark backgrounds */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-hall-classic-fishing a:hover {
  color: #1e87b7;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-game-hall-classic-fishing__hero-title {
    font-size: 2.8em;
  }
  .page-game-hall-classic-fishing__section-title {
    font-size: 2em;
  }
  .page-game-hall-classic-fishing__features-grid,
  .page-game-hall-classic-fishing__strategy-cards,
  .page-game-hall-classic-fishing__app-download-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-hall-classic-fishing__hero-section {
    height: auto;
    min-height: 60vh;
  }
  .page-game-hall-classic-fishing__hero-title {
    font-size: 2.2em;
  }
  .page-game-hall-classic-fishing__hero-description {
    font-size: 1em;
  }
  .page-game-hall-classic-fishing__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-hall-classic-fishing__btn-primary,
  .page-game-hall-classic-fishing__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-game-hall-classic-fishing__section {
    padding: 60px 0;
  }
  .page-game-hall-classic-fishing__section-title {
    font-size: 1.8em;
  }
  .page-game-hall-classic-fishing__section-description {
    font-size: 0.95em;
  }

  .page-game-hall-classic-fishing__content-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-game-hall-classic-fishing__content-image-wrapper {
    order: -1; /* Image appears above text on mobile */
  }

  /* All images responsive */
  .page-game-hall-classic-fishing img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* All image containers responsive */
  .page-game-hall-classic-fishing__section,
  .page-game-hall-classic-fishing__card,
  .page-game-hall-classic-fishing__container,
  .page-game-hall-classic-fishing__feature-card,
  .page-game-hall-classic-fishing__strategy-card,
  .page-game-hall-classic-fishing__app-card,
  .page-game-hall-classic-fishing__content-image-wrapper,
  .page-game-hall-classic-fishing__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Video specific mobile responsive */
  .page-game-hall-classic-fishing video,
  .page-game-hall-classic-fishing__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-hall-classic-fishing__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section has proper padding */
  }

  /* Button specific mobile responsive */
  .page-game-hall-classic-fishing__cta-button,
  .page-game-hall-classic-fishing__btn-primary,
  .page-game-hall-classic-fishing__btn-secondary,
  .page-game-hall-classic-fishing a[class*="button"],
  .page-game-hall-classic-fishing a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-hall-classic-fishing__cta-buttons,
  .page-game-hall-classic-fishing__button-group,
  .page-game-hall-classic-fishing__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-game-hall-classic-fishing__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-game-hall-classic-fishing__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-game-hall-classic-fishing__faq-answer {
    padding: 15px 20px;
  }
}