@charset "UTF-8";
.terms-container {
  background: linear-gradient(-45deg, rgba(0, 0, 10, 0.95), rgba(0, 100, 150, 0.4), rgba(0, 200, 255, 0.2), rgba(0, 100, 150, 0.4));
  background-size: 400% 400%; /* Tamaño grande para que la animación se mueva a través */
  -webkit-animation: cyberAuraFlow 12s ease infinite;
          animation: cyberAuraFlow 12s ease infinite; /* La animación principal */
  /* --- 2. Efecto de Desenfoque y Brillo Base --- */
  backdrop-filter: blur(8px); /* Desenfoque de fondo sutil */
  -webkit-backdrop-filter: blur(8px); /* Soporte para Webkit */
  -webkit-box-shadow: inset 0 0 50px rgba(0, 255, 255, 0.1), 0 10px 40px rgba(0, 100, 150, 0.5);
          box-shadow: inset 0 0 50px rgba(0, 255, 255, 0.1), 0 10px 40px rgba(0, 100, 150, 0.5); /* Sombra exterior azul suave */
  /* --- 3. Borde Sutil Retro-Futurista --- */
  border: 1px solid rgba(0, 255, 255, 0.1);
  /* 1. cyberAuraFlow: Mueve el degradado de fondo en un patrón diagonal */
}
@-webkit-keyframes cyberAuraFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes cyberAuraFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.terms-container {
  /* 2. auraPulse: Pulsa la opacidad y el tamaño del resplandor de fondo */
}
@-webkit-keyframes auraPulse {
  0%, 100% {
    opacity: 0.5;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
            transform: scale(1.05); /* Un pulso sutil */
  }
}
@keyframes auraPulse {
  0%, 100% {
    opacity: 0.5;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
            transform: scale(1.05); /* Un pulso sutil */
  }
}
.terms-container {
  position: relative;
  padding: 60px 20px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.terms-container .terms-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.terms-container .terms-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  background: rgba(4, 4, 10, 0.75);
  border: 1px solid rgba(0, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
          box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(12px);
}
.terms-container .terms-header {
  margin-bottom: 30px;
  text-align: center;
}
.terms-container .terms-header .terms-title {
  font-family: "Space Mono", monospace;
  font-size: 32px;
  line-height: 36.8px;
  color: #FFFFFF;
  font-weight: 700;
}
@media (min-width: 768px) {
  .terms-container .terms-header .terms-title {
    font-size: 35.84px;
    line-height: 41.216px;
  }
}
@media (min-width: 1024px) {
  .terms-container .terms-header .terms-title {
    font-size: 42px;
    line-height: 48.3px;
  }
}
@media (min-width: 1440px) {
  .terms-container .terms-header .terms-title {
    font-size: 52px;
    line-height: 59.8px;
  }
}
.terms-container .terms-header .terms-title {
  font-family: "Space Grotesk", sans-serif;
  text-wrap: balance;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  margin-bottom: 10px;
}
.terms-container .terms-header .terms-meta {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  line-height: 18.2px;
  color: #00FFFF;
  font-weight: 400;
}
@media (min-width: 768px) {
  .terms-container .terms-header .terms-meta {
    font-size: 15.68px;
    line-height: 20.384px;
  }
}
@media (min-width: 1024px) {
  .terms-container .terms-header .terms-meta {
    font-size: 16px;
    line-height: 20.8px;
  }
}
@media (min-width: 1440px) {
  .terms-container .terms-header .terms-meta {
    font-size: 18px;
    line-height: 23.4px;
  }
}
.terms-container .terms-header .terms-meta {
  letter-spacing: 1px;
}
.terms-container .terms-body .terms-lead {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  line-height: 20.8px;
  color: #FFFFFF;
  font-weight: 400;
}
@media (min-width: 768px) {
  .terms-container .terms-body .terms-lead {
    font-size: 17.92px;
    line-height: 23.296px;
  }
}
@media (min-width: 1024px) {
  .terms-container .terms-body .terms-lead {
    font-size: 18px;
    line-height: 23.4px;
  }
}
@media (min-width: 1440px) {
  .terms-container .terms-body .terms-lead {
    font-size: 20px;
    line-height: 26px;
  }
}
.terms-container .terms-body .terms-lead {
  line-height: 1.6;
  opacity: 0.95;
}
.terms-container .terms-body .terms-divider {
  border: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 0, 255, 0)), color-stop(50%, rgb(255, 0, 255)), to(rgba(255, 0, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 0, 255, 0) 0%, rgb(255, 0, 255) 50%, rgba(255, 0, 255, 0) 100%);
  margin: 30px 0;
}
.terms-container .terms-body .terms-section {
  margin-bottom: 35px;
}
.terms-container .terms-body .terms-section h2 {
  font-family: "Space Mono", monospace;
  font-size: 20px;
  line-height: 23px;
  color: #FF00FF;
  font-weight: 600;
}
@media (min-width: 768px) {
  .terms-container .terms-body .terms-section h2 {
    font-size: 22.4px;
    line-height: 25.76px;
  }
}
@media (min-width: 1024px) {
  .terms-container .terms-body .terms-section h2 {
    font-size: 24px;
    line-height: 27.6px;
  }
}
@media (min-width: 1440px) {
  .terms-container .terms-body .terms-section h2 {
    font-size: 28px;
    line-height: 32.2px;
  }
}
.terms-container .terms-body .terms-section h2 {
  font-family: "Space Grotesk", sans-serif;
  text-wrap: balance;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
}
.terms-container .terms-body .terms-section p {
  font-family: "Space Mono", monospace;
  font-size: 15px;
  line-height: 19.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
@media (min-width: 768px) {
  .terms-container .terms-body .terms-section p {
    font-size: 16.8px;
    line-height: 21.84px;
  }
}
@media (min-width: 1024px) {
  .terms-container .terms-body .terms-section p {
    font-size: 16px;
    line-height: 20.8px;
  }
}
@media (min-width: 1440px) {
  .terms-container .terms-body .terms-section p {
    font-size: 18px;
    line-height: 23.4px;
  }
}
.terms-container .terms-body .terms-section p {
  margin-bottom: 12px;
  line-height: 1.5;
}
.terms-container .terms-body .terms-section ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 15px;
}
.terms-container .terms-body .terms-section ul li {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  line-height: 18.2px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
@media (min-width: 768px) {
  .terms-container .terms-body .terms-section ul li {
    font-size: 15.68px;
    line-height: 20.384px;
  }
}
@media (min-width: 1024px) {
  .terms-container .terms-body .terms-section ul li {
    font-size: 15px;
    line-height: 19.5px;
  }
}
@media (min-width: 1440px) {
  .terms-container .terms-body .terms-section ul li {
    font-size: 16px;
    line-height: 20.8px;
  }
}
.terms-container .terms-body .terms-section ul li {
  position: relative;
  margin-bottom: 8px;
  line-height: 1.4;
}
.terms-container .terms-body .terms-section ul li::before {
  content: "⚡";
  position: absolute;
  left: -20px;
  color: #00FFFF;
  font-size: 12px;
}
.terms-container .terms-body .terms-section.terms-highlight {
  background: rgba(255, 0, 255, 0.05);
  border-left: 3px solid #FF00FF;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  -webkit-box-shadow: inset 0 0 10px rgba(255, 0, 255, 0.1);
          box-shadow: inset 0 0 10px rgba(255, 0, 255, 0.1);
}
.terms-container .terms-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  text-align: center;
}
.terms-container .terms-footer p {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  line-height: 16.9px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
@media (min-width: 768px) {
  .terms-container .terms-footer p {
    font-size: 14.56px;
    line-height: 18.928px;
  }
}
@media (min-width: 1024px) {
  .terms-container .terms-footer p {
    font-size: 14px;
    line-height: 18.2px;
  }
}
@media (min-width: 1440px) {
  .terms-container .terms-footer p {
    font-size: 15px;
    line-height: 19.5px;
  }
}
.terms-container .terms-footer p {
  font-style: italic;
}