/* style/fish-shooting.css */

/* Căn chỉnh padding-top cho nội dung chính để không bị che bởi fixed header */
.page-fish-shooting {
  padding-top: 120px; /* Giá trị mặc định cho desktop */
  color: #f0f0f0; /* Màu chữ mặc định cho nền tối */
  background-color: var(--dark-bg-1);
}

@media (max-width: 768px) {
  .page-fish-shooting {
    padding-top: 100px; /* Giá trị cho mobile */
  }
}

/* HERO Section */
.page-fish-shooting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-dark));
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-fish-shooting__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 10;
}

.page-fish-shooting__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff; /* Đảm bảo độ tương phản trên nền gradient */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-fish-shooting__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-fish-shooting__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fish-shooting__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  z-index: 5;
}

.page-fish-shooting__hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-fish-shooting__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fish-shooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fish-shooting__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

/* Intro Section */
.page-fish-shooting__intro-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2);
}

/* Why Choose Section */
.page-fish-shooting__why-choose-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
}

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

.page-fish-shooting__feature-card {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fish-shooting__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fish-shooting__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-fish-shooting__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

/* Games Section */
.page-fish-shooting__games-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2);
}

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

.page-fish-shooting__game-card {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-fish-shooting__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting__game-image {
  width: 100%;
  height: 200px; /* Đảm bảo hình ảnh có kích thước đủ lớn */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-fish-shooting__game-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fish-shooting__game-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #cccccc;
  padding: 0 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Guide Section */
.page-fish-shooting__guide-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
}

.page-fish-shooting__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fish-shooting__step-item {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.page-fish-shooting__step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--secondary-color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-fish-shooting__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-fish-shooting__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-fish-shooting__step-description a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.page-fish-shooting__step-description a:hover {
  text-decoration: underline;
}

/* Strategy Section */
.page-fish-shooting__strategy-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2);
}

.page-fish-shooting__strategy-content {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fish-shooting__strategy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-fish-shooting__strategy-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-fish-shooting__strategy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2em;
}

/* Promo Section */
.page-fish-shooting__promo-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
}

.page-fish-shooting__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fish-shooting__promo-card {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-fish-shooting__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting__promo-image {
  width: 100%;
  height: 220px; /* Đảm bảo hình ảnh có kích thước đủ lớn */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-fish-shooting__promo-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-fish-shooting__promo-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  padding: 0 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* VIP Section */
.page-fish-shooting__vip-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2);
}

.page-fish-shooting__vip-content {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fish-shooting__vip-subtitle {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.page-fish-shooting__vip-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-fish-shooting__vip-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-fish-shooting__vip-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1;
}

/* Security Section */
.page-fish-shooting__security-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
}

.page-fish-shooting__security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-fish-shooting__security-item {
  background-color: var(--dark-bg-3);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-fish-shooting__security-subtitle {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}

/* FAQ Section */
.page-fish-shooting__faq-section {
  padding: 80px 0;
  background-color: var(--dark-bg-2);
}

.page-fish-shooting__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-fish-shooting__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-fish-shooting__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 15px;
  opacity: 0;
}

.page-fish-shooting__faq-item.active .page-fish-shooting__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--dark-bg-3);
  border-radius: 0 0 5px 5px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-top: none;
}

.page-fish-shooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--dark-bg-3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fish-shooting__faq-question:hover {
  background: var(--secondary-color-dark);
  border-color: var(--primary-color);
}

.page-fish-shooting__faq-question:active {
  background: var(--secondary-color-dark);
}

.page-fish-shooting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-fish-shooting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-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: 28px;
  height: 28px;
}

.page-fish-shooting__faq-item.active .page-fish-shooting__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* CTA Section */
.page-fish-shooting__cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary-color-dark), var(--dark-bg-1));
  text-align: center;
}

.page-fish-shooting__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fish-shooting__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-fish-shooting__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: none;
}

.page-fish-shooting__button--primary {
  background-color: var(--primary-color);
  color: var(--secondary-color-dark);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-fish-shooting__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-fish-shooting__button--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fish-shooting__button--secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-fish-shooting__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  margin-top: auto; /* Đẩy nút xuống dưới cùng trong flex column */
}

.page-fish-shooting__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fish-shooting__hero-title {
    font-size: 2.8em;
  }

  .page-fish-shooting__hero-description {
    font-size: 1.1em;
  }

  .page-fish-shooting__section-title {
    font-size: 2em;
  }

  .page-fish-shooting__text-block, .page-fish-shooting__feature-description, .page-fish-shooting__game-description, .page-fish-shooting__step-description, .page-fish-shooting__strategy-list li, .page-fish-shooting__promo-description, .page-fish-shooting__vip-list li, .page-fish-shooting__cta-description {
    font-size: 1em;
  }

  .page-fish-shooting__feature-title, .page-fish-shooting__game-title, .page-fish-shooting__step-title, .page-fish-shooting__promo-title, .page-fish-shooting__security-subtitle {
    font-size: 1.3em;
  }

  .page-fish-shooting__vip-subtitle {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-fish-shooting__hero-section {
    padding: 40px 15px;
  }

  .page-fish-shooting__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-fish-shooting__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-fish-shooting__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-fish-shooting__hero-main-image {
    border-radius: 8px;
  }

  .page-fish-shooting__intro-section, .page-fish-shooting__why-choose-section, .page-fish-shooting__games-section, .page-fish-shooting__guide-section, .page-fish-shooting__strategy-section, .page-fish-shooting__promo-section, .page-fish-shooting__vip-section, .page-fish-shooting__security-section, .page-fish-shooting__faq-section, .page-fish-shooting__cta-section {
    padding: 50px 0;
  }

  .page-fish-shooting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fish-shooting__feature-card, .page-fish-shooting__game-card, .page-fish-shooting__step-item, .page-fish-shooting__promo-card, .page-fish-shooting__security-item {
    padding: 25px;
  }

  .page-fish-shooting__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .page-fish-shooting__game-image {
    height: 180px;
  }

  .page-fish-shooting__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-fish-shooting__strategy-content, .page-fish-shooting__vip-content {
    padding: 30px;
  }

  .page-fish-shooting__strategy-list li, .page-fish-shooting__vip-list li {
    font-size: 0.95em;
    padding-left: 25px;
  }

  .page-fish-shooting__vip-list li::before {
    font-size: 1.3em;
  }

  .page-fish-shooting__promo-image {
    height: 180px;
  }

  .page-fish-shooting__faq-question {
    padding: 15px;
  }

  .page-fish-shooting__faq-question h3 {
    font-size: 1em;
  }

  .page-fish-shooting__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
    margin-left: 10px;
  }

  .page-fish-shooting__faq-item.active .page-fish-shooting__faq-answer {
    padding: 15px !important;
  }

  .page-fish-shooting__cta-title {
    font-size: 2em;
  }

  .page-fish-shooting__cta-description {
    font-size: 1em;
  }

  .page-fish-shooting__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  /* Mobile specific image adaptation */
  .page-fish-shooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fish-shooting__container, .page-fish-shooting__hero-section, .page-fish-shooting__intro-section, .page-fish-shooting__why-choose-section, .page-fish-shooting__games-section, .page-fish-shooting__guide-section, .page-fish-shooting__strategy-section, .page-fish-shooting__promo-section, .page-fish-shooting__vip-section, .page-fish-shooting__security-section, .page-fish-shooting__faq-section, .page-fish-shooting__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}