.page-resources-online-fishing-vip-game-guide {
  color: #f0f0f0; /* Sử dụng màu chữ sáng trên nền tối của body */
  background: var(--dark-bg-1); /* Kế thừa từ shared.css */
  padding-top: 120px; /* Khoảng cách cho fixed header desktop */
}

@media (max-width: 768px) {
  .page-resources-online-fishing-vip-game-guide {
    padding-top: 100px; /* Khoảng cách cho fixed header mobile */
  }
}

.page-resources-online-fishing-vip-game-guide__hero-guide-section {
  position: relative;
  width: 100%;
  padding: 60px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-dark));
  border-bottom: 5px solid var(--secondary-color);
}

.page-resources-online-fishing-vip-game-guide__hero-guide-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-resources-online-fishing-vip-game-guide__hero-guide-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-resources-online-fishing-vip-game-guide__hero-guide-content {
  text-align: center;
  color: #ffffff;
}

.page-resources-online-fishing-vip-game-guide__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-fishing-vip-game-guide__intro-paragraph {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-online-fishing-vip-game-guide__intro-paragraph strong {
  color: var(--secondary-color);
}

.page-resources-online-fishing-vip-game-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-online-fishing-vip-game-guide__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #333333;
}

.page-resources-online-fishing-vip-game-guide__section {
  padding: 50px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-online-fishing-vip-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-online-fishing-vip-game-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-online-fishing-vip-game-guide__sub-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color-light);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-resources-online-fishing-vip-game-guide p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-resources-online-fishing-vip-game-guide strong {
  color: #ffffff;
}

.page-resources-online-fishing-vip-game-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-online-fishing-vip-game-guide__list li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #e0e0e0;
}

.page-resources-online-fishing-vip-game-guide__list li::before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
  top: 0;
}

.page-resources-online-fishing-vip-game-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-online-fishing-vip-game-guide__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-online-fishing-vip-game-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-online-fishing-vip-game-guide__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-online-fishing-vip-game-guide__card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-resources-online-fishing-vip-game-guide__card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
}

.page-resources-online-fishing-vip-game-guide__content-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.page-resources-online-fishing-vip-game-guide__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-resources-online-fishing-vip-game-guide__faq-section {
  background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2));
  padding: 60px 20px;
}

.page-resources-online-fishing-vip-game-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-online-fishing-vip-game-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-online-fishing-vip-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color-dark);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-resources-online-fishing-vip-game-guide__faq-question:hover {
  background: var(--primary-color);
  border-color: var(--secondary-color);
}

.page-resources-online-fishing-vip-game-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-resources-online-fishing-vip-game-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: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-online-fishing-vip-game-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: var(--dark-bg-2);
  color: #cccccc;
  border-top: none;
  border-left: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  border-radius: 0 0 8px 8px;
}

.page-resources-online-fishing-vip-game-guide__faq-item.active .page-resources-online-fishing-vip-game-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-online-fishing-vip-game-guide__faq-item.active .page-resources-online-fishing-vip-game-guide__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-online-fishing-vip-game-guide__main-title {
    font-size: 36px;
  }
  .page-resources-online-fishing-vip-game-guide__intro-paragraph {
    font-size: 17px;
  }
  .page-resources-online-fishing-vip-game-guide__section-title {
    font-size: 32px;
  }
  .page-resources-online-fishing-vip-game-guide__sub-title {
    font-size: 24px;
  }
  .page-resources-online-fishing-vip-game-guide p,
  .page-resources-online-fishing-vip-game-guide__list li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-resources-online-fishing-vip-game-guide__hero-guide-section {
    padding: 40px 15px 30px;
  }
  .page-resources-online-fishing-vip-game-guide__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-resources-online-fishing-vip-game-guide__intro-paragraph {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-resources-online-fishing-vip-game-guide__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-resources-online-fishing-vip-game-guide__section {
    padding: 40px 15px;
  }
  .page-resources-online-fishing-vip-game-guide__section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .page-resources-online-fishing-vip-game-guide__sub-title {
    font-size: 22px;
    margin-top: 25px;
  }
  .page-resources-online-fishing-vip-game-guide p,
  .page-resources-online-fishing-vip-game-guide__list li {
    font-size: 15px;
    line-height: 1.7;
  }
  .page-resources-online-fishing-vip-game-guide__list li::before {
    font-size: 18px;
  }
  .page-resources-online-fishing-vip-game-guide__grid {
    gap: 20px;
  }
  .page-resources-online-fishing-vip-game-guide__card {
    padding: 20px;
  }
  .page-resources-online-fishing-vip-game-guide__card-title {
    font-size: 20px;
  }
  .page-resources-online-fishing-vip-game-guide__card-description {
    font-size: 14px;
  }
  .page-resources-online-fishing-vip-game-guide__faq-question {
    padding: 15px 20px;
  }
  .page-resources-online-fishing-vip-game-guide__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-online-fishing-vip-game-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  .page-resources-online-fishing-vip-game-guide__faq-answer {
    padding: 0 20px;
  }
  .page-resources-online-fishing-vip-game-guide__faq-item.active .page-resources-online-fishing-vip-game-guide__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-online-fishing-vip-game-guide__main-title {
    font-size: 24px;
  }
  .page-resources-online-fishing-vip-game-guide__section-title {
    font-size: 24px;
  }
  .page-resources-online-fishing-vip-game-guide__sub-title {
    font-size: 20px;
  }
  .page-resources-online-fishing-vip-game-guide__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-resources-online-fishing-vip-game-guide__card-image {
    height: 180px;
  }
}