body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
#custom-html-0 html,
#custom-html-0 body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#custom-html-0 .selena-screen,
#custom-html-0 .selena-screen * {
  box-sizing: border-box;
}
#custom-html-0 .selena-screen {
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  position: relative;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: #020813;
  background-image: radial-gradient(circle at 20% 12%, rgba(255, 123, 98, 0.18), transparent 28%), radial-gradient(circle at 84% 18%, rgba(86, 166, 255, 0.18), transparent 30%), linear-gradient(180deg, #071827 0%, #020813 100%);
}
#custom-html-0 .selena-space {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px), radial-gradient(circle, rgba(127, 190, 255, 0.45) 1px, transparent 1.5px);
  background-size: 82px 82px, 138px 138px;
  background-position: 0 0, 42px 58px;
  pointer-events: none;
}
#custom-html-0 .selena-app {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  min-height: 720px;
  margin: 0 auto;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
}
#custom-html-0 .selena-top {
  flex: 0 0 auto;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#custom-html-0 .selena-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
#custom-html-0 .selena-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff927d;
  font-size: 25px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 210, 198, 0.18);
  box-shadow: 0 0 32px rgba(255, 120, 95, 0.24);
}
#custom-html-0 .selena-brand-name {
  color: #ffd4ca;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
#custom-html-0 .selena-pill {
  padding: 8px 13px;
  border-radius: 999px;
  color: #bfe0ff;
  background: rgba(13, 35, 57, 0.76);
  border: 1px solid rgba(160, 215, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}
#custom-html-0 .selena-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#custom-html-0 .selena-orbit {
  position: relative;
  width: 238px;
  height: 238px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#custom-html-0 .selena-planet {
  position: relative;
  z-index: 4;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 38px;
  background: #f25538;
  background-image: radial-gradient(circle at 35% 28%, #ffd7c9 0%, #ff8a73 30%, #f25538 62%, #253a66 100%);
  box-shadow: 0 0 52px rgba(255, 115, 90, 0.34), 0 26px 65px rgba(0, 0, 0, 0.42);
}
#custom-html-0 .selena-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(174, 218, 255, 0.16);
}
#custom-html-0 .ring-one {
  width: 176px;
  height: 176px;
}
#custom-html-0 .ring-two {
  width: 236px;
  height: 236px;
  border-style: dashed;
  opacity: 0.7;
}
#custom-html-0 .selena-mini-icon {
  position: absolute;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd1c5;
  background: rgba(7, 25, 42, 0.82);
  border: 1px solid rgba(190, 225, 255, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  font-size: 20px;
  font-weight: 800;
}
#custom-html-0 .icon-love {
  top: 20px;
  right: 36px;
}
#custom-html-0 .icon-money {
  left: 20px;
  bottom: 54px;
}
#custom-html-0 .icon-work {
  right: 18px;
  bottom: 38px;
}
#custom-html-0 .selena-copy {
  text-align: center;
}
#custom-html-0 .selena-kicker {
  margin: 0 0 12px;
  color: #9ccfff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#custom-html-0 .selena-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}
#custom-html-0 .selena-text {
  max-width: 360px;
  margin: 18px auto 0;
  color: rgba(235, 244, 255, 0.78);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 500;
}
#custom-html-0 .selena-benefits {
  margin: 28px auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
#custom-html-0 .selena-benefit {
  min-height: 82px;
  padding: 13px 8px;
  border-radius: 22px;
  text-align: center;
  background: rgba(7, 25, 42, 0.64);
  border: 1px solid rgba(170, 215, 255, 0.13);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 18px 38px rgba(0, 0, 0, 0.2);
}
#custom-html-0 .selena-benefit span {
  display: block;
  margin-bottom: 8px;
  color: #ff927d;
  font-size: 21px;
  font-weight: 900;
}
#custom-html-0 .selena-benefit p {
  margin: 0;
  color: rgba(235, 242, 250, 0.82);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}
#custom-html-0 .selena-bottom {
  flex: 0 0 auto;
  padding-top: 18px;
  text-align: center;
}
#custom-html-0 .selena-start-btn {
  width: 100%;
  min-height: 60px;
  padding: 0 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #f25538;
  background-image: linear-gradient(135deg, #ff8a73 0%, #ff654d 50%, #f24d34 100%);
  box-shadow: 0 22px 48px rgba(255, 101, 77, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
#custom-html-0 .selena-price-note {
  margin: 13px 0 14px;
  color: rgba(225, 237, 250, 0.62);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}
#custom-html-0 .selena-progress {
  display: flex;
  justify-content: center;
  gap: 7px;
}
#custom-html-0 .selena-progress span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}
#custom-html-0 .selena-progress span.active {
  width: 20px;
  background: #ffffff;
}
@media (min-width: 768px) {
  #custom-html-0 .selena-app {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  #custom-html-0 .selena-copy h1 {
    font-size: 44px;
  }
  #custom-html-0 .selena-text {
    font-size: 17px;
  }
}
@media (max-width: 380px) {
  #custom-html-0 .selena-app {
    padding: 18px 16px 20px;
  }
  #custom-html-0 .selena-orbit {
    width: 208px;
    height: 208px;
    margin-bottom: 24px;
  }
  #custom-html-0 .selena-planet {
    width: 92px;
    height: 92px;
  }
  #custom-html-0 .ring-one {
    width: 154px;
    height: 154px;
  }
  #custom-html-0 .ring-two {
    width: 208px;
    height: 208px;
  }
  #custom-html-0 .selena-copy h1 {
    font-size: 33px;
  }
  #custom-html-0 .selena-text {
    font-size: 15px;
  }
  #custom-html-0 .selena-benefits {
    margin-top: 22px;
  }
  #custom-html-0 .selena-benefit {
    min-height: 76px;
  }
}
#custom-html-2 {
  /* Верх */
  /* Центр */
  /* Форма */
  /* Низ */
  /* Десктоп */
  /* Маленькие телефоны */
}
#custom-html-2 html,
#custom-html-2 body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#custom-html-2 .selena-screen,
#custom-html-2 .selena-screen * {
  box-sizing: border-box;
}
#custom-html-2 .selena-screen {
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  position: relative;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: #020813;
  background-image: radial-gradient(circle at 20% 12%, rgba(255, 123, 98, 0.16), transparent 28%), radial-gradient(circle at 84% 18%, rgba(86, 166, 255, 0.18), transparent 30%), linear-gradient(180deg, #071827 0%, #020813 100%);
}
#custom-html-2 .selena-space {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px), radial-gradient(circle, rgba(127, 190, 255, 0.45) 1px, transparent 1.5px);
  background-size: 82px 82px, 138px 138px;
  background-position: 0 0, 42px 58px;
  pointer-events: none;
}
#custom-html-2 .selena-app {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  min-height: 680px;
  margin: 0 auto;
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
}
#custom-html-2 .selena-top {
  flex: 0 0 auto;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#custom-html-2 .selena-back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9ebff !important;
  text-decoration: none !important;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 225, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
#custom-html-2 .selena-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
#custom-html-2 .selena-step-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}
#custom-html-2 .selena-step-dot.active {
  width: 18px;
  background: #ffffff;
}
#custom-html-2 .selena-pill {
  padding: 8px 13px;
  border-radius: 999px;
  color: #bfe0ff;
  background: rgba(13, 35, 57, 0.76);
  border: 1px solid rgba(160, 215, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}
#custom-html-2 .selena-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#custom-html-2 .selena-birth-main {
  padding-top: 6px;
}
#custom-html-2 .selena-small-orbit {
  position: relative;
  width: 102px;
  height: 102px;
  margin: 2px auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#custom-html-2 .selena-small-planet {
  position: relative;
  z-index: 4;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  background: #f25538;
  background-image: radial-gradient(circle at 35% 28%, #ffd7c9 0%, #ff8a73 30%, #f25538 62%, #253a66 100%);
  box-shadow: 0 0 42px rgba(255, 115, 90, 0.32), 0 20px 54px rgba(0, 0, 0, 0.36);
}
#custom-html-2 .selena-small-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(174, 218, 255, 0.16);
}
#custom-html-2 .ring-a {
  width: 82px;
  height: 82px;
}
#custom-html-2 .ring-b {
  width: 102px;
  height: 102px;
  border-style: dashed;
  opacity: 0.7;
}
#custom-html-2 .selena-birth-copy {
  text-align: center;
}
#custom-html-2 .selena-kicker {
  margin: 0 0 8px;
  color: #9ccfff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#custom-html-2 .selena-birth-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 33px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}
#custom-html-2 .selena-text {
  max-width: 350px;
  margin: 12px auto 0;
  color: rgba(235, 244, 255, 0.76);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}
#custom-html-2 .selena-birth-form {
  margin-top: 18px;
}
#custom-html-2 .selena-field {
  display: block;
  margin-bottom: 10px;
}
#custom-html-2 .selena-field span {
  display: block;
  margin: 0 0 6px 4px;
  color: rgba(225, 237, 250, 0.66);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#custom-html-2 .selena-field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 20px;
  outline: none;
  color: #ffffff;
  background: rgba(7, 25, 42, 0.72);
  border: 1px solid rgba(170, 215, 255, 0.16);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 16px 34px rgba(0, 0, 0, 0.18);
  font-size: 15px;
  font-weight: 700;
}
#custom-html-2 .selena-field input::placeholder {
  color: rgba(225, 237, 250, 0.38);
}
#custom-html-2 .selena-field input:focus {
  border-color: rgba(255, 146, 125, 0.62);
  box-shadow: 0 0 0 3px rgba(255, 120, 95, 0.1), inset 0 0 24px rgba(100, 180, 255, 0.04);
}
#custom-html-2 .selena-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
}
#custom-html-2 .selena-note-card {
  margin: 2px 0 12px;
  padding: 12px 13px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 120, 95, 0.08);
  border: 1px solid rgba(255, 150, 126, 0.16);
}
#custom-html-2 .selena-note-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a73 0%, #f24d34 100%);
  font-size: 13px;
}
#custom-html-2 .selena-note-card p {
  margin: 0;
  color: rgba(235, 244, 255, 0.68);
  font-size: 12px;
  line-height: 1.32;
  font-weight: 600;
}
#custom-html-2 .selena-start-btn {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #f25538;
  background-image: linear-gradient(135deg, #ff8a73 0%, #ff654d 50%, #f24d34 100%);
  box-shadow: 0 22px 48px rgba(255, 101, 77, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
}
#custom-html-2 .selena-start-btn:active {
  transform: scale(0.98);
}
#custom-html-2 .selena-bottom {
  flex: 0 0 auto;
  padding-top: 8px;
  text-align: center;
}
#custom-html-2 .selena-hint {
  max-width: 330px;
  margin: 0 auto;
  color: rgba(225, 237, 250, 0.48);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 768px) {
  #custom-html-2 .selena-app {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  #custom-html-2 .selena-birth-copy h1 {
    font-size: 37px;
  }
  #custom-html-2 .selena-text {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  #custom-html-2 .selena-screen {
    min-height: 640px;
  }
  #custom-html-2 .selena-app {
    min-height: 640px;
    padding: 12px 16px 16px;
  }
  #custom-html-2 .selena-top {
    height: 42px;
  }
  #custom-html-2 .selena-back {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
  #custom-html-2 .selena-pill {
    padding: 7px 11px;
    font-size: 12px;
  }
  #custom-html-2 .selena-birth-main {
    padding-top: 4px;
  }
  #custom-html-2 .selena-small-orbit {
    width: 88px;
    height: 88px;
    margin: 2px auto 10px;
  }
  #custom-html-2 .selena-small-planet {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }
  #custom-html-2 .ring-a {
    width: 70px;
    height: 70px;
  }
  #custom-html-2 .ring-b {
    width: 88px;
    height: 88px;
  }
  #custom-html-2 .selena-kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  #custom-html-2 .selena-birth-copy h1 {
    font-size: 29px;
  }
  #custom-html-2 .selena-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.34;
  }
  #custom-html-2 .selena-birth-form {
    margin-top: 14px;
  }
  #custom-html-2 .selena-field {
    margin-bottom: 8px;
  }
  #custom-html-2 .selena-field span {
    margin-bottom: 5px;
    font-size: 11px;
  }
  #custom-html-2 .selena-field input {
    height: 50px;
    padding: 0 14px;
    border-radius: 18px;
    font-size: 14px;
  }
  #custom-html-2 .selena-row {
    gap: 8px;
  }
  #custom-html-2 .selena-note-card {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 18px;
  }
  #custom-html-2 .selena-note-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 12px;
  }
  #custom-html-2 .selena-note-card p {
    font-size: 11px;
    line-height: 1.28;
  }
  #custom-html-2 .selena-start-btn {
    min-height: 52px;
    font-size: 15px;
  }
  #custom-html-2 .selena-bottom {
    padding-top: 6px;
  }
  #custom-html-2 .selena-hint {
    font-size: 11px;
  }
}
#custom-html-1 {
  /* Верхняя панель */
  /* Центральная часть */
  /* Карточки тем */
  /* Низ */
  /* Десктоп / широкие экраны */
  /* Маленькие телефоны */
}
#custom-html-1 html,
#custom-html-1 body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#custom-html-1 .selena-screen,
#custom-html-1 .selena-screen * {
  box-sizing: border-box;
}
#custom-html-1 .selena-screen {
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  position: relative;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: #020813;
  background-image: radial-gradient(circle at 20% 12%, rgba(255, 123, 98, 0.16), transparent 28%), radial-gradient(circle at 84% 18%, rgba(86, 166, 255, 0.18), transparent 30%), linear-gradient(180deg, #071827 0%, #020813 100%);
}
#custom-html-1 .selena-space {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px), radial-gradient(circle, rgba(127, 190, 255, 0.45) 1px, transparent 1.5px);
  background-size: 82px 82px, 138px 138px;
  background-position: 0 0, 42px 58px;
  pointer-events: none;
}
#custom-html-1 .selena-app {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  min-height: 680px;
  margin: 0 auto;
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
}
#custom-html-1 .selena-top {
  flex: 0 0 auto;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#custom-html-1 .selena-back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9ebff !important;
  text-decoration: none !important;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 225, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
#custom-html-1 .selena-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
#custom-html-1 .selena-step-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}
#custom-html-1 .selena-step-dot.active {
  width: 18px;
  background: #ffffff;
}
#custom-html-1 .selena-pill {
  padding: 8px 13px;
  border-radius: 999px;
  color: #bfe0ff;
  background: rgba(13, 35, 57, 0.76);
  border: 1px solid rgba(160, 215, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}
#custom-html-1 .selena-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#custom-html-1 .selena-theme-main {
  padding-top: 8px;
}
#custom-html-1 .selena-small-orbit {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 4px auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#custom-html-1 .selena-small-planet {
  position: relative;
  z-index: 4;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  background: #f25538;
  background-image: radial-gradient(circle at 35% 28%, #ffd7c9 0%, #ff8a73 30%, #f25538 62%, #253a66 100%);
  box-shadow: 0 0 42px rgba(255, 115, 90, 0.32), 0 20px 54px rgba(0, 0, 0, 0.36);
}
#custom-html-1 .selena-small-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(174, 218, 255, 0.16);
}
#custom-html-1 .ring-a {
  width: 86px;
  height: 86px;
}
#custom-html-1 .ring-b {
  width: 108px;
  height: 108px;
  border-style: dashed;
  opacity: 0.7;
}
#custom-html-1 .selena-theme-copy {
  text-align: center;
}
#custom-html-1 .selena-kicker {
  margin: 0 0 8px;
  color: #9ccfff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#custom-html-1 .selena-theme-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}
#custom-html-1 .selena-text {
  max-width: 350px;
  margin: 12px auto 0;
  color: rgba(235, 244, 255, 0.76);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}
#custom-html-1 .selena-theme-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#custom-html-1 .selena-theme-card {
  width: 100%;
  min-height: 70px;
  padding: 11px 14px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #ffffff !important;
  text-decoration: none !important;
  background: rgba(7, 25, 42, 0.68);
  border: 1px solid rgba(170, 215, 255, 0.14);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 18px 38px rgba(0, 0, 0, 0.2);
}
#custom-html-1 .selena-theme-card:active {
  transform: scale(0.985);
}
#custom-html-1 .selena-theme-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff927d;
  font-size: 23px;
  font-weight: 900;
  background: rgba(255, 120, 95, 0.08);
  border: 1px solid rgba(255, 150, 126, 0.18);
}
#custom-html-1 .selena-theme-info {
  flex: 1 1 auto;
  min-width: 0;
}
#custom-html-1 .selena-theme-info strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.16;
  font-weight: 850;
}
#custom-html-1 .selena-theme-info p {
  margin: 0;
  color: rgba(225, 237, 250, 0.62);
  font-size: 13px;
  line-height: 1.22;
  font-weight: 600;
}
#custom-html-1 .selena-theme-arrow {
  flex: 0 0 auto;
  color: rgba(210, 232, 255, 0.54);
  font-size: 30px;
  line-height: 1;
}
#custom-html-1 .selena-bottom {
  flex: 0 0 auto;
  padding-top: 8px;
  text-align: center;
}
#custom-html-1 .selena-hint {
  max-width: 330px;
  margin: 0 auto;
  color: rgba(225, 237, 250, 0.48);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 768px) {
  #custom-html-1 .selena-app {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  #custom-html-1 .selena-theme-copy h1 {
    font-size: 38px;
  }
  #custom-html-1 .selena-text {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  #custom-html-1 .selena-screen {
    min-height: 640px;
  }
  #custom-html-1 .selena-app {
    min-height: 640px;
    padding: 12px 16px 16px;
  }
  #custom-html-1 .selena-top {
    height: 42px;
  }
  #custom-html-1 .selena-back {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
  #custom-html-1 .selena-pill {
    padding: 7px 11px;
    font-size: 12px;
  }
  #custom-html-1 .selena-theme-main {
    padding-top: 4px;
  }
  #custom-html-1 .selena-small-orbit {
    width: 92px;
    height: 92px;
    margin: 2px auto 10px;
  }
  #custom-html-1 .selena-small-planet {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
  #custom-html-1 .ring-a {
    width: 74px;
    height: 74px;
  }
  #custom-html-1 .ring-b {
    width: 92px;
    height: 92px;
  }
  #custom-html-1 .selena-kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  #custom-html-1 .selena-theme-copy h1 {
    font-size: 30px;
  }
  #custom-html-1 .selena-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.35;
  }
  #custom-html-1 .selena-theme-list {
    margin-top: 16px;
    gap: 8px;
  }
  #custom-html-1 .selena-theme-card {
    min-height: 64px;
    padding: 9px 12px;
    border-radius: 20px;
  }
  #custom-html-1 .selena-theme-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 14px;
    font-size: 21px;
  }
  #custom-html-1 .selena-theme-info strong {
    font-size: 15px;
  }
  #custom-html-1 .selena-theme-info p {
    font-size: 12px;
    line-height: 1.18;
  }
  #custom-html-1 .selena-theme-arrow {
    font-size: 26px;
  }
  #custom-html-1 .selena-bottom {
    padding-top: 6px;
  }
  #custom-html-1 .selena-hint {
    font-size: 11px;
  }
}
#custom-html-3 {
  /* Верх */
  /* Центр */
  /* Форма вопроса */
  /* Подсказки */
  /* Инфо-карточка */
  /* Кнопка */
  /* Низ */
  /* Десктоп */
  /* Маленькие телефоны */
}
#custom-html-3 html,
#custom-html-3 body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#custom-html-3 .selena-screen,
#custom-html-3 .selena-screen * {
  box-sizing: border-box;
}
#custom-html-3 .selena-screen {
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  position: relative;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: #020813;
  background-image: radial-gradient(circle at 20% 12%, rgba(255, 123, 98, 0.16), transparent 28%), radial-gradient(circle at 84% 18%, rgba(86, 166, 255, 0.18), transparent 30%), linear-gradient(180deg, #071827 0%, #020813 100%);
}
#custom-html-3 .selena-space {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px), radial-gradient(circle, rgba(127, 190, 255, 0.45) 1px, transparent 1.5px);
  background-size: 82px 82px, 138px 138px;
  background-position: 0 0, 42px 58px;
  pointer-events: none;
}
#custom-html-3 .selena-app {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  min-height: 680px;
  margin: 0 auto;
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
}
#custom-html-3 .selena-top {
  flex: 0 0 auto;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#custom-html-3 .selena-back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9ebff !important;
  text-decoration: none !important;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 225, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
#custom-html-3 .selena-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
#custom-html-3 .selena-step-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}
#custom-html-3 .selena-step-dot.active {
  width: 18px;
  background: #ffffff;
}
#custom-html-3 .selena-pill {
  padding: 8px 13px;
  border-radius: 999px;
  color: #bfe0ff;
  background: rgba(13, 35, 57, 0.76);
  border: 1px solid rgba(160, 215, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}
#custom-html-3 .selena-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#custom-html-3 .selena-question-main {
  padding-top: 6px;
}
#custom-html-3 .selena-small-orbit {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 2px auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#custom-html-3 .selena-small-planet {
  position: relative;
  z-index: 4;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  background: #f25538;
  background-image: radial-gradient(circle at 35% 28%, #ffd7c9 0%, #ff8a73 30%, #f25538 62%, #253a66 100%);
  box-shadow: 0 0 42px rgba(255, 115, 90, 0.32), 0 20px 54px rgba(0, 0, 0, 0.36);
}
#custom-html-3 .selena-small-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(174, 218, 255, 0.16);
}
#custom-html-3 .ring-a {
  width: 80px;
  height: 80px;
}
#custom-html-3 .ring-b {
  width: 100px;
  height: 100px;
  border-style: dashed;
  opacity: 0.7;
}
#custom-html-3 .selena-question-copy {
  text-align: center;
}
#custom-html-3 .selena-kicker {
  margin: 0 0 8px;
  color: #9ccfff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#custom-html-3 .selena-question-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}
#custom-html-3 .selena-text {
  max-width: 350px;
  margin: 12px auto 0;
  color: rgba(235, 244, 255, 0.76);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}
#custom-html-3 .selena-question-form {
  margin-top: 18px;
}
#custom-html-3 .selena-question-field {
  display: block;
  margin-bottom: 10px;
}
#custom-html-3 .selena-question-field span {
  display: block;
  margin: 0 0 6px 4px;
  color: rgba(225, 237, 250, 0.66);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#custom-html-3 .selena-question-field textarea {
  width: 100%;
  height: 104px;
  padding: 15px 16px;
  resize: none;
  border-radius: 22px;
  outline: none;
  color: #ffffff;
  background: rgba(7, 25, 42, 0.72);
  border: 1px solid rgba(170, 215, 255, 0.16);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 16px 34px rgba(0, 0, 0, 0.18);
  font-size: 15px;
  line-height: 1.32;
  font-weight: 700;
  font-family: Arial, sans-serif;
}
#custom-html-3 .selena-question-field textarea::placeholder {
  color: rgba(225, 237, 250, 0.38);
}
#custom-html-3 .selena-question-field textarea:focus {
  border-color: rgba(255, 146, 125, 0.62);
  box-shadow: 0 0 0 3px rgba(255, 120, 95, 0.1), inset 0 0 24px rgba(100, 180, 255, 0.04);
}
#custom-html-3 .selena-question-field textarea.selena-error {
  border-color: rgba(255, 80, 80, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.14), inset 0 0 24px rgba(100, 180, 255, 0.04);
}
#custom-html-3 .selena-suggestion-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
#custom-html-3 .selena-suggestion {
  width: 100%;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(170, 215, 255, 0.14);
  color: rgba(235, 244, 255, 0.82);
  background: rgba(7, 25, 42, 0.58);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-align: left;
}
#custom-html-3 .selena-suggestion:active {
  transform: scale(0.985);
}
#custom-html-3 .selena-note-card {
  margin: 0 0 12px;
  padding: 12px 13px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 120, 95, 0.08);
  border: 1px solid rgba(255, 150, 126, 0.16);
}
#custom-html-3 .selena-note-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a73 0%, #f24d34 100%);
  font-size: 13px;
}
#custom-html-3 .selena-note-card p {
  margin: 0;
  color: rgba(235, 244, 255, 0.68);
  font-size: 12px;
  line-height: 1.32;
  font-weight: 600;
}
#custom-html-3 .selena-start-btn {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #f25538;
  background-image: linear-gradient(135deg, #ff8a73 0%, #ff654d 50%, #f24d34 100%);
  box-shadow: 0 22px 48px rgba(255, 101, 77, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
}
#custom-html-3 .selena-start-btn:active {
  transform: scale(0.98);
}
#custom-html-3 .selena-bottom {
  flex: 0 0 auto;
  padding-top: 8px;
  text-align: center;
}
#custom-html-3 .selena-hint {
  max-width: 330px;
  margin: 0 auto;
  color: rgba(225, 237, 250, 0.48);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 768px) {
  #custom-html-3 .selena-app {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  #custom-html-3 .selena-question-copy h1 {
    font-size: 36px;
  }
  #custom-html-3 .selena-text {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  #custom-html-3 .selena-screen {
    min-height: 640px;
  }
  #custom-html-3 .selena-app {
    min-height: 640px;
    padding: 12px 16px 16px;
  }
  #custom-html-3 .selena-top {
    height: 42px;
  }
  #custom-html-3 .selena-back {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
  #custom-html-3 .selena-pill {
    padding: 7px 11px;
    font-size: 12px;
  }
  #custom-html-3 .selena-question-main {
    padding-top: 4px;
  }
  #custom-html-3 .selena-small-orbit {
    width: 86px;
    height: 86px;
    margin: 2px auto 10px;
  }
  #custom-html-3 .selena-small-planet {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }
  #custom-html-3 .ring-a {
    width: 68px;
    height: 68px;
  }
  #custom-html-3 .ring-b {
    width: 86px;
    height: 86px;
  }
  #custom-html-3 .selena-kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  #custom-html-3 .selena-question-copy h1 {
    font-size: 28px;
  }
  #custom-html-3 .selena-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.34;
  }
  #custom-html-3 .selena-question-form {
    margin-top: 14px;
  }
  #custom-html-3 .selena-question-field {
    margin-bottom: 8px;
  }
  #custom-html-3 .selena-question-field span {
    margin-bottom: 5px;
    font-size: 11px;
  }
  #custom-html-3 .selena-question-field textarea {
    height: 92px;
    padding: 13px 14px;
    border-radius: 18px;
    font-size: 14px;
  }
  #custom-html-3 .selena-suggestion-list {
    gap: 7px;
    margin-bottom: 10px;
  }
  #custom-html-3 .selena-suggestion {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }
  #custom-html-3 .selena-note-card {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 18px;
  }
  #custom-html-3 .selena-note-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 12px;
  }
  #custom-html-3 .selena-note-card p {
    font-size: 11px;
    line-height: 1.28;
  }
  #custom-html-3 .selena-start-btn {
    min-height: 52px;
    font-size: 15px;
  }
  #custom-html-3 .selena-bottom {
    padding-top: 6px;
  }
  #custom-html-3 .selena-hint {
    font-size: 11px;
  }
}
#custom-html-4 {
  /* Верх */
  /* Центр */
  /* Карта преимуществ */
  /* Сумма */
  /* Низ */
  /* Десктоп */
  /* Маленькие телефоны */
}
#custom-html-4 html,
#custom-html-4 body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#custom-html-4 .selena-screen,
#custom-html-4 .selena-screen * {
  box-sizing: border-box;
}
#custom-html-4 .selena-screen {
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  position: relative;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: #020813;
  background-image: radial-gradient(circle at 20% 12%, rgba(255, 123, 98, 0.16), transparent 28%), radial-gradient(circle at 84% 18%, rgba(86, 166, 255, 0.18), transparent 30%), linear-gradient(180deg, #071827 0%, #020813 100%);
}
#custom-html-4 .selena-space {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px), radial-gradient(circle, rgba(127, 190, 255, 0.45) 1px, transparent 1.5px);
  background-size: 82px 82px, 138px 138px;
  background-position: 0 0, 42px 58px;
  pointer-events: none;
}
#custom-html-4 .selena-app {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  min-height: 680px;
  margin: 0 auto;
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
}
#custom-html-4 .selena-top {
  flex: 0 0 auto;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#custom-html-4 .selena-back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9ebff !important;
  text-decoration: none !important;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 225, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
#custom-html-4 .selena-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
#custom-html-4 .selena-step-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}
#custom-html-4 .selena-step-dot.active {
  width: 18px;
  background: #ffffff;
}
#custom-html-4 .selena-pill {
  padding: 8px 13px;
  border-radius: 999px;
  color: #bfe0ff;
  background: rgba(13, 35, 57, 0.76);
  border: 1px solid rgba(160, 215, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}
#custom-html-4 .selena-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#custom-html-4 .selena-pay-main {
  padding-top: 6px;
}
#custom-html-4 .selena-pay-orb {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 2px auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#custom-html-4 .selena-pay-planet {
  position: relative;
  z-index: 4;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  background: #f25538;
  background-image: radial-gradient(circle at 35% 28%, #ffd7c9 0%, #ff8a73 30%, #f25538 62%, #253a66 100%);
  box-shadow: 0 0 42px rgba(255, 115, 90, 0.32), 0 20px 54px rgba(0, 0, 0, 0.36);
}
#custom-html-4 .selena-pay-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(174, 218, 255, 0.16);
}
#custom-html-4 .ring-a {
  width: 80px;
  height: 80px;
}
#custom-html-4 .ring-b {
  width: 100px;
  height: 100px;
  border-style: dashed;
  opacity: 0.7;
}
#custom-html-4 .selena-pay-copy {
  text-align: center;
}
#custom-html-4 .selena-kicker {
  margin: 0 0 8px;
  color: #9ccfff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#custom-html-4 .selena-pay-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 33px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}
#custom-html-4 .selena-text {
  max-width: 350px;
  margin: 12px auto 0;
  color: rgba(235, 244, 255, 0.76);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}
#custom-html-4 .selena-pay-card {
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: 24px;
  background: rgba(7, 25, 42, 0.68);
  border: 1px solid rgba(170, 215, 255, 0.14);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 18px 38px rgba(0, 0, 0, 0.2);
}
#custom-html-4 .selena-pay-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}
#custom-html-4 .selena-pay-row + .selena-pay-row {
  border-top: 1px solid rgba(170, 215, 255, 0.1);
}
#custom-html-4 .selena-pay-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff927d;
  font-size: 19px;
  font-weight: 900;
  background: rgba(255, 120, 95, 0.08);
  border: 1px solid rgba(255, 150, 126, 0.18);
}
#custom-html-4 .selena-pay-row strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.16;
  font-weight: 850;
}
#custom-html-4 .selena-pay-row p {
  margin: 0;
  color: rgba(225, 237, 250, 0.6);
  font-size: 12px;
  line-height: 1.22;
  font-weight: 600;
}
#custom-html-4 .selena-total-card {
  margin-top: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 120, 95, 0.08);
  border: 1px solid rgba(255, 150, 126, 0.18);
}
#custom-html-4 .selena-total-card span {
  color: rgba(235, 244, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
}
#custom-html-4 .selena-total-card strong {
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}
#custom-html-4 .selena-bottom {
  flex: 0 0 auto;
  padding-top: 12px;
  text-align: center;
}
#custom-html-4 .selena-start-btn {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #f25538;
  background-image: linear-gradient(135deg, #ff8a73 0%, #ff654d 50%, #f24d34 100%);
  box-shadow: 0 22px 48px rgba(255, 101, 77, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
}
#custom-html-4 .selena-start-btn:active {
  transform: scale(0.98);
}
#custom-html-4 .selena-hint {
  max-width: 330px;
  margin: 10px auto 0;
  color: rgba(225, 237, 250, 0.48);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 768px) {
  #custom-html-4 .selena-app {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  #custom-html-4 .selena-pay-copy h1 {
    font-size: 37px;
  }
  #custom-html-4 .selena-text {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  #custom-html-4 .selena-screen {
    min-height: 640px;
  }
  #custom-html-4 .selena-app {
    min-height: 640px;
    padding: 12px 16px 16px;
  }
  #custom-html-4 .selena-top {
    height: 42px;
  }
  #custom-html-4 .selena-back {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
  #custom-html-4 .selena-pill {
    padding: 7px 11px;
    font-size: 12px;
  }
  #custom-html-4 .selena-pay-main {
    padding-top: 4px;
  }
  #custom-html-4 .selena-pay-orb {
    width: 86px;
    height: 86px;
    margin: 2px auto 10px;
  }
  #custom-html-4 .selena-pay-planet {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }
  #custom-html-4 .ring-a {
    width: 68px;
    height: 68px;
  }
  #custom-html-4 .ring-b {
    width: 86px;
    height: 86px;
  }
  #custom-html-4 .selena-kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  #custom-html-4 .selena-pay-copy h1 {
    font-size: 29px;
  }
  #custom-html-4 .selena-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.34;
  }
  #custom-html-4 .selena-pay-card {
    margin-top: 14px;
    padding: 11px 13px;
    border-radius: 22px;
  }
  #custom-html-4 .selena-pay-row {
    padding: 8px 0;
    gap: 10px;
  }
  #custom-html-4 .selena-pay-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 13px;
    font-size: 17px;
  }
  #custom-html-4 .selena-pay-row strong {
    font-size: 14px;
  }
  #custom-html-4 .selena-pay-row p {
    font-size: 11px;
  }
  #custom-html-4 .selena-total-card {
    margin-top: 10px;
    min-height: 52px;
    border-radius: 20px;
  }
  #custom-html-4 .selena-total-card strong {
    font-size: 23px;
  }
  #custom-html-4 .selena-bottom {
    padding-top: 10px;
  }
  #custom-html-4 .selena-start-btn {
    min-height: 52px;
    font-size: 15px;
  }
  #custom-html-4 .selena-hint {
    margin-top: 8px;
    font-size: 11px;
  }
}
#custom-html-5 {
  /* Верх */
  /* Центр */
  /* Карта статуса */
  /* Инфо */
  /* Низ */
  /* Десктоп */
  /* Маленькие телефоны */
}
#custom-html-5 html,
#custom-html-5 body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#custom-html-5 .selena-screen,
#custom-html-5 .selena-screen * {
  box-sizing: border-box;
}
#custom-html-5 .selena-screen {
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  position: relative;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: #020813;
  background-image: radial-gradient(circle at 20% 12%, rgba(255, 123, 98, 0.16), transparent 28%), radial-gradient(circle at 84% 18%, rgba(86, 166, 255, 0.18), transparent 30%), linear-gradient(180deg, #071827 0%, #020813 100%);
}
#custom-html-5 .selena-space {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px), radial-gradient(circle, rgba(127, 190, 255, 0.45) 1px, transparent 1.5px);
  background-size: 82px 82px, 138px 138px;
  background-position: 0 0, 42px 58px;
  pointer-events: none;
}
#custom-html-5 .selena-app {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  min-height: 680px;
  margin: 0 auto;
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
}
#custom-html-5 .selena-top {
  flex: 0 0 auto;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#custom-html-5 .selena-back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9ebff !important;
  text-decoration: none !important;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 225, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
#custom-html-5 .selena-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
#custom-html-5 .selena-step-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}
#custom-html-5 .selena-step-dot.active {
  width: 18px;
  background: #ffffff;
}
#custom-html-5 .selena-pill {
  padding: 8px 13px;
  border-radius: 999px;
  color: #bfe0ff;
  background: rgba(13, 35, 57, 0.76);
  border: 1px solid rgba(160, 215, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}
#custom-html-5 .selena-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#custom-html-5 .selena-success-main {
  padding-top: 22px;
}
#custom-html-5 .selena-success-orb {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 8px auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#custom-html-5 .selena-success-planet {
  position: relative;
  z-index: 4;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  background: #f25538;
  background-image: radial-gradient(circle at 35% 28%, #ffd7c9 0%, #ff8a73 30%, #f25538 62%, #253a66 100%);
  box-shadow: 0 0 48px rgba(255, 115, 90, 0.36), 0 22px 56px rgba(0, 0, 0, 0.38);
}
#custom-html-5 .selena-success-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(174, 218, 255, 0.16);
}
#custom-html-5 .ring-a {
  width: 100px;
  height: 100px;
}
#custom-html-5 .ring-b {
  width: 128px;
  height: 128px;
  border-style: dashed;
  opacity: 0.7;
}
#custom-html-5 .selena-success-copy {
  text-align: center;
}
#custom-html-5 .selena-kicker {
  margin: 0 0 8px;
  color: #9ccfff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#custom-html-5 .selena-success-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}
#custom-html-5 .selena-text {
  max-width: 350px;
  margin: 12px auto 0;
  color: rgba(235, 244, 255, 0.76);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}
#custom-html-5 .selena-success-card {
  margin-top: 24px;
  padding: 13px 16px;
  border-radius: 24px;
  background: rgba(7, 25, 42, 0.68);
  border: 1px solid rgba(170, 215, 255, 0.14);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 18px 38px rgba(0, 0, 0, 0.2);
}
#custom-html-5 .selena-success-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}
#custom-html-5 .selena-success-row + .selena-success-row {
  border-top: 1px solid rgba(170, 215, 255, 0.1);
}
#custom-html-5 .selena-success-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff927d;
  font-size: 19px;
  font-weight: 900;
  background: rgba(255, 120, 95, 0.08);
  border: 1px solid rgba(255, 150, 126, 0.18);
}
#custom-html-5 .selena-success-row strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.16;
  font-weight: 850;
}
#custom-html-5 .selena-success-row p {
  margin: 0;
  color: rgba(225, 237, 250, 0.6);
  font-size: 12px;
  line-height: 1.22;
  font-weight: 600;
}
#custom-html-5 .selena-note-card {
  margin: 12px 0 0;
  padding: 12px 13px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 120, 95, 0.08);
  border: 1px solid rgba(255, 150, 126, 0.16);
}
#custom-html-5 .selena-note-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a73 0%, #f24d34 100%);
  font-size: 13px;
}
#custom-html-5 .selena-note-card p {
  margin: 0;
  color: rgba(235, 244, 255, 0.68);
  font-size: 12px;
  line-height: 1.32;
  font-weight: 600;
}
#custom-html-5 .selena-bottom {
  flex: 0 0 auto;
  padding-top: 12px;
  text-align: center;
}
#custom-html-5 .selena-start-btn {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #f25538;
  background-image: linear-gradient(135deg, #ff8a73 0%, #ff654d 50%, #f24d34 100%);
  box-shadow: 0 22px 48px rgba(255, 101, 77, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
}
#custom-html-5 .selena-start-btn:active {
  transform: scale(0.98);
}
#custom-html-5 .selena-hint {
  max-width: 330px;
  margin: 10px auto 0;
  color: rgba(225, 237, 250, 0.48);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 768px) {
  #custom-html-5 .selena-app {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  #custom-html-5 .selena-success-copy h1 {
    font-size: 40px;
  }
  #custom-html-5 .selena-text {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  #custom-html-5 .selena-screen {
    min-height: 640px;
  }
  #custom-html-5 .selena-app {
    min-height: 640px;
    padding: 12px 16px 16px;
  }
  #custom-html-5 .selena-top {
    height: 42px;
  }
  #custom-html-5 .selena-back {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
  #custom-html-5 .selena-pill {
    padding: 7px 11px;
    font-size: 12px;
  }
  #custom-html-5 .selena-success-main {
    padding-top: 12px;
  }
  #custom-html-5 .selena-success-orb {
    width: 104px;
    height: 104px;
    margin: 4px auto 16px;
  }
  #custom-html-5 .selena-success-planet {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }
  #custom-html-5 .ring-a {
    width: 82px;
    height: 82px;
  }
  #custom-html-5 .ring-b {
    width: 104px;
    height: 104px;
  }
  #custom-html-5 .selena-kicker {
    margin-bottom: 7px;
    font-size: 12px;
  }
  #custom-html-5 .selena-success-copy h1 {
    font-size: 31px;
  }
  #custom-html-5 .selena-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.34;
  }
  #custom-html-5 .selena-success-card {
    margin-top: 16px;
    padding: 11px 13px;
    border-radius: 22px;
  }
  #custom-html-5 .selena-success-row {
    padding: 8px 0;
    gap: 10px;
  }
  #custom-html-5 .selena-success-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 13px;
    font-size: 17px;
  }
  #custom-html-5 .selena-success-row strong {
    font-size: 14px;
  }
  #custom-html-5 .selena-success-row p {
    font-size: 11px;
  }
  #custom-html-5 .selena-note-card {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 18px;
  }
  #custom-html-5 .selena-note-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 12px;
  }
  #custom-html-5 .selena-note-card p {
    font-size: 11px;
    line-height: 1.28;
  }
  #custom-html-5 .selena-bottom {
    padding-top: 10px;
  }
  #custom-html-5 .selena-start-btn {
    min-height: 52px;
    font-size: 15px;
  }
  #custom-html-5 .selena-hint {
    margin-top: 8px;
    font-size: 11px;
  }
}
#custom-html-6 {
  /* Верх */
  /* Центр */
  /* Сообщения */
  /* Печатает */
  /* Низ */
  /* Десктоп */
  /* Маленькие телефоны */
}
#custom-html-6 html,
#custom-html-6 body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#custom-html-6 .selena-screen,
#custom-html-6 .selena-screen * {
  box-sizing: border-box;
}
#custom-html-6 .selena-screen {
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  position: relative;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: #020813;
  background-image: radial-gradient(circle at 20% 12%, rgba(255, 123, 98, 0.16), transparent 28%), radial-gradient(circle at 84% 18%, rgba(86, 166, 255, 0.18), transparent 30%), linear-gradient(180deg, #071827 0%, #020813 100%);
}
#custom-html-6 .selena-space {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px), radial-gradient(circle, rgba(127, 190, 255, 0.45) 1px, transparent 1.5px);
  background-size: 82px 82px, 138px 138px;
  background-position: 0 0, 42px 58px;
  pointer-events: none;
}
#custom-html-6 .selena-app {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  min-height: 680px;
  margin: 0 auto;
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
}
#custom-html-6 .selena-chat-top {
  flex: 0 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#custom-html-6 .selena-back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9ebff !important;
  text-decoration: none !important;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 225, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
#custom-html-6 .selena-chat-title {
  text-align: center;
}
#custom-html-6 .selena-chat-title strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}
#custom-html-6 .selena-chat-title span {
  display: block;
  margin-top: 3px;
  color: rgba(156, 207, 255, 0.78);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}
#custom-html-6 .selena-chat-menu {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9ebff;
  font-size: 24px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 225, 255, 0.14);
}
#custom-html-6 .selena-chat-main {
  flex: 1 1 auto;
  min-height: 0;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
}
#custom-html-6 .selena-chat-status {
  flex: 0 0 auto;
  min-height: 64px;
  padding: 11px 14px;
  border-radius: 23px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 25, 42, 0.68);
  border: 1px solid rgba(170, 215, 255, 0.14);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 18px 38px rgba(0, 0, 0, 0.2);
}
#custom-html-6 .selena-chat-orb {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 19px;
  background: #f25538;
  background-image: radial-gradient(circle at 35% 28%, #ffd7c9 0%, #ff8a73 30%, #f25538 62%, #253a66 100%);
  box-shadow: 0 0 36px rgba(255, 115, 90, 0.32);
}
#custom-html-6 .selena-chat-status-text strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 850;
}
#custom-html-6 .selena-chat-status-text p {
  margin: 4px 0 0;
  color: rgba(225, 237, 250, 0.6);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
}
#custom-html-6 .selena-messages {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 12px;
  padding-right: 2px;
  overflow-y: auto;
  scrollbar-width: none;
}
#custom-html-6 .selena-messages::-webkit-scrollbar {
  display: none;
}
#custom-html-6 .selena-message {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
#custom-html-6 .selena-message-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a73 0%, #f24d34 100%);
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(255, 101, 77, 0.22);
}
#custom-html-6 .selena-bubble {
  max-width: 82%;
  padding: 13px 15px;
  border-radius: 21px;
  background: rgba(7, 25, 42, 0.72);
  border: 1px solid rgba(170, 215, 255, 0.14);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 14px 30px rgba(0, 0, 0, 0.18);
}
#custom-html-6 .selena-bubble p {
  margin: 0;
  color: rgba(235, 244, 255, 0.84);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
}
#custom-html-6 .selena-message-user {
  justify-content: flex-end;
}
#custom-html-6 .selena-message-user .selena-bubble {
  background: rgba(255, 120, 95, 0.14);
  border-color: rgba(255, 150, 126, 0.22);
}
#custom-html-6 .selena-message-user .selena-bubble p {
  color: #ffffff;
}
#custom-html-6 .selena-typing {
  min-width: 70px;
  display: flex;
  gap: 5px;
  align-items: center;
}
#custom-html-6 .selena-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(235, 244, 255, 0.52);
}
#custom-html-6 .selena-chat-bottom {
  flex: 0 0 auto;
  padding-top: 10px;
}
#custom-html-6 .selena-chat-form {
  width: 100%;
  min-height: 54px;
  padding: 7px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 25, 42, 0.76);
  border: 1px solid rgba(170, 215, 255, 0.16);
  box-shadow: inset 0 0 24px rgba(100, 180, 255, 0.04), 0 16px 34px rgba(0, 0, 0, 0.18);
}
#custom-html-6 .selena-chat-form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 40px;
  border: 0;
  outline: none;
  padding: 0 12px;
  color: #ffffff;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  font-family: Arial, sans-serif;
}
#custom-html-6 .selena-chat-form input::placeholder {
  color: rgba(225, 237, 250, 0.38);
}
#custom-html-6 .selena-chat-form button {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #f25538;
  background-image: linear-gradient(135deg, #ff8a73 0%, #ff654d 50%, #f24d34 100%);
  box-shadow: 0 12px 28px rgba(255, 101, 77, 0.28);
  font-size: 21px;
  font-weight: 900;
  cursor: pointer;
}
#custom-html-6 .selena-chat-note {
  margin: 8px auto 0;
  color: rgba(225, 237, 250, 0.42);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  #custom-html-6 .selena-app {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
@media (max-width: 380px) {
  #custom-html-6 .selena-screen {
    min-height: 640px;
  }
  #custom-html-6 .selena-app {
    min-height: 640px;
    padding: 12px 16px 16px;
  }
  #custom-html-6 .selena-chat-top {
    height: 46px;
  }
  #custom-html-6 .selena-back,
  #custom-html-6 .selena-chat-menu {
    width: 38px;
    height: 38px;
  }
  #custom-html-6 .selena-back {
    font-size: 30px;
  }
  #custom-html-6 .selena-chat-title strong {
    font-size: 15px;
  }
  #custom-html-6 .selena-chat-title span {
    font-size: 11px;
  }
  #custom-html-6 .selena-chat-main {
    padding-top: 8px;
  }
  #custom-html-6 .selena-chat-status {
    min-height: 60px;
    padding: 10px 12px;
    border-radius: 21px;
  }
  #custom-html-6 .selena-chat-orb {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 17px;
  }
  #custom-html-6 .selena-chat-status-text strong {
    font-size: 14px;
  }
  #custom-html-6 .selena-chat-status-text p {
    font-size: 11px;
  }
  #custom-html-6 .selena-messages {
    margin-top: 10px;
  }
  #custom-html-6 .selena-message {
    margin-bottom: 10px;
  }
  #custom-html-6 .selena-bubble {
    padding: 11px 13px;
    border-radius: 19px;
  }
  #custom-html-6 .selena-bubble p {
    font-size: 13px;
  }
  #custom-html-6 .selena-chat-form {
    min-height: 50px;
  }
  #custom-html-6 .selena-chat-form input {
    height: 36px;
    font-size: 14px;
  }
  #custom-html-6 .selena-chat-form button {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 19px;
  }
  #custom-html-6 .selena-chat-note {
    font-size: 10px;
  }
}
