/* style/fishing-games-high-score-guide.css */

/* Biến CSS */
:root {
  --primary-color: #FFD700; /* Vàng sang trọng */
  --secondary-color: #000080; /* Xanh navy sâu thẳm */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
}

/* Base styles for the specific page */
.page-fishing-games-high-score-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so use light text */
  background-color: var(--bg-dark);
  padding-top: 0; /* Handled by specific sections */
}

.page-fishing-games-high-score-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games-high-score-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

/* Video Section */
.page-fishing-games-high-score-guide__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
  box-sizing: border-box;
}

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

.page-fishing-games-high-score-guide__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-high-score-guide__video-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-high-score-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Allow click on parent link */
}

.page-fishing-games-high-score-guide__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.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-fishing-games-high-score-guide__video-link:hover .page-fishing-games-high-score-guide__video-overlay {
  opacity: 1;
}

.page-fishing-games-high-score-guide__video-click-hint {
  color: var(--text-light);
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.page-fishing-games-high-score-guide__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.page-fishing-games-high-score-guide__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-fishing-games-high-score-guide__play-now-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-fishing-games-high-score-guide__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Title Section */
.page-fishing-games-high-score-guide__title-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
  box-sizing: border-box;
}

.page-fishing-games-high-score-guide__main-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fishing-games-high-score-guide__title-description {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-fishing-games-high-score-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-high-score-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--primary-color);
}

.page-fishing-games-high-score-guide__cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Content Area */
.page-fishing-games-high-score-guide__content-area {
  padding: 80px 20px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  box-sizing: border-box;
}

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

.page-fishing-games-high-score-guide__card {
  background: var(--card-bg-dark);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fishing-games-high-score-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-high-score-guide__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-high-score-guide__card-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games-high-score-guide__card p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: left;
  flex-grow: 1;
}

/* FAQ Section */
.page-fishing-games-high-score-guide__faq-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
  color: var(--text-dark); /* Light background, dark text */
  box-sizing: border-box;
}

.page-fishing-games-high-score-guide__faq-section .page-fishing-games-high-score-guide__section-title {
  color: var(--secondary-color);
}

.page-fishing-games-high-score-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page-fishing-games-high-score-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg-light);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games-high-score-guide__faq-question:hover {
  background: #f0f0f0;
}

.page-fishing-games-high-score-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  pointer-events: none;
}

.page-fishing-games-high-score-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  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: 32px;
  height: 32px;
}

.page-fishing-games-high-score-guide__faq-item.active .page-fishing-games-high-score-guide__faq-toggle {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.page-fishing-games-high-score-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #f0f0f0;
  color: var(--text-dark);
}

.page-fishing-games-high-score-guide__faq-item.active .page-fishing-games-high-score-guide__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid #e0e0e0;
}

.page-fishing-games-high-score-guide__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Brand Section */
.page-fishing-games-high-score-guide__brand-section {
  padding: 80px 20px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  box-sizing: border-box;
}

.page-fishing-games-high-score-guide__brand-section .page-fishing-games-high-score-guide__section-title {
  color: var(--primary-color);
}

.page-fishing-games-high-score-guide__grid.--two-columns {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-fishing-games-high-score-guide__brand-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-fishing-games-high-score-guide__brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-high-score-guide__brand-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-fishing-games-high-score-guide__brand-subtitle {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games-high-score-guide__brand-item p {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.7;
  text-align: left;
  flex-grow: 1;
}

/* Blog Section */
.page-fishing-games-high-score-guide__blog-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  box-sizing: border-box;
}

.page-fishing-games-high-score-guide__blog-section .page-fishing-games-high-score-guide__section-title {
  color: var(--secondary-color);
}

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

.page-fishing-games-high-score-guide__blog-item {
  background: var(--card-bg-light);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-high-score-guide__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-high-score-guide__blog-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-fishing-games-high-score-guide__blog-item-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games-high-score-guide__blog-item-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 20px 20px 10px 20px;
  line-height: 1.4;
}

.page-fishing-games-high-score-guide__blog-item-excerpt {
  font-size: 15px;
  color: #555555;
  margin: 0 20px 15px 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.page-fishing-games-high-score-guide__blog-item-date {
  font-size: 14px;
  color: #888888;
  margin: 0 20px 20px 20px;
  display: block;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-high-score-guide__main-title {
    font-size: 40px;
  }
  .page-fishing-games-high-score-guide__section-title {
    font-size: 32px;
  }
  .page-fishing-games-high-score-guide__grid.--two-columns {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games-high-score-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-high-score-guide__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
    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-fishing-games-high-score-guide__video-container,
  .page-fishing-games-high-score-guide__video-link,
  .page-fishing-games-high-score-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-fishing-games-high-score-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
  }

  .page-fishing-games-high-score-guide__video-click-hint {
    font-size: 16px;
    padding: 10px 20px;
  }

  .page-fishing-games-high-score-guide__video-cta {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-fishing-games-high-score-guide__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-high-score-guide__title-section,
  .page-fishing-games-high-score-guide__content-area,
  .page-fishing-games-high-score-guide__faq-section,
  .page-fishing-games-high-score-guide__brand-section,
  .page-fishing-games-high-score-guide__blog-section {
    padding: 60px 15px;
  }

  .page-fishing-games-high-score-guide__main-title {
    font-size: 32px;
  }

  .page-fishing-games-high-score-guide__title-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-fishing-games-high-score-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-fishing-games-high-score-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-high-score-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-fishing-games-high-score-guide__grid {
    grid-template-columns: 1fr;
  }

  .page-fishing-games-high-score-guide__card {
    padding: 25px;
  }

  .page-fishing-games-high-score-guide__card-title {
    font-size: 20px;
  }

  .page-fishing-games-high-score-guide__card p {
    font-size: 15px;
  }

  .page-fishing-games-high-score-guide__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games-high-score-guide__faq-question h3 {
    font-size: 16px;
  }

  .page-fishing-games-high-score-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-fishing-games-high-score-guide__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games-high-score-guide__faq-item.active .page-fishing-games-high-score-guide__faq-answer {
    padding: 15px 20px !important;
  }

  .page-fishing-games-high-score-guide__brand-subtitle {
    font-size: 24px;
  }

  .page-fishing-games-high-score-guide__blog-item-title {
    font-size: 18px;
    margin: 15px 15px 8px 15px;
  }

  .page-fishing-games-high-score-guide__blog-item-excerpt,
  .page-fishing-games-high-score-guide__blog-item-date {
    margin-left: 15px;
    margin-right: 15px;
  }
  
  /* General image responsiveness for mobile */
  .page-fishing-games-high-score-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games-high-score-guide__container,
  .page-fishing-games-high-score-guide__grid,
  .page-fishing-games-high-score-guide__card,
  .page-fishing-games-high-score-guide__brand-item,
  .page-fishing-games-high-score-guide__blog-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-fishing-games-high-score-guide__brand-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-high-score-guide__main-title {
    font-size: 28px;
  }
  .page-fishing-games-high-score-guide__section-title {
    font-size: 24px;
  }
  .page-fishing-games-high-score-guide__play-now-button {
    font-size: 16px !important;
    padding: 12px 25px !important;
  }
  .page-fishing-games-high-score-guide__video-click-hint {
    font-size: 14px;
    padding: 8px 16px;
  }
  .page-fishing-games-high-score-guide__faq-question h3 {
    font-size: 15px;
  }
  .page-fishing-games-high-score-guide__brand-subtitle {
    font-size: 22px;
  }
  .page-fishing-games-high-score-guide__blog-item-title {
    font-size: 16px;
  }
}