.TermsOfServicePageViewportContainer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3.5rem 1.25rem 5rem 1.25rem;
  z-index: 2;
}

.TermsOfServiceHeroSectionWrapper {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.TermsOfServiceMetaPill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.36rem 0.78rem;
  border: 1px solid var(--ActiveEmeraldBorderColor);
  border-radius: 9999px;
  background: var(--ActiveEmeraldBackgroundColor);
  color: #a7f3d0;
  font-size: 0.78rem;
  font-weight: 700;
}

.TermsOfServiceHeroMainTitleHeading {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--PureWhiteColor);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  text-transform: none;
}

.TermsOfServiceHeroTaglineDescription {
  font-size: 1.05rem;
  color: var(--SubtleSecondaryTextColor);
  line-height: 1.6;
  text-transform: none;
}

.TermsOfServiceMainContentContainer {
  width: 100%;
  max-width: 900px;
  background: var(--CosmicCardBackgroundColor);
  border: 1px solid var(--CosmicCardBorderColor);
  border-radius: 8px;
  padding: 2.5rem 2.2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.TermsOfServiceNoticeBox {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.06);
}

.TermsOfServiceSectionBlock {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.TermsOfServiceSectionHeading {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--PureWhiteColor);
  letter-spacing: 0;
  text-transform: none;
}

.TermsOfServiceParagraphText {
  font-size: 0.94rem;
  color: var(--SubtleSecondaryTextColor);
  line-height: 1.7;
  text-transform: none;
}

.TermsOfServiceTableWrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.TermsOfServiceDataTable {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.86rem;
  color: var(--SubtleSecondaryTextColor);
}

.TermsOfServiceDataTable th,
.TermsOfServiceDataTable td {
  padding: 0.85rem 0.95rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.55;
}

.TermsOfServiceDataTable th {
  color: var(--PureWhiteColor);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.TermsOfServiceDataTable tr:last-child td {
  border-bottom: 0;
}

.TermsOfServiceInlineLink {
  color: #67e8f9;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(103, 232, 249, 0.35);
  text-underline-offset: 0.18em;
}

.TermsOfServiceListContainer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.25rem;
}

.TermsOfServiceListItem {
  font-size: 0.92rem;
  color: var(--SubtleSecondaryTextColor);
  line-height: 1.6;
  text-transform: none;
}

@media (max-width: 640px) {
  .TermsOfServiceMainContentContainer {
    padding: 1.4rem 1.1rem;
  }

  .TermsOfServiceDataTable {
    min-width: 620px;
  }
}
