.page-tintc {
  background-color: #08160F;
  color: #F2FFF6;
  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__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  overflow: hidden;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

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

.page-tintc__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect */
  position: relative;
  z-index: 1;
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-tintc__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
}

.page-tintc__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-tintc__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-tintc__articles-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-tintc__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

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

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

.page-tintc__article-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-tintc__article-card:hover {
  transform: translateY(-5px);
}

.page-tintc__article-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.page-tintc__article-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-tintc__article-title a:hover {
  color: #2AD16F; /* Lighter green for hover */
}

.page-tintc__article-date {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  display: block;
}

.page-tintc__article-summary {
  font-size: 1em;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-tintc__read-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1E3A2A; /* Divider color for read more */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-tintc__read-more-button:hover {
  background-color: #2E7A4E; /* Border color for hover */
}

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

.page-tintc__featured-promo {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

.page-tintc__promo-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.page-tintc__promo-text {
  flex: 1;
}

.page-tintc__promo-text p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-tintc__cta-button--promo {
  margin-top: 20px;
}

.page-tintc__promo-image-wrapper {
  flex: 1;
  min-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

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

.page-tintc__gaming-strategies {
  padding: 60px 0;
  background-color: #08160F;
}

.page-tintc__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-tintc__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

.page-tintc__video-description {
  font-size: 1em;
  color: #A7D9B8;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-tintc__cta-button--learn-more {
  display: block;
  margin: 30px auto 0 auto;
  width: fit-content;
}

.page-tintc__faq-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-tintc__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-tintc__faq-item[open] {
  background-color: #1E3A2A; /* Divider color when open */
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.page-tintc__faq-question:hover {
  color: #2AD16F;
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Gold */
}

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

.page-tintc__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__faq-answer p {
  margin: 0;
}

.page-tintc__cta-final {
  padding: 60px 0;
  text-align: center;
  background-color: #08160F;
}

.page-tintc__cta-button--final {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-tintc__hero-content {
    margin-top: -50px;
    padding: 30px;
  }

  .page-tintc__promo-content {
    flex-direction: column;
  }

  .page-tintc__promo-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

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

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

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

  .page-tintc__hero-description,
  .page-tintc__section-intro,
  .page-tintc__section-description,
  .page-tintc__promo-text p,
  .page-tintc__article-summary,
  .page-tintc__video-description,
  .page-tintc__faq-answer p {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-tintc__cta-button,
  .page-tintc__read-more-button,
  .page-tintc__cta-button--promo,
  .page-tintc__cta-button--learn-more,
  .page-tintc__cta-button--final {
    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;
    text-align: center;
  }

  .page-tintc__hero-content,
  .page-tintc__container,
  .page-tintc__articles-section .page-tintc__container,
  .page-tintc__featured-promo .page-tintc__container,
  .page-tintc__gaming-strategies .page-tintc__container,
  .page-tintc__faq-section .page-tintc__container,
  .page-tintc__cta-final .page-tintc__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-tintc__hero-image,
  .page-tintc__article-image,
  .page-tintc__promo-image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-tintc__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-bottom: 56.25% !important; /* Ensure aspect ratio */
    margin-left: 0;
    margin-right: 0;
  }

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

  .page-tintc__articles-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-tintc__hero-content {
    margin-top: -30px;
  }
}