@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

#ts-t123 {
  --bg: #f7f7fb;
  --ink: #0b1220;
  --muted: #64748b;
  --stroke: rgba(11, 18, 32, 0.1);
  --p1: #5b00d6;
  --p2: #cb0111;
  --g: #cb0111;
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.1);
  --shadow2: 0 12px 28px rgba(2, 6, 23, 0.08);
  --r: 24px;
  --font:
    "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Arial, sans-serif;
  font-family: var(--font);
  color: var(--ink);
  overflow-x: hidden;
}

#ts-t123 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#ts-t123 .ts-bg {
  position: relative;
  min-height: 100vh;
  padding: 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

#ts-t123 .ts-layout {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

#ts-t123 .ts-hero {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.88)
    ),
    radial-gradient(
      900px 550px at 10% 10%,
      rgba(155, 0, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 450px at 90% 30%,
      rgba(91, 0, 214, 0.1),
      transparent 60%
    );
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 44px 44px 34px;
  position: relative;
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  animation: ts-enter 0.7s ease forwards;
}

#ts-t123 .ts-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

#ts-t123 .ts-logo {
  width: 120px;
  border-radius: 12px;
  object-fit: contain;
}

#ts-t123 .ts-pill {
  padding: 10px 14px;
  border-radius: 999px;
  color: #cb0111;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

#ts-t123 .ts-kicker {
  margin: 10px 0 18px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.92);
}

#ts-t123 .ts-h1 {
  font-size: 54px;
  line-height: 1.22;
  letter-spacing: -0.6px;
  font-weight: 950;
}

#ts-t123 .ts-accent {
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#ts-t123 .ts-sub {
  margin-top: 18px;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(11, 18, 32, 0.76);
  font-weight: 600;
}

#ts-t123 .ts-note {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--g);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow2);
  transform: translateY(6px);
  opacity: 0;
  animation: ts-enter2 0.8s ease 0.15s forwards;
}

#ts-t123 .ts-badge {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #fff;
  border: 1px solid rgba(155, 0, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--p2);
  font-weight: 700;
  font-size: 30px;
  flex: 0 0 auto;
}

#ts-t123 .ts-note p {
  font-weight: 850;
  line-height: 1.5;
  color: #fff;
}

#ts-t123 .separated {
  color: rgb(238, 238, 46);
}

#ts-t123 .ts-note small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  line-height: 1.6;
}

#ts-t123 .ts-panel {
  background: var(--g);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  animation: ts-enter 0.7s ease 0.08s forwards;
}

#ts-t123 .ts-panel::before {
  content: "";
  position: absolute;
  inset: -90px -90px auto auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.14),
    transparent 62%
  );
}

#ts-t123 .ts-panel::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(255, 255, 255, 0.1),
    transparent 64%
  );
}

#ts-t123 .ts-panel h2 {
  margin: 6px 0 14px;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  font-weight: 900;
}

#ts-t123 .ts-panel h2 b {
  display: block;
}

#ts-t123 .ts-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(9px);
}

#ts-t123 .ts-field {
  margin-bottom: 12px;
}

#ts-t123 .ts-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.95;
}

#ts-t123 .ts-input,
#ts-t123 .ts-select {
  width: 100%;
  height: 56px;
  border: none;
  outline: none;
  border-radius: 14px;
  padding: 12px;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.16);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  font-family: var(--font);
}

#ts-t123 .ts-input:focus,
#ts-t123 .ts-select:focus {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.2),
    0 0 0 4px rgba(155, 0, 255, 0.35);
}

#ts-t123 .ts-input::placeholder {
  color: #94a3b8;
}

#ts-t123 .ts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#ts-t123 .ts-age {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.16);
}

#ts-t123 .ts-agebtn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  font-weight: 950;
  font-family: var(--font);
}

#ts-t123 .ts-ageval {
  border: none;
  outline: none;
  width: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 950;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
}

#ts-t123 .ts-options {
  display: grid;
  gap: 8px;
}

#ts-t123 .ts-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease;
}

#ts-t123 .ts-opt.selected {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.23);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.2);
}

#ts-t123 .ts-opt input {
  accent-color: #fff;
}

#ts-t123 .ts-opt span {
  font-weight: 900;
}

#ts-t123 .ts-opt small {
  opacity: 0.85;
  font-weight: 800;
}

#ts-t123 .ts-btn {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  color: var(--g);
  background: #fff;
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.22);
  font-family: var(--font);
}

#ts-t123 .ts-hint {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.92;
  line-height: 1.5;
}

#ts-t123 .ts-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: #0b1020;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.35);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  max-width: min(680px, calc(100% - 24px));
  font-size: 13px;
  z-index: 9999;
}

#ts-t123 .ts-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

#ts-t123 .ts-input-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

#ts-t123 .ts-prefix {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

#ts-t123 .ts-input-new {
  box-shadow: none;
  outline: none;
  padding: 0;
  border: none;
  width: 100%;
  background: transparent;
  font-size: 15px;
  font-family: var(--font);
}

#ts-t123 .ts-input-new:focus {
  box-shadow: none;
  transform: none;
}

#ts-t123 #language {
  background: transparent;
  border: none;
  color: #cb0111;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  outline: none;
  padding: 6px 24px 6px 8px;
  appearance: none;
  min-width: 110px;
  border-radius: 999px;
}

#ts-t123 .lang-pill {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(203, 1, 17, 0.08);
  border: 1.5px solid rgba(203, 1, 17, 0.18);
  box-shadow: 0 2px 8px rgba(203, 1, 17, 0.06);
  padding: 0 8px;
  border-radius: 999px;
}

#ts-t123 .lang-arrow {
  position: absolute;
  right: 18px;
  color: #cb0111;
  font-size: 18px;
  pointer-events: none;
  font-weight: bold;
}

@keyframes ts-enter {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes ts-enter2 {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  #ts-t123 .ts-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  #ts-t123 .ts-h1 {
    font-size: 38px;
  }

  #ts-t123 .ts-hero {
    padding: 34px 18px;
  }

  #ts-t123 .ts-row {
    grid-template-columns: 1fr;
  }

  #ts-t123 #language {
    min-width: 90px;
  }
}
