.page-lich-da-ga-thomo {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default for light background */
  background-color: #f5f5f5; /* Light grey background for the page content */
  line-height: 1.6;
}

.page-lich-da-ga-thomo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-lich-da-ga-thomo__section {
  padding: 40px 0;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-lich-da-ga-thomo__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f5f5; /* Hero section might have a light background */
  border-radius: 0;
  box-shadow: none;
}

.page-lich-da-ga-thomo__hero-image {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-lich-da-ga-thomo__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default for desktop, will change for mobile */
}

.page-lich-da-ga-thomo__hero-content {
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: -80px; /* Adjust if content overlaps image */
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-50px); /* Lift content slightly over image bottom */
}

.page-lich-da-ga-thomo__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* H1 size, clamp for responsiveness */
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.page-lich-da-ga-thomo__hero-description {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-lich-da-ga-thomo__btn-primary,
.page-lich-da-ga-thomo__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%; /* Important for buttons */
  box-sizing: border-box; /* Important for buttons */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-lich-da-ga-thomo__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-lich-da-ga-thomo__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-lich-da-ga-thomo__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-lich-da-ga-thomo__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-lich-da-ga-thomo__btn-text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-lich-da-ga-thomo__btn-text-link:hover {
  color: #1a8cc4;
  text-decoration: underline;
}

.page-lich-da-ga-thomo__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-lich-da-ga-thomo__section-title--white {
  color: #FFFFFF;
}

.page-lich-da-ga-thomo__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-lich-da-ga-thomo__schedule-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-lich-da-ga-thomo__schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensure table is wide enough on smaller screens */
}

.page-lich-da-ga-thomo__schedule-table th,
.page-lich-da-ga-thomo__schedule-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  text-align: left;
  color: #333333;
}

.page-lich-da-ga-thomo__schedule-table th {
  background-color: #26A9E0;
  color: #FFFFFF;
  font-weight: 600;
}

.page-lich-da-ga-thomo__schedule-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.page-lich-da-ga-thomo__schedule-table tbody tr:hover {
  background-color: #e6f7ff;
}

.page-lich-da-ga-thomo__content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
}

.page-lich-da-ga-thomo__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-lich-da-ga-thomo__text-block {
  flex: 1;
}

.page-lich-da-ga-thomo__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-lich-da-ga-thomo__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-lich-da-ga-thomo__live-guide ol,
.page-lich-da-ga-thomo__betting-tips ul {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-lich-da-ga-thomo__live-guide ol li,
.page-lich-da-ga-thomo__betting-tips ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-lich-da-ga-thomo__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.page-lich-da-ga-thomo__benefits-item {
  background-color: #f0f8ff; /* Light blue background for benefits */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-lich-da-ga-thomo__benefits-item h3 {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-lich-da-ga-thomo__benefits-item p {
  color: #555555;
}

.page-lich-da-ga-thomo__btn-full-width {
  width: 100%;
  display: block;
  margin-top: 30px;
  max-width: 400px; /* Limit max-width for full-width buttons */
  margin-left: auto;
  margin-right: auto;
}

/* FAQ styles - details based */
details.page-lich-da-ga-thomo__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-lich-da-ga-thomo__faq-item summary.page-lich-da-ga-thomo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-lich-da-ga-thomo__faq-item summary.page-lich-da-ga-thomo__faq-question::-webkit-details-marker {
  display: none;
}
details.page-lich-da-ga-thomo__faq-item summary.page-lich-da-ga-thomo__faq-question:hover {
  background: #f5f5f5;
}
.page-lich-da-ga-thomo__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-lich-da-ga-thomo__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-lich-da-ga-thomo__faq-item .page-lich-da-ga-thomo__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

.page-lich-da-ga-thomo__dark-bg {
  background-color: #26A9E0; /* Brand primary color as dark background */
  color: #ffffff;
}

.page-lich-da-ga-thomo__cta-section {
  text-align: center;
  padding: 60px 20px;
}

.page-lich-da-ga-thomo__cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lich-da-ga-thomo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%; /* Ensure container takes full width */
  max-width: 600px; /* Limit max width for button group */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-lich-da-ga-thomo__cta-buttons .page-lich-da-ga-thomo__btn-primary,
.page-lich-da-ga-thomo__cta-buttons .page-lich-da-ga-thomo__btn-secondary {
  flex: 1;
  max-width: 250px; /* Max width for individual buttons in a group */
}

.page-lich-da-ga-thomo__cta-image {
  max-width: 600px;
  margin-top: 30px;
}

/* General image and container responsiveness */
.page-lich-da-ga-thomo img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive Styles --- */

/* For smaller desktops/tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-lich-da-ga-thomo__container {
    padding: 15px;
  }
  .page-lich-da-ga-thomo__hero-content {
    padding: 25px 15px;
  }
  .page-lich-da-ga-thomo__section {
    padding: 30px 0;
  }
  .page-lich-da-ga-thomo__main-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }
  .page-lich-da-ga-thomo__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }
  .page-lich-da-ga-thomo__benefits-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-lich-da-ga-thomo__cta-buttons {
    max-width: 500px;
  }
}

/* Mobile specific styles (max-width: 768px) */
@media (max-width: 768px) {
  /* General page content adjustments */
  .page-lich-da-ga-thomo {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-lich-da-ga-thomo__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-lich-da-ga-thomo__section {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  /* HERO 主图区域 */
  .page-lich-da-ga-thomo__hero-section {
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .page-lich-da-ga-thomo__hero-image img {
    object-fit: contain !important; /* Ensure image is fully visible */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
    width: 100% !important;
    height: auto !important;
  }
  .page-lich-da-ga-thomo__hero-content {
    padding: 20px 15px;
    margin-top: -50px; /* Adjust for smaller screens */
    transform: translateY(-30px);
  }
  .page-lich-da-ga-thomo__main-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 10px;
  }
  .page-lich-da-ga-thomo__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* 通用图片与容器 */
  .page-lich-da-ga-thomo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-lich-da-ga-thomo__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .page-lich-da-ga-thomo__content-wrapper--reversed {
    flex-direction: column; /* Still column for mobile */
  }
  .page-lich-da-ga-thomo__image-block {
    width: 100%;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-lich-da-ga-thomo__section-title {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    margin-bottom: 20px;
    text-align: center;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-lich-da-ga-thomo__schedule-table-wrapper {
    overflow-x: auto; /* Keep for table scroll */
  }
  .page-lich-da-ga-thomo__schedule-table {
    min-width: 500px; /* Adjust min-width for mobile */
  }

  /* 按钮与按钮容器 */
  .page-lich-da-ga-thomo__btn-primary,
  .page-lich-da-ga-thomo__btn-secondary,
  .page-lich-da-ga-thomo a[class*="button"],
  .page-lich-da-ga-thomo a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-lich-da-ga-thomo__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-lich-da-ga-thomo__cta-buttons .page-lich-da-ga-thomo__btn-primary,
  .page-lich-da-ga-thomo__cta-buttons .page-lich-da-ga-thomo__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-lich-da-ga-thomo__btn-full-width {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  /* FAQ styles */
  details.page-lich-da-ga-thomo__faq-item summary.page-lich-da-ga-thomo__faq-question {
    padding: 15px;
  }
  .page-lich-da-ga-thomo__faq-qtext {
    font-size: 15px;
  }
  details.page-lich-da-ga-thomo__faq-item .page-lich-da-ga-thomo__faq-answer {
    padding: 0 15px 15px;
  }

  /* Benefits list */
  .page-lich-da-ga-thomo__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}