.page-blog-how-to-register-and-login-tt128 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Dark background #08160F, so light text */
  background-color: var(--background, #08160F);
}

.page-blog-how-to-register-and-login-tt128__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding */
  overflow: hidden;
}

.page-blog-how-to-register-and-login-tt128__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  max-height: 700px; /* Limit hero image height */
}

.page-blog-how-to-register-and-login-tt128__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG #11271B with transparency */
  border-radius: 10px;
  margin-top: 100px; /* Push content down slightly over hero */
}

.page-blog-how-to-register-and-login-tt128__main-title {
  color: var(--text-main, #F2FFF6);
  font-weight: bold;
  margin-bottom: 15px;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  line-height: 1.2;
}

.page-blog-how-to-register-and-login-tt128__subtitle {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-blog-how-to-register-and-login-tt128__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-register-and-login-tt128__btn-primary,
.page-blog-how-to-register-and-login-tt128__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-how-to-register-and-login-tt128__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-how-to-register-and-login-tt128__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-how-to-register-and-login-tt128__btn-secondary {
  background: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border, #2E7A4E);
}

.page-blog-how-to-register-and-login-tt128__btn-secondary:hover {
  background: var(--deep-green, #0A4B2C);
  transform: translateY(-2px);
}

.page-blog-how-to-register-and-login-tt128__btn-primary--large {
  font-size: 1.2rem;
  padding: 18px 40px;
}

.page-blog-how-to-register-and-login-tt128__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-blog-how-to-register-and-login-tt128__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-how-to-register-and-login-tt128__section-header--center {
  margin-top: 60px;
}

.page-blog-how-to-register-and-login-tt128__section-title {
  color: var(--text-main, #F2FFF6);
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-register-and-login-tt128__section-description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-how-to-register-and-login-tt128__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-blog-how-to-register-and-login-tt128__feature-item {
  background: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border, #2E7A4E);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-register-and-login-tt128__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-and-login-tt128__feature-title {
  color: var(--glow, #57E38D);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-register-and-login-tt128__feature-text {
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-register-and-login-tt128__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-register-and-login-tt128__guide-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--card-bg, #11271B);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border, #2E7A4E);
}

.page-blog-how-to-register-and-login-tt128__step-number {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  flex-shrink: 0;
}

.page-blog-how-to-register-and-login-tt128__step-title {
  color: var(--glow, #57E38D);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-register-and-login-tt128__step-text {
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-register-and-login-tt128__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-blog-how-to-register-and-login-tt128__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-register-and-login-tt128__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-how-to-register-and-login-tt128__benefit-item {
  background: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border, #2E7A4E);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-register-and-login-tt128__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-and-login-tt128__benefit-title {
  color: var(--gold, #F2C14E);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-register-and-login-tt128__benefit-text {
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-register-and-login-tt128__security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-blog-how-to-register-and-login-tt128__measure-item {
  background: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border, #2E7A4E);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-register-and-login-tt128__measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-and-login-tt128__measure-title {
  color: var(--glow, #57E38D);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-register-and-login-tt128__measure-text {
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-how-to-register-and-login-tt128__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-register-and-login-tt128__faq-item {
  background: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-register-and-login-tt128__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--text-main, #F2FFF6);
  font-weight: bold;
  font-size: 1.1rem;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-register-and-login-tt128__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-register-and-login-tt128__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow, #57E38D);
}

.page-blog-how-to-register-and-login-tt128__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 1rem;
}

.page-blog-how-to-register-and-login-tt128__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-blog-how-to-register-and-login-tt128__conclusion-section {
  text-align: center;
  padding: 60px 20px;
  background: var(--deep-green, #0A4B2C);
  border-radius: 10px;
  margin-top: 60px;
  border: 1px solid var(--border, #2E7A4E);
}

.page-blog-how-to-register-and-login-tt128__conclusion-title {
  color: var(--text-main, #F2FFF6);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.page-blog-how-to-register-and-login-tt128__conclusion-text {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-register-and-login-tt128__hero-content {
    margin-top: 80px;
  }
  .page-blog-how-to-register-and-login-tt128__section-title {
    font-size: 2rem;
  }
  .page-blog-how-to-register-and-login-tt128__conclusion-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-and-login-tt128__hero-content {
    margin-top: 60px;
    padding: 15px;
  }
  .page-blog-how-to-register-and-login-tt128__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-blog-how-to-register-and-login-tt128__subtitle {
    font-size: 1rem;
  }
  .page-blog-how-to-register-and-login-tt128__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-how-to-register-and-login-tt128__btn-primary,
  .page-blog-how-to-register-and-login-tt128__btn-secondary {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-how-to-register-and-login-tt128__content-area,
  .page-blog-how-to-register-and-login-tt128__conclusion-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-register-and-login-tt128__section-title {
    font-size: 1.8rem;
  }
  .page-blog-how-to-register-and-login-tt128__feature-title,
  .page-blog-how-to-register-and-login-tt128__step-title,
  .page-blog-how-to-register-and-login-tt128__benefit-title,
  .page-blog-how-to-register-and-login-tt128__measure-title {
    font-size: 1.3rem;
  }
  .page-blog-how-to-register-and-login-tt128__guide-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .page-blog-how-to-register-and-login-tt128__step-number {
    margin-bottom: 15px;
  }
  .page-blog-how-to-register-and-login-tt128__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-how-to-register-and-login-tt128__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-register-and-login-tt128__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-how-to-register-and-login-tt128__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-blog-how-to-register-and-login-tt128__conclusion-title {
    font-size: 1.8rem;
  }
  .page-blog-how-to-register-and-login-tt128__btn-primary--large {
    font-size: 1rem;
    padding: 15px 30px;
  }
}

/* Ensure all images are responsive */
.page-blog-how-to-register-and-login-tt128 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all image containers are responsive */
.page-blog-how-to-register-and-login-tt128__image-wrapper,
.page-blog-how-to-register-and-login-tt128__hero-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Mobile specific overrides for images and containers */
@media (max-width: 768px) {
  .page-blog-how-to-register-and-login-tt128 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-how-to-register-and-login-tt128__image-wrapper,
  .page-blog-how-to-register-and-login-tt128__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-blog-how-to-register-and-login-tt128__hero-image {
    position: relative; /* Adjust hero image positioning for mobile */
    object-fit: contain;
    height: 300px;
    top: auto;
    left: auto;
  }
  .page-blog-how-to-register-and-login-tt128__hero-content {
    margin-top: 0;
    background: none; /* Remove background on mobile for better readability over image */
  }
  .page-blog-how-to-register-and-login-tt128__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  /* Buttons within content areas */
  .page-blog-how-to-register-and-login-tt128__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-how-to-register-and-login-tt128__btn-primary,
  .page-blog-how-to-register-and-login-tt128__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}