/* style/index-tdtc-features-benefits.css */

/* Base styles for the page content */
.page-index-tdtc-features-benefits {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#0a0a0a) */
}

.page-index-tdtc-features-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-tdtc-features-benefits__section {
  padding: 60px 0;
}

.page-index-tdtc-features-benefits__dark-bg {
  background-color: #0a0a0a; /* Ensure dark background for sections explicitly designed for it */
  color: #ffffff;
}

.page-index-tdtc-features-benefits__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-index-tdtc-features-benefits__section-title {
  font-size: 2.8em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-tdtc-features-benefits__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-index-tdtc-features-benefits__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background: linear-gradient(135deg, #26A9E0, #1a7bb0);
  color: #ffffff;
  text-align: center;
}

.page-index-tdtc-features-benefits__hero-section .page-index-tdtc-features-benefits__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-index-tdtc-features-benefits__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-index-tdtc-features-benefits__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-index-tdtc-features-benefits__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #ffffff;
}

.page-index-tdtc-features-benefits__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.page-index-tdtc-features-benefits__btn-primary,
.page-index-tdtc-features-benefits__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-index-tdtc-features-benefits__btn-primary {
  background-color: #EA7C07; /* Login button color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-index-tdtc-features-benefits__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-index-tdtc-features-benefits__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-tdtc-features-benefits__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-tdtc-features-benefits__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Game Diversity Section */
.page-index-tdtc-features-benefits__game-diversity .page-index-tdtc-features-benefits__section-title {
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__game-diversity .page-index-tdtc-features-benefits__section-description {
  color: #333333;
}

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

.page-index-tdtc-features-benefits__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  color: #333333;
}

.page-index-tdtc-features-benefits__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-index-tdtc-features-benefits__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-index-tdtc-features-benefits__card-title a:hover {
  text-decoration: underline;
}

.page-index-tdtc-features-benefits__card-text {
  font-size: 1em;
  padding: 0 20px;
  color: #555555;
}

.page-index-tdtc-features-benefits__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Advantages Section */
.page-index-tdtc-features-benefits__advantages {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-index-tdtc-features-benefits__advantages .page-index-tdtc-features-benefits__section-title {
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__advantages .page-index-tdtc-features-benefits__section-description {
  color: #f0f0f0;
}

.page-index-tdtc-features-benefits__grid--col3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-index-tdtc-features-benefits__card--transparent {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
  padding: 30px 20px;
}

.page-index-tdtc-features-benefits__card--transparent .page-index-tdtc-features-benefits__card-title {
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__card--transparent .page-index-tdtc-features-benefits__card-title a {
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__card--transparent .page-index-tdtc-features-benefits__card-text {
  color: #f0f0f0;
}

/* Download Guide Section */
.page-index-tdtc-features-benefits__download-guide .page-index-tdtc-features-benefits__section-title {
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__download-guide .page-index-tdtc-features-benefits__section-description {
  color: #333333;
}

.page-index-tdtc-features-benefits__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-index-tdtc-features-benefits__guide-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-index-tdtc-features-benefits__guide-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-index-tdtc-features-benefits__guide-item h3 {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  flex-basis: 100%;
}

.page-index-tdtc-features-benefits__guide-item p {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
  color: #555555;
}

.page-index-tdtc-features-benefits__guide-item p a {
  color: #26A9E0;
  text-decoration: none;
}

.page-index-tdtc-features-benefits__guide-item p a:hover {
  text-decoration: underline;
}

.page-index-tdtc-features-benefits__guide-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Commitment Section */
.page-index-tdtc-features-benefits__commitment {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-index-tdtc-features-benefits__commitment .page-index-tdtc-features-benefits__section-title {
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__commitment .page-index-tdtc-features-benefits__section-description {
  color: #f0f0f0;
}

.page-index-tdtc-features-benefits__info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-index-tdtc-features-benefits__info-block {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.page-index-tdtc-features-benefits__info-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-tdtc-features-benefits__info-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-index-tdtc-features-benefits__info-title a:hover {
  text-decoration: underline;
}

.page-index-tdtc-features-benefits__info-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-index-tdtc-features-benefits__commitment-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

/* FAQ Section */
.page-index-tdtc-features-benefits__faq .page-index-tdtc-features-benefits__section-title {
  color: #26A9E0;
}

.page-index-tdtc-features-benefits__faq .page-index-tdtc-features-benefits__section-description {
  color: #333333;
}

.page-index-tdtc-features-benefits__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-tdtc-features-benefits__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-tdtc-features-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  cursor: pointer;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}

.page-index-tdtc-features-benefits__faq-question:hover {
  background-color: #f0f0f0;
}

.page-index-tdtc-features-benefits__faq-question h3 {
  font-size: 1.2em;
  color: #333333;
  margin: 0;
}

.page-index-tdtc-features-benefits__faq-toggle {
  font-size: 1.5em;
  color: #26A9E0;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-index-tdtc-features-benefits__faq-item.active .page-index-tdtc-features-benefits__faq-toggle {
  transform: rotate(45deg);
}