.page-tintc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #F5F7FA; /* Default background color */
}

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

.page-tintc__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
  padding-bottom: 40px;
  overflow: hidden;
  text-align: center;
  background-color: #E53935; /* Fallback for image load */
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
  margin-bottom: 20px;
}

.page-tintc__hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  padding: 0 20px;
}

.page-tintc__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.page-tintc__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-tintc__cta-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
}

.page-tintc__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #E53935;
  padding-top: 20px;
}

.page-tintc__latest-news-section,
.page-tintc__game-updates-section,
.page-tintc__promotions-section,
.page-tintc__faq-section,
.page-tintc__cta-section {
  padding: 60px 0;
}

.page-tintc__latest-news-section,
.page-tintc__promotions-section,
.page-tintc__faq-section {
  background-color: #F5F7FA;
  color: #333333;
}

.page-tintc__game-updates-section,
.page-tintc__cta-section {
  background-color: #E53935;
  color: #ffffff;
}

.page-tintc__game-updates-section .page-tintc__section-title,
.page-tintc__cta-section .page-tintc__section-title {
  color: #ffffff;
}

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

.page-tintc__news-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-tintc__news-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-tintc__news-date {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 10px;
}

.page-tintc__news-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-tintc__news-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__news-title a:hover {
  color: #E53935;
}

.page-tintc__news-excerpt {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__read-more {
  display: inline-block;
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Pushes the link to the bottom */
}

.page-tintc__read-more:hover {
  text-decoration: underline;
}

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

.page-tintc__view-all-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FF5A4F;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-tintc__view-all-button:hover {
  background-color: #E53935;
}

.page-tintc__update-list {
  display: grid;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.page-tintc__update-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-tintc__update-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 8px;
}

.page-tintc__update-date {
  font-size: 0.9em;
  color: #f0f0f0;
  margin-bottom: 15px;
  display: block;
}

.page-tintc__update-description {
  font-size: 1em;
  color: #f8f8f8;
}

.page-tintc__promotion-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.page-tintc__promotion-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-tintc__promotion-content {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-tintc__promotion-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #E53935;
  margin-bottom: 15px;
}

.page-tintc__promotion-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

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

.page-tintc__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #E0E0E0;
  list-style: none;
}

.page-tintc__faq-question::-webkit-details-marker {
  display: none;
}

.page-tintc__faq-question:hover {
  background-color: #f0f0f0;
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #E53935;
  margin-left: 15px;
  pointer-events: none; /* Prevents text selection from interfering with click */
}

.page-tintc__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #E0E0E0;
}

.page-tintc__faq-item[open] .page-tintc__faq-question {
  border-bottom: none;
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  content: '−';
}

.page-tintc__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.page-tintc__cta-buttons {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-tintc__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
}

.page-tintc__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-tintc__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border-color: #E53935;
}

.page-tintc__btn-secondary:hover {
  background: #f0f0f0;
  color: #FF5A4F;
  border-color: #FF5A4F;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-tintc__hero-content {
    padding: 0 40px;
  }

  .page-tintc__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
  }

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

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

  .page-tintc__promotion-card {
    flex-direction: column;
  }

  .page-tintc__promotion-image,
  .page-tintc__promotion-content {
    width: 100%;
  }

  .page-tintc__promotion-image {
    height: 250px;
  }

  .page-tintc__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-tintc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-tintc__hero-image {
    max-height: 400px;
  }

  .page-tintc__hero-content {
    padding: 0 15px;
  }

  .page-tintc__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 10px;
  }

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

  .page-tintc__cta-button {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  /* 其他内容模块 */
  .page-tintc__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 15px;
  }

  .page-tintc__container {
    padding: 15px;
  }

  .page-tintc__latest-news-section,
  .page-tintc__game-updates-section,
  .page-tintc__promotions-section,
  .page-tintc__faq-section,
  .page-tintc__cta-section {
    padding: 40px 0;
  }

  .page-tintc__news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-tintc__news-title {
    font-size: 1.2em;
  }

  .page-tintc__update-item {
    padding: 20px;
  }

  .page-tintc__update-title {
    font-size: 1.2em;
  }

  .page-tintc__promotion-card {
    flex-direction: column;
  }

  .page-tintc__promotion-image {
    height: 200px;
  }

  .page-tintc__promotion-content {
    padding: 20px;
  }

  .page-tintc__promotion-title {
    font-size: 1.3em;
  }

  .page-tintc__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-tintc__faq-answer {
    padding: 15px 20px;
  }

  .page-tintc__cta-description {
    font-size: 1em;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  /* 按钮与按钮容器 */
  .page-tintc__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-tintc__btn-primary,
  .page-tintc__btn-secondary {
    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 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__news-card,
  .page-tintc__promotion-card,
  .page-tintc__faq-item,
  .page-tintc__update-item,
  .page-tintc__latest-news-section,
  .page-tintc__game-updates-section,
  .page-tintc__promotions-section,
  .page-tintc__faq-section,
  .page-tintc__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tintc__news-card .page-tintc__news-image {
    height: auto; /* Allow image to scale proportionally */
  }
}