:root {
  --primary-color: #003366; /* Deep Blue */
  --secondary-color: #FFCC00; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f9f9f9;
  --bg-dark: #003366;
  --border-color: #e0e0e0;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-game-strategy-center-fishing-game-secrets {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Assuming dark body background from shared.css */
  background-color: var(--bg-dark); /* Fallback, but body background is from shared.css */
}

/* Section spacing and general container */
.page-game-strategy-center-fishing-game-secrets__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-game-strategy-center-fishing-game-secrets__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

/* --- Video Section --- */
.page-game-strategy-center-fishing-game-secrets__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  background-color: var(--bg-dark);
}

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

.page-game-strategy-center-fishing-game-secrets__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategy-center-fishing-game-secrets__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-center-fishing-game-secrets__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-game-strategy-center-fishing-game-secrets__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}

.page-game-strategy-center-fishing-game-secrets__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-game-strategy-center-fishing-game-secrets__video-link:hover .page-game-strategy-center-fishing-game-secrets__video-overlay {
  opacity: 1;
}

.page-game-strategy-center-fishing-game-secrets__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(0, 123, 255, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-game-strategy-center-fishing-game-secrets__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-game-strategy-center-fishing-game-secrets__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-game-strategy-center-fishing-game-secrets__play-now-button:hover {
  background: #e6b800; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Title Section --- */
.page-game-strategy-center-fishing-game-secrets__title-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-game-strategy-center-fishing-game-secrets__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-strategy-center-fishing-game-secrets__main-title {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-strategy-center-fishing-game-secrets__title-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-game-strategy-center-fishing-game-secrets__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-center-fishing-game-secrets__cta-button--primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-game-strategy-center-fishing-game-secrets__cta-button--primary:hover {
  background: #e6b800; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-center-fishing-game-secrets__cta-button--secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-game-strategy-center-fishing-game-secrets__cta-button--secondary:hover {
  background: rgba(255, 204, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-center-fishing-game-secrets__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

/* --- Content Sections (General) --- */
.page-game-strategy-center-fishing-game-secrets__content-section {
  padding: 80px 20px;
}

.page-game-strategy-center-fishing-game-secrets__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-game-strategy-center-fishing-game-secrets__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-game-strategy-center-fishing-game-secrets p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
}

.page-game-strategy-center-fishing-game-secrets h2 {
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 32px;
  color: var(--secondary-color);
}

.page-game-strategy-center-fishing-game-secrets h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 24px;
  color: var(--secondary-color);
}

.page-game-strategy-center-fishing-game-secrets h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--secondary-color);
}

.page-game-strategy-center-fishing-game-secrets ul,
.page-game-strategy-center-fishing-game-secrets ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-game-strategy-center-fishing-game-secrets li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* --- Strategy Section --- */
.page-game-strategy-center-fishing-game-secrets__strategy-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-game-strategy-center-fishing-game-secrets__strategy-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.page-game-strategy-center-fishing-game-secrets__strategy-subtitle {
  color: var(--primary-color);
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-game-strategy-center-fishing-game-secrets__strategy-subheading {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-game-strategy-center-fishing-game-secrets__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

/* --- Promotion Section --- */
.page-game-strategy-center-fishing-game-secrets__promo-section {
  padding: 80px 20px;
}

.page-game-strategy-center-fishing-game-secrets__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-strategy-center-fishing-game-secrets__promo-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-strategy-center-fishing-game-secrets__promo-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-game-strategy-center-fishing-game-secrets__promo-card-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-game-strategy-center-fishing-game-secrets__promo-card p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-game-strategy-center-fishing-game-secrets__promo-text {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: var(--text-dark);
}

/* --- Login Section --- */
.page-game-strategy-center-fishing-game-secrets__login-section {
  padding: 80px 20px;
  text-align: center;
}

.page-game-strategy-center-fishing-game-secrets__login-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  object-fit: cover;
}

.page-game-strategy-center-fishing-game-secrets__login-steps {
  list-style-type: decimal;
  padding-left: 20px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

.page-game-strategy-center-fishing-game-secrets__login-steps li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* --- FAQ Section --- */
.page-game-strategy-center-fishing-game-secrets__faq-section {
  padding: 80px 20px;
}

.page-game-strategy-center-fishing-game-secrets__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-strategy-center-fishing-game-secrets__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-game-strategy-center-fishing-game-secrets__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-game-strategy-center-fishing-game-secrets__faq-item.active .page-game-strategy-center-fishing-game-secrets__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-dark);
}

.page-game-strategy-center-fishing-game-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark);
}

.page-game-strategy-center-fishing-game-secrets__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-game-strategy-center-fishing-game-secrets__faq-question:active {
  background: #eeeeee;
}

.page-game-strategy-center-fishing-game-secrets__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-game-strategy-center-fishing-game-secrets__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-game-strategy-center-fishing-game-secrets__faq-item.active .page-game-strategy-center-fishing-game-secrets__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

/* --- Brand Section --- */
.page-game-strategy-center-fishing-game-secrets__brand-section {
  padding: 80px 20px;
}

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

.page-game-strategy-center-fishing-game-secrets__brand-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.page-game-strategy-center-fishing-game-secrets__brand-item img {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.page-game-strategy-center-fishing-game-secrets__brand-subtitle {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-game-strategy-center-fishing-game-secrets__brand-item p {
  font-size: 16px;
  color: #f0f0f0;
}

/* --- Blog Section --- */
.page-game-strategy-center-fishing-game-secrets__blog-section {
  padding: 80px 20px;
}

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

.page-game-strategy-center-fishing-game-secrets__blog-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-game-strategy-center-fishing-game-secrets__blog-link {
  text-decoration: none;
  display: block;
  color: var(--text-dark);
}

.page-game-strategy-center-fishing-game-secrets__blog-item-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-game-strategy-center-fishing-game-secrets__blog-item-content {
  padding: 20px;
}

.page-game-strategy-center-fishing-game-secrets__blog-item-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-game-strategy-center-fishing-game-secrets__blog-item-excerpt {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.page-game-strategy-center-fishing-game-secrets__blog-item-date {
  font-size: 14px;
  color: #999;
  display: block;
}

/* --- Final CTA Section --- */
.page-game-strategy-center-fishing-game-secrets__final-cta-section {
  padding: 80px 20px;
  text-align: center;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-game-strategy-center-fishing-game-secrets__main-title {
    font-size: 36px;
  }
  .page-game-strategy-center-fishing-game-secrets__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-center-fishing-game-secrets__video-section {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-game-strategy-center-fishing-game-secrets__video-container,
  .page-game-strategy-center-fishing-game-secrets__video-link,
  .page-game-strategy-center-fishing-game-secrets__video-wrapper,
  .page-game-strategy-center-fishing-game-secrets__video {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    height: auto !important;
  }
  
  .page-game-strategy-center-fishing-game-secrets__video {
    object-fit: contain;
  }
  
  .page-game-strategy-center-fishing-game-secrets__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
  }
  
  .page-game-strategy-center-fishing-game-secrets__video-click-hint {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }

  .page-game-strategy-center-fishing-game-secrets__title-section,
  .page-game-strategy-center-fishing-game-secrets__content-section,
  .page-game-strategy-center-fishing-game-secrets__strategy-section,
  .page-game-strategy-center-fishing-game-secrets__promo-section,
  .page-game-strategy-center-fishing-game-secrets__login-section,
  .page-game-strategy-center-fishing-game-secrets__faq-section,
  .page-game-strategy-center-fishing-game-secrets__brand-section,
  .page-game-strategy-center-fishing-game-secrets__blog-section,
  .page-game-strategy-center-fishing-game-secrets__final-cta-section {
    padding: 40px 15px;
  }

  .page-game-strategy-center-fishing-game-secrets__container {
    padding: 0 15px;
  }

  .page-game-strategy-center-fishing-game-secrets__main-title {
    font-size: 28px;
  }

  .page-game-strategy-center-fishing-game-secrets__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-game-strategy-center-fishing-game-secrets__title-description,
  .page-game-strategy-center-fishing-game-secrets p,
  .page-game-strategy-center-fishing-game-secrets li {
    font-size: 15px;
  }

  .page-game-strategy-center-fishing-game-secrets__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-strategy-center-fishing-game-secrets__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box !important;
  }

  .page-game-strategy-center-fishing-game-secrets__strategy-subtitle {
    font-size: 22px;
  }

  .page-game-strategy-center-fishing-game-secrets__strategy-subheading {
    font-size: 18px;
  }

  .page-game-strategy-center-fishing-game-secrets__promo-grid,
  .page-game-strategy-center-fishing-game-secrets__brand-content,
  .page-game-strategy-center-fishing-game-secrets__blog-list {
    grid-template-columns: 1fr;
  }

  .page-game-strategy-center-fishing-game-secrets__promo-card-title {
    font-size: 20px;
  }

  .page-game-strategy-center-fishing-game-secrets__brand-subtitle {
    font-size: 20px;
  }
  
  .page-game-strategy-center-fishing-game-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-game-strategy-center-fishing-game-secrets__faq-question h3 {
    font-size: 16px;
  }
  
  .page-game-strategy-center-fishing-game-secrets__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  
  .page-game-strategy-center-fishing-game-secrets__faq-item.active .page-game-strategy-center-fishing-game-secrets__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-game-strategy-center-fishing-game-secrets__main-title {
    font-size: 24px;
  }
  .page-game-strategy-center-fishing-game-secrets__section-title {
    font-size: 22px;
  }
  .page-game-strategy-center-fishing-game-secrets__video-click-hint {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  .page-game-strategy-center-fishing-game-secrets__play-now-button {
    font-size: 14px !important;
    padding: 10px 25px !important;
  }
}