:root {
    --cfun68-primary: #11A84E;
    --cfun68-secondary: #22C768;
    --cfun68-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --cfun68-card-bg: #11271B;
    --cfun68-background: #08160F;
    --cfun68-text-main: #F2FFF6;
    --cfun68-text-secondary: #A7D9B8;
    --cfun68-border: #2E7A4E;
    --cfun68-glow: #57E38D;
    --cfun68-gold: #F2C14E;
    --cfun68-divider: #1E3A2A;
    --cfun68-deep-green: #0A4B2C;
}

/* style/fishing-games.css */
/* body đã padding-top: var(--header-offset)；trang này không được viết lại biến đó */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--cfun68-text-main); /* Văn bản chính màu sáng do nền body tối */
  background-color: var(--cfun68-background);
  line-height: 1.6;
  padding-bottom: 40px; /* Khoảng cách với footer */
}

.page-fishing-games__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-fishing-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); /* H1/H2 font size, sử dụng clamp */
  color: var(--cfun68-glow);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__section-description {
  font-size: 1.1rem;
  color: var(--cfun68-text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Chỉ một khoảng cách nhỏ */
  padding-bottom: 60px;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Giới hạn chiều cao cho hero image */
  overflow: hidden;
  position: relative;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2; /* Đảm bảo nội dung nằm trên hình ảnh */
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Kéo nội dung lên trên hình ảnh */
  background: linear-gradient(0deg, var(--cfun68-background) 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0) 100%);
  padding-top: 150px;
}

.page-fishing-games__hero-title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: var(--cfun68-gold);
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
  line-height: 1.1;
}

.page-fishing-games__hero-description {
  font-size: 1.2rem;
  color: var(--cfun68-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-fishing-games__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Chỉ một khoảng cách nhỏ */
  background-color: var(--cfun68-deep-green);
}

.page-fishing-games__video-container {
  width: 100%;
  max-width: 1000px; /* Kích thước tối đa cho video */
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-fishing-games__video-cta {
    text-align: center;
    margin-top: 30px;
}

.page-fishing-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-fishing-games__dark-section {
  background-color: var(--cfun68-card-bg);
  color: var(--cfun68-text-main);
  padding: 60px 0;
}

.page-fishing-games__intro-section, 
.page-fishing-games__features-section, 
.page-fishing-games__guide-section,
.page-fishing-games__strategy-section,
.page-fishing-games__game-types-section,
.page-fishing-games__promotions-section,
.page-fishing-games__security-section,
.page-fishing-games__support-section,
.page-fishing-games__faq-section,
.page-fishing-games__conclusion-section {
  padding: 60px 0;
}

.page-fishing-games__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-fishing-games__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-fishing-games__block-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__text-content {
  flex: 1;
  max-width: 50%;
}

.page-fishing-games__text-content h3 {
  font-size: 1.8rem;
  color: var(--cfun68-gold);
  margin-bottom: 15px;
}

.page-fishing-games__text-content p {
  margin-bottom: 15px;
  color: var(--cfun68-text-secondary);
}

.page-fishing-games__text-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-fishing-games__text-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--cfun68-text-main);
}

.page-fishing-games__text-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cfun68-glow);
  font-weight: bold;
}

.page-fishing-games__features-grid, 
.page-fishing-games__strategy-grid, 
.page-fishing-games__game-types-grid, 
.page-fishing-games__promotions-list, 
.page-fishing-games__support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__card {
  background-color: var(--cfun68-card-bg);
  border: 1px solid var(--cfun68-border);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--cfun68-text-main);
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: var(--cfun68-glow);
  margin-bottom: 10px;
}

.page-fishing-games__card p {
  color: var(--cfun68-text-secondary);
  font-size: 0.95rem;
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games__guide-item {
  background-color: var(--cfun68-deep-green);
  border: 1px solid var(--cfun68-border);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__guide-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--cfun68-gold);
  margin-bottom: 15px;
  background: rgba(242, 193, 78, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.page-fishing-games__guide-item h3 {
  font-size: 1.6rem;
  color: var(--cfun68-text-main);
  margin-bottom: 10px;
}

.page-fishing-games__guide-item p {
  color: var(--cfun68-text-secondary);
  font-size: 0.95rem;
}

.page-fishing-games__guide-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__strategy-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--cfun68-text-secondary);
}

.page-fishing-games__promotion-item a,
.page-fishing-games__text-content a,
.page-fishing-games__guide-item a {
    color: var(--cfun68-glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-fishing-games__promotion-item a:hover,
.page-fishing-games__text-content a:hover,
.page-fishing-games__guide-item a:hover {
    color: var(--cfun68-gold);
    text-decoration: underline;
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games__btn-primary {
  background: var(--cfun68-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--cfun68-glow);
  border: 2px solid var(--cfun68-glow);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: var(--cfun68-gold);
  border-color: var(--cfun68-gold);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.4);
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

.page-fishing-games__faq-item {
  background-color: var(--cfun68-deep-green);
  border: 1px solid var(--cfun68-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--cfun68-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--cfun68-text-main);
  cursor: pointer;
  list-style: none;
  background-color: var(--cfun68-deep-green);
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-qtext {
    flex-grow: 1;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--cfun68-glow);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  color: var(--cfun68-gold);
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--cfun68-text-secondary);
  border-top: 1px solid var(--cfun68-divider);
  margin-top: -1px; /* Để đường viền trên không bị trùng */
}

.page-fishing-games__faq-answer p {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: -100px;
    padding-top: 100px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  }
  .page-fishing-games__hero-description {
    font-size: 1.1rem;
  }
  .page-fishing-games__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__image-text-block--reverse {
    flex-direction: column;
  }
  .page-fishing-games__block-image,
  .page-fishing-games__text-content {
    max-width: 100%;
    flex: none;
  }
  .page-fishing-games__text-content ul {
    text-align: left;
  }
  .page-fishing-games__text-content li {
    margin-left: 20px;
  }
}

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

  .page-fishing-games__section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-fishing-games__section-description {
    font-size: 1rem;
    padding: 0 15px;
  }

  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-content {
    margin-top: -80px;
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .page-fishing-games__hero-description {
    font-size: 1rem;
  }

  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__video-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

  .page-fishing-games__video-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__dark-section {
    padding: 40px 0;
  }

  .page-fishing-games__intro-section, 
  .page-fishing-games__features-section, 
  .page-fishing-games__guide-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__game-types-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__security-section,
  .page-fishing-games__support-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }

  .page-fishing-games__block-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__text-content {
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-fishing-games__features-grid, 
  .page-fishing-games__strategy-grid, 
  .page-fishing-games__game-types-grid, 
  .page-fishing-games__promotions-list, 
  .page-fishing-games__support-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__card-image {
    height: 180px;
  }

  .page-fishing-games__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-fishing-games__guide-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    padding: 0 15px;
  }

  .page-fishing-games__faq-item {
    margin: 0 15px 15px 15px;
  }

  .page-fishing-games__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
  .page-fishing-games__hero-content {
    padding-top: 60px;
    margin-top: -60px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    font-size: 0.95rem !important;
    padding: 10px 15px !important;
  }
}