.page-tintc {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

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

.page-tintc__hero-section {
  padding-top: 10px; /* Small top padding, shared.css handles body padding */
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-tintc__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio for hero image */
  overflow: hidden;
}

.page-tintc__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken for text readability */
}

.page-tintc__hero-content {
  position: relative; /* Ensure content is above the image but not overlapping */
  z-index: 2;
  margin-top: 20px;
  padding: 0 20px;
}

.page-tintc__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: #FFD36B; /* Glow */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-tintc__hero-description {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-tintc__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-tintc__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-tintc__latest-news-section,
.page-tintc__categories-section,
.page-tintc__faq-section {
  padding: 60px 0;
}

.page-tintc__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Primary Color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-tintc__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-tintc__news-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tintc__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-tintc__news-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-tintc__news-card-content {
  padding: 25px;
}

.page-tintc__news-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-tintc__news-card-title a {
  color: #FFD36B; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__news-card-title a:hover {
  color: #F2C14E; /* Primary Color */
}

.page-tintc__news-card-meta {
  font-size: 0.9em;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 15px;
}

.page-tintc__news-card-excerpt {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

.page-tintc__news-card-link {
  color: #F2C14E; /* Primary Color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-tintc__news-card-link:hover {
  color: #FFD36B; /* Glow */
  text-decoration: underline;
}

.page-tintc__view-all-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-tintc__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #F2C14E; /* Primary Color */
  border: 2px solid #F2C14E; /* Primary Color */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-tintc__btn-secondary:hover {
  background: #F2C14E;
  color: #111111; /* Dark text for bright button */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-tintc__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-tintc__category-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  color: #FFD36B; /* Glow */
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-tintc__category-item:hover {
  background: #F2C14E; /* Primary Color */
  color: #111111; /* Dark text for bright button */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.3);
}

.page-tintc__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-tintc__dark-section {
  background: #111111; /* Card BG */
  border-radius: 15px;
  padding: 60px 40px;
  border: 1px solid #3A2A12; /* Border */
}

.page-tintc__cta-title {
  font-size: 2.8em;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-tintc__cta-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-tintc__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-tintc__faq-item[open] {
  background: rgba(242, 193, 78, 0.1);
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-tintc__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for WebKit browsers */
}

.page-tintc__faq-qtext {
  flex-grow: 1;
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #F2C14E; /* Primary Color */
}

.page-tintc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-tintc__section-title {
    font-size: 2em;
  }
  .page-tintc__cta-title {
    font-size: 2.2em;
  }
  .page-tintc__dark-section {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-tintc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }
  .page-tintc__hero-image-wrapper {
    padding-bottom: 75%; /* Adjust aspect ratio for mobile */
  }
  .page-tintc__hero-content {
    margin-top: 10px;
    padding: 0 15px;
  }
  .page-tintc__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em) !important;
  }
  .page-tintc__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-tintc__btn-primary {
    padding: 10px 20px;
  }

  /* 最新新闻区块 */
  .page-tintc__latest-news-section,
  .page-tintc__categories-section,
  .page-tintc__faq-section {
    padding: 40px 0;
  }
  .page-tintc__section-title {
    font-size: 1.8em !important;
    margin-bottom: 15px;
  }
  .page-tintc__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-tintc__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tintc__news-card-title {
    font-size: 1.2em;
  }
  .page-tintc__news-card-content {
    padding: 20px;
  }
  .page-tintc__news-card-image {
    height: 180px;
  }
  .page-tintc__view-all-wrapper {
    margin-top: 30px;
  }
  .page-tintc__btn-secondary {
    padding: 10px 20px;
  }

  /* 通用图片与容器 */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-tintc__container,
  .page-tintc__news-card,
  .page-tintc__category-item,
  .page-tintc__dark-section,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .page-tintc__btn-primary,
  .page-tintc__btn-secondary,
  .page-tintc a[class*="button"],
  .page-tintc 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-tintc__category-list {
    flex-direction: column; /* Stack categories vertically */
    align-items: center;
  }
  .page-tintc__category-item {
    width: 100%;
    text-align: center;
    max-width: 250px; /* Limit width for stacked items */
  }
  .page-tintc__cta-section {
    padding: 50px 0;
  }
  .page-tintc__dark-section {
    padding: 30px 20px;
  }
  .page-tintc__cta-title {
    font-size: 1.8em !important;
    margin-bottom: 15px;
  }
  .page-tintc__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* FAQ */
  .page-tintc__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-tintc__faq-answer {
    padding: 0 20px 15px;
  }
}