.page-tintc {
  color: #ffffff; /* Body background is dark, so text should be light */
}

.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  overflow: hidden;
  min-height: 500px;
}

.page-tintc__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-tintc__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text contrast */
}

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
  border-radius: 8px;
}

.page-tintc__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-tintc__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-tintc__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-tintc__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}

.page-tintc__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-tintc__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.page-tintc__section {
  padding: 80px 0;
  background: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-tintc__section:nth-of-type(even) {
  background: #0a0a0a; /* Alternating background for visual separation */
}

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

.page-tintc__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.page-tintc__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-tintc__section-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #f0f0f0;
}

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

.page-tintc__grid-item {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tintc__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-tintc__item-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-tintc__item-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin: 0 20px 10px 20px;
  line-height: 1.4;
}

.page-tintc__item-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-tintc__item-link {
  display: inline-block;
  margin: 0 20px;
  color: #26A9E0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-tintc__item-link:hover {
  color: #1e87b7;
  text-decoration: underline;
}

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

.page-tintc__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tintc__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-tintc__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-tintc__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin: 0 20px 10px 20px;
  line-height: 1.4;
}

.page-tintc__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-tintc__card-button {
  display: inline-block;
  background: #EA7C07; /* Login color for action */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  margin: 0 20px 20px 20px;
  text-align: center;
  transition: background 0.3s ease;
  box-sizing: border-box;
  max-width: calc(100% - 40px);
  white-space: normal;
  word-wrap: break-word;
}

.page-tintc__card-button:hover {
  background: #c26706;
}

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

.page-tintc__faq {
  background: #0a0a0a;
}

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

.page-tintc__faq-item {
  background: rgba(255, 255, 255, 0.05);
  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.15rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
  list-style: none; /* For details tag */
}

.page-tintc__faq-question::-webkit-details-marker {
  display: none; /* For details tag */
}

.page-tintc__faq-item[open] > .page-tintc__faq-question {
  background: #26A9E0;
  color: #ffffff;
  border-bottom-color: transparent;
}

.page-tintc__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  color: #ffffff;
}

.page-tintc__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-tintc__call-to-action {
  background: linear-gradient(135deg, #26A9E0, #1e87b7); /* Gradient for CTA */
  padding: 100px 0;
  text-align: center;
}

.page-tintc__cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-tintc__cta-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

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

  .page-tintc__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-tintc__description {
    font-size: 1rem;
  }

  .page-tintc__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  .page-tintc__section-intro {
    font-size: 1rem;
  }

  .page-tintc__item-title,
  .page-tintc__card-title {
    font-size: 1.2rem;
  }

  .page-tintc__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-tintc__hero-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-tintc__description {
    font-size: 0.95rem;
  }

  .page-tintc__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

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

  .page-tintc__section {
    padding: 50px 0;
  }

  .page-tintc__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-tintc__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-tintc__section-intro {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }

  .page-tintc__grid-layout,
  .page-tintc__promo-cards,
  .page-tintc__guide-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-tintc__item-image,
  .page-tintc__card-image {
    height: 200px;
  }

  .page-tintc__item-title,
  .page-tintc__card-title {
    font-size: 1.1rem;
    margin: 0 15px 8px 15px;
  }

  .page-tintc__item-text,
  .page-tintc__card-text {
    font-size: 0.9rem;
    margin: 0 15px 15px 15px;
  }

  .page-tintc__item-link,
  .page-tintc__card-button {
    margin: 0 15px 15px 15px;
    max-width: calc(100% - 30px);
  }

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

  .page-tintc__faq-answer {
    padding: 10px 15px 15px 15px;
    font-size: 0.9rem;
  }

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

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

  /* Image responsive */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All content containers for mobile */
  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__grid-item,
  .page-tintc__promo-cards,
  .page-tintc__guide-cards,
  .page-tintc__faq-list,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Specific padding for sections in mobile */
  .page-tintc__news-updates .page-tintc__container,
  .page-tintc__promotions .page-tintc__container,
  .page-tintc__game-updates .page-tintc__container,
  .page-tintc__guides .page-tintc__container,
  .page-tintc__faq .page-tintc__container,
  .page-tintc__call-to-action .page-tintc__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Ensure no CSS filter changes image colors */
  .page-tintc img {
    filter: none !important;
  }
}