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

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

.page-tintc__section-title {
  font-size: 2.5em;
  color: var(--Text-Main); /* #F2FFF6 */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-tintc__section-description {
  font-size: 1.1em;
  color: var(--Text-Secondary); /* #A7D9B8 */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.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;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  color: var(--Text-Main); /* #F2FFF6 */
  padding: 20px;
}

.page-tintc__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Use clamp for H1 font-size */
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--Text-Main); /* #F2FFF6 */
}

.page-tintc__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--Text-Secondary); /* #A7D9B8 */
}

.page-tintc__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
  color: #ffffff; /* White text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-tintc__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-tintc__btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--Text-Main); /* #F2FFF6 */
  border: 2px solid var(--Border); /* #2E7A4E */
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 1em;
}

.page-tintc__btn-secondary:hover {
  background: var(--Deep-Green); /* #0A4B2C */
  color: var(--Text-Main); /* #F2FFF6 */
  transform: translateY(-2px);
}

.page-tintc__dark-bg {
  background-color: var(--background); /* #08160F */
  color: var(--Text-Main); /* #F2FFF6 */
  padding: 80px 0;
}

.page-tintc__light-bg {
  background-color: var(--Card-BG); /* #11271B */
  color: var(--Text-Main); /* #F2FFF6 */
  padding: 80px 0;
}

.page-tintc__featured-news,
.page-tintc__latest-updates,
.page-tintc__game-analysis,
.page-tintc__guides-tips,
.page-tintc__faq-section,
.page-tintc__cta-final {
  padding: 80px 0;
}

.page-tintc__featured-news .page-tintc__section-title,
.page-tintc__featured-news .page-tintc__section-description {
  color: var(--Text-Main); /* #F2FFF6 */
}

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

.page-tintc__news-card {
  background: var(--Card-BG); /* #11271B */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--Text-Main); /* #F2FFF6 */
}

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

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

.page-tintc__card-content {
  padding: 25px;
}

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

.page-tintc__card-title a {
  color: var(--Text-Main); /* #F2FFF6 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__card-title a:hover {
  color: var(--Gold); /* #F2C14E */
}

.page-tintc__card-date {
  font-size: 0.9em;
  color: var(--Text-Secondary); /* #A7D9B8 */
  margin-bottom: 15px;
}

.page-tintc__card-excerpt {
  font-size: 1em;
  color: var(--Text-Secondary); /* #A7D9B8 */
  margin-bottom: 20px;
}

.page-tintc__card-link {
  color: var(--Gold); /* #F2C14E */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-tintc__card-link:hover {
  text-decoration: underline;
  color: var(--Glow); /* #57E38D */
}

.page-tintc__view-all-button-container {
  text-align: center;
}

.page-tintc__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.page-tintc__grid-2-col--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-tintc__grid-2-col--reverse .page-tintc__text-block {
  order: 2;
}

.page-tintc__grid-2-col--reverse .page-tintc__image-block {
  order: 1;
}

.page-tintc__sub-title {
  font-size: 2em;
  color: var(--Text-Main); /* #F2FFF6 */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-tintc__latest-updates p,
.page-tintc__guides-tips p {
  color: var(--Text-Secondary); /* #A7D9B8 */
  margin-bottom: 15px;
}

.page-tintc__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-tintc__button-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-tintc__game-analysis .page-tintc__card--game {
  background: var(--Card-BG); /* #11271B */
  border: 1px solid var(--Border); /* #2E7A4E */
}

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

.page-tintc__faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--Divider); /* #1E3A2A */
}

.page-tintc__faq-item {
  border-bottom: 1px solid var(--Divider); /* #1E3A2A */
  padding: 20px 0;
  color: var(--Text-Main); /* #F2FFF6 */
}

.page-tintc__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  font-size: 1.2em;
  font-weight: bold;
  color: var(--Text-Main); /* #F2FFF6 */
  padding-right: 10px;
}

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

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--Gold); /* #F2C14E */
  transition: transform 0.3s ease;
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  transform: rotate(45deg);
}

.page-tintc__faq-answer {
  padding-top: 15px;
  font-size: 1em;
  color: var(--Text-Secondary); /* #A7D9B8 */
  line-height: 1.7;
}

.page-tintc__cta-final {
  text-align: center;
}

.page-tintc__cta-final .page-tintc__section-title,
.page-tintc__cta-final .page-tintc__section-description {
  color: var(--Text-Main); /* #F2FFF6 */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-tintc__sub-title {
    font-size: 1.8em;
  }
  .page-tintc__grid-2-col {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .page-tintc {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-tintc__section-title {
    font-size: 2em;
  }
  .page-tintc__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-tintc__hero-content {
    padding: 15px;
  }
  .page-tintc__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-tintc__subtitle {
    font-size: 1em;
  }
  .page-tintc__featured-news,
  .page-tintc__latest-updates,
  .page-tintc__game-analysis,
  .page-tintc__guides-tips,
  .page-tintc__faq-section,
  .page-tintc__cta-final {
    padding: 40px 0;
  }
  .page-tintc__container {
    padding: 0 15px;
  }
  .page-tintc__news-grid,
  .page-tintc__grid-3-col {
    grid-template-columns: 1fr;
  }
  .page-tintc__grid-2-col {
    grid-template-columns: 1fr;
  }
  .page-tintc__grid-2-col--reverse .page-tintc__text-block,
  .page-tintc__grid-2-col--reverse .page-tintc__image-block {
    order: unset; /* Reset order for mobile */
  }
  .page-tintc__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-tintc__cta-button {
    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__btn-primary,
  .page-tintc__btn-secondary {
    width: 100%;
    text-align: center;
  }
  .page-tintc__card-image {
    height: 180px;
  }
  .page-tintc__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .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__hero-section,
  .page-tintc__grid-2-col,
  .page-tintc__grid-3-col,
  .page-tintc__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-tintc__faq-item summary {
    font-size: 1.1em;
  }
  .page-tintc__faq-answer {
    font-size: 0.95em;
  }
}