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

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

.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, body handles header offset */
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

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

.page-tintc__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
}

.page-tintc__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-tintc__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  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: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-tintc__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-tintc__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Button top color */
  border: 2px solid #2E7A4E; /* Border */
}

.page-tintc__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Border with transparency */
  color: #F2FFF6; /* Text Main */
}

.page-tintc__introduction-section,
.page-tintc__category-section,
.page-tintc__responsible-gaming-section {
  padding: 60px 0;
}

.page-tintc__dark-bg {
  background-color: #0A4B2C; /* Deep Green */
}

.page-tintc__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-tintc__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-tintc__highlight {
  color: #F2C14E; /* Gold */
  font-weight: 700;
}

.page-tintc__featured-news {
  padding: 60px 0;
}

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

.page-tintc__news-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

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

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

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

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

.page-tintc__news-card-title a:hover {
  color: #57E38D; /* Glow */
}

.page-tintc__news-card-meta {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-tintc__news-card-excerpt {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__read-more-link {
  color: #2AD16F; /* Button top color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-tintc__read-more-link:hover {
  color: #F2C14E; /* Gold */
}

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

.page-tintc__category-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-tintc__category-item:last-child {
  margin-bottom: 0;
}

.page-tintc__category-heading {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.page-tintc__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 25px;
  display: block;
}

.page-tintc__responsible-gaming-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-tintc__responsible-gaming-section .page-tintc__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__cta-buttons--center {
  margin-top: 40px;
}

.page-tintc__faq-section {
  padding: 60px 0;
}

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

.page-tintc__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-tintc__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F; /* Button top color */
  margin-left: 15px;
}

.page-tintc__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-tintc__faq-item[open] .page-tintc__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-tintc__faq-item[open] .page-tintc__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-tintc {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-tintc__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tintc__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

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

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

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

  .page-tintc__btn-primary,
  .page-tintc__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tintc__introduction-section,
  .page-tintc__featured-news,
  .page-tintc__category-section,
  .page-tintc__responsible-gaming-section,
  .page-tintc__faq-section {
    padding: 40px 0;
  }

  .page-tintc__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-tintc__text-block {
    font-size: 1em;
  }

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

  .page-tintc__news-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .page-tintc__news-card-image {
    height: 180px;
  }

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

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

  .page-tintc__category-heading {
    font-size: 1.5em;
  }

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

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

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

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

  /* Ensure all containers handle overflow */
  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__hero-section,
  .page-tintc__hero-image-wrapper,
  .page-tintc__hero-content,
  .page-tintc__cta-buttons,
  .page-tintc__view-all-button-wrapper,
  .page-tintc__news-grid,
  .page-tintc__category-item,
  .page-tintc__faq-list,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}