:root {
  --dv-bg: #0b0b12;
  --dv-card: #141423;
  --dv-border: rgba(255, 255, 255, 0.12);
  --dv-text: #f5f5ff;
  --dv-soft: #b7b7d6;
  --dv-purple-600: #7b61ff;
  --dv-purple-400: #c084fc;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: normal;
  background-color: #000206;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  color: #fff;
}
h1 {
  font-size: 45px;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 25px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
@media (max-width: 992px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
}
a,
button {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
svg,
a {
  transition: all 0.3s ease-in-out;
}
p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
small {
  font-size: 70%;
}
.opacity-60 {
  opacity: 0.6;
}
.label-name {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.label-name span {
  color: rgba(255, 255, 255, 0.6);
}
.panel-message {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #f87171;
}
.input-field {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  background: #0d1126;
  border: 1px solid rgba(123, 97, 255, 0.2);
  backdrop-filter: blur(30px);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease-out;
}
.input-field:focus {
  outline: none;
  border-color: #8c6afe6b;
}
textarea.input-field {
  height: 160px;
  resize: none;
}
.textarea-group {
  position: relative;
}
.textarea-group .text-count {
  position: absolute;
  bottom: 20px;
  right: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  font-weight: 400;
}
.dream-select__native {
  padding: 0 10px !important;
  border: 1px solid rgba(123, 97, 255, 0.3) !important;
}
select option {
  background-color: #0e102d;
  color: #fff;
  padding: 0 10px;
  border: 0;
}


.btn {
  width: 100%;
  height: 50px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  gap: 8px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #4a30fc, #b87cfb);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(123, 97, 255, 0.36);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s;
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
@media (hover: hover) {
  .btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(123, 97, 255, 0.45);
  }
}
.btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: all 0.5s;
}
.btn-outline svg path {
  transition: all 0.5s;
}
.btn-outline {
  padding: 0 30px;
  height: 50px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgba(123, 97, 255, 0.25);
  backdrop-filter: blur(30px);
  line-height: 50px;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.5s;
}
.btn-outline svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  transition: all 0.5s;
}
.btn-outline svg path {
  transition: all 0.5s;
}
@media (hover: hover) {
  .btn-outline:hover {
    background: rgba(123, 97, 255, 1);
  }
  .btn-outline:hover svg path {
    fill: #fff;
  }
}
.btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #7b61ff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.btn-link svg {
  width: 14px;
  height: 14px;
  fill: #7b61ff;
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  .btn-link:hover {
    color: #fff;
  }
}
.main-body {
  min-height: calc(100svh - 70px);
}
.footer {
  height: 70px;
  background: transparent;
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(123, 97, 255, 0.2);
}
.footer .container {
  height: 100%;
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.footer .inner .copyright {
  font-size: 14px;
  color: #989898;
  line-height: 1;
}
.footer .inner .social-link {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
.footer .inner .social-link a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  .footer .inner .social-link a:hover svg {
    fill: var(--dv-purple-600);
    transition: all 0.3s ease-out;
  }
}
.footer .inner .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.footer .inner .footer-link a {
  font-size: 14px;
  color: #fff;
}
@media (hover: hover) {
  .footer .inner .footer-link a:hover {
    font-size: 14px;
    color: var(--dv-purple-600);
  }
}
.header {
  width: 100%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  margin-top: 20px;
}
.header .main-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 70px;
  padding: 0 30px;
  border-radius: 35px;
  background: transparent;
  border: 1px solid rgba(123, 97, 255, 0.2);
  backdrop-filter: blur(30px);
}
.header .main-menu .right-block {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.header .main-menu .right-block .upgrade-btn {
  padding: 0 15px;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(90deg, #4a30fc, #b87cfb);
  font-weight: 600;
  font-size: 14px;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  .header .main-menu .right-block .upgrade-btn:hover {
    transition: all 0.3s ease-out;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(123, 97, 255, 0.45);
  }
}
.header .main-menu .right-block .upgrade-btn span svg {
  height: 15px;
  fill: #fff;
}
.header .main-menu .right-block .profile-dropdown {
  margin: 0;
  padding: 0;
}
.header .main-menu .right-block .profile-dropdown li {
  list-style: none;
}
.header .main-menu .right-block .profile-dropdown li.dropdown {
  margin-right: 10px;
}
.header .main-menu .right-block .profile-dropdown .nav-link {
  color: #fff;
}
.header .main-menu .right-block .profile-dropdown .nav-link.login {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 27px;
}
.header .main-menu .right-block .profile-dropdown .nav-link.login svg {
  fill: #fff;
  width: 25px;
}
@media (hover: hover) {
  .header .main-menu .right-block .profile-dropdown .nav-link:hover {
    color: #c084fc;
  }
}
.header .main-menu .right-block .profile-dropdown .dropdown-toggle .profile-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 27px;
  background: linear-gradient(135deg, var(--dv-purple-600), #0ea5b8);
}
.header .main-menu .right-block .profile-dropdown .dropdown-toggle .profile-avatar:after {
  position: absolute;
  content: '';
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAQCAYAAAABOs/SAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAFCSURBVDhPtZS9agJBFIV3OpGAvkZaEYKaH7VOkTKVRR7Bl8gLpLAImCpNilQpgiKkDyIkRYoUKRIICBryAut35RrGyeiOrrtwuLM/cz/OucOaOI5rURRdolNjzC81kwuOoXEXPcO5Mjy45+YMDVEjC7hCr+l/gb7QvoBzLB5QE43QyS7hCr2hbwt9oiP6f4j9KCv4Kqgw52AL3mN9uAvnDvSbnhVxuuD9gRWepz6mhXugEu/7Arrk2HKeCh4C9YLTOFfoLT3OkcT7z6k3ajsKmojzAToImfkm0JWOrdj3WPeT4A50zPdVd6a2qUSwxr4W7oEeA31zQRuD18G3hQY5dmJ/4r6kM69TO3qQJN4gp4mHyxcVDgs68zL1BxXRVKGvSfHa75d+ICEbFS6nXZxPUJ2ZvoTsTQXWmYvTO9TeBio9Zho7pxucciP3AAAAAElFTkSuQmCC');
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
  right: -20px;
}
.header .main-menu .right-block .profile-dropdown .dropdown-toggle:after {
  display: none;
}
.header .main-menu .right-block .profile-dropdown .dropdown-toggle .profile-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.header .main-menu .right-block .profile-dropdown .dropdown-menu {
  min-width: 130px;
  border: 0;
  background: rgba(7, 10, 30, 0.85);
  border: 1px solid rgba(123, 97, 255, 0.25);
  border-top: 0;
  backdrop-filter: blur(15px);
  border-radius: 0 0 8px 8px;
  padding: 0;
  right: -10px !important;
  top: 12px !important;
}
.header .main-menu .right-block .profile-dropdown .dropdown-menu .dropdown-item {
  background-color: transparent;
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  border: 0;
  box-shadow: none;
  text-align: center;
}
@media (hover: hover) {
  .header .main-menu .right-block .profile-dropdown .dropdown-menu .dropdown-item:hover {
    background: rgba(123, 97, 255, 1);
    color: #fff;
  }
}
.header .main-menu .right-block .profile-dropdown .dropdown-menu .dropdown-item:focus {
  background-color: transparent;
}
.header .main-menu .navbar {
  flex-grow: 1;
}
.header .main-menu .navbar .navbar-toggler {
  padding: 0;
  box-shadow: none;
}
.header .main-menu .navbar .navbar-toggler svg {
  height: 15px;
}
.header .main-menu .navbar .navbar-collapse {
  justify-content: center;
}
.header .main-menu .navbar .navbar-nav .nav-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 66px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  .header .main-menu .navbar .navbar-nav .nav-link:hover {
    color: #c084fc !important;
    transition: all 0.3s ease-out;
  }
}
.header .main-menu .navbar .navbar-nav .nav-item.active .nav-link {
  color: #c37ffc;
  border-color: rgba(195, 127, 252, 0.7);
  transition: all 0.3s ease-out;
}
.header .main-menu .navbar .credits-btn {
  padding: 0 15px;
  height: 40px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid rgba(123, 97, 255, 0.25);
  backdrop-filter: blur(30px);
  font-size: 14px;
  line-height: 40px;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.5s;
}
.header .main-menu .navbar .credits-btn a {
  margin-left: 10px;
}
.header .main-menu .navbar .credits-btn a svg {
  height: 15px;
  transition: all 0.5s ease-out;
}
.header .main-menu .navbar .credits-btn:hover svg {
  transform: rotate(360deg);
}

.header .navbar .navbar-brand {
  padding: 0;
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
}
.header .navbar .navbar-brand img {
  width: auto;
  height: 42px;
}
.box-card {
  border-radius: 15px;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.45),
    0 5px 15px rgba(145, 114, 227, 0.1),
    -3px 3px 15px rgba(145, 114, 227, 0.15) inset;
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, #0e102d 0, #030615 100%) padding-box,
    linear-gradient(45deg, rgba(145, 114, 227, 0.15), rgba(145, 114, 227, 0.5)) border-box;
  padding: 24px;
}
.mobile-menu {
  display: none;
  position: fixed;
  width: 100%;
  height: 100svh;
  z-index: 120;
  left: -100svw;
  transition: all 0.5s ease-out;
  transition-delay: 0.3s;
}
.mobile-menu .closerr {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0, 1.5, 1, 1.5);
  transition-delay: 1s;
  display: none;
}
.mobile-menu .closerr svg {
  width: 20px;
  fill: #fff;
}
.mobile-menu .overlay {
  position: fixed;
  background: rgba(14, 16, 45, 0.4);
  left: -100svw;
  top: 0;
  width: 100svw;
  height: 100%;
  backdrop-filter: blur(5px);
  opacity: 0;
  z-index: 1;
  transition: all 1s ease-out;
}
.mobile-menu.on {
  left: 0;
}
.mobile-menu.on .closerr {
  right: 0;
  top: 0;
}
.mobile-menu.on .overlay {
  opacity: 1;
  left: 0;
}
.mobile-menu .content {
  position: relative;
  z-index: 10;
  width: 70%;
  height: 100%;
  background: #0e102d;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}
.mobile-menu .content .logo-head {
  padding: 20px;
  border-bottom: 1px solid rgba(123, 97, 255, 0.2);
}
.mobile-menu .content .logo-head img {
  width: 95%;
}
.mobile-menu .navbar-nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu .navbar-nav .nav-link {
  padding: 15px 20px;
  border-bottom: 1px solid rgb(39 41 73);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.mobile-menu .navbar-nav .nav-item.active .nav-link {
  color: #c37ffc;
  box-shadow: 0 2px 0 rgba(195, 127, 252, 0.7);
}
.mobile-menu .account-menu {
  display: flex;
  padding: 0;
  margin-bottom: 0;
  gap: 10px;
}
.mobile-menu .account-menu .nav-link {
  padding: 7.5px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.6;
  border: 1px solid rgba(123, 97, 255, 0.45);
  border-radius: 30px;
  min-width: 100px;
  text-align: center;
  flex-basis: 100%;
}
.mobile-menu .account-menu > a {
  flex-basis: 100%;
}
.menu-footer {
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  border-top: 1px solid #242057;
}
.menu-footer img {
  width: 70%;
  margin-bottom: 6px;
}
.menu-footer p {
  margin-bottom: 0;
  font-size: 10px;
  color: #fff;
  opacity: 0.6;
}

.mobile-menu .content .credits-btn {
  max-width: 135px;
  margin: 20px;
  padding: 0 15px;
  height: 40px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid rgba(123, 97, 255, 0.25);
  backdrop-filter: blur(30px);
  font-size: 14px;
  line-height: 40px;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.5s;
}
.mobile-menu .content .credits-btn a {
  margin-left: 10px;
}
.mobile-menu .content .credits-btn a svg {
  height: 15px;
  transition: all 0.5s ease-out;
}
.mobile-menu .content .credits-btn:hover svg {
  transform: rotate(360deg);
}

@media (max-width: 1200px) {
  .box-card {
    padding: 18px;
  }
}
@media (max-width: 1024px) {
  .main-body {
    min-height: calc(100svh - 107px);
  }
  .box-card {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .footer {
    height: auto;
  }
  .footer .inner {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    gap: 10px;
  }
  .footer .inner .footer-link {
    gap: 15px;
  }
  .header .main-menu .navbar {
    gap: 6px;
    padding: 0;
    justify-content: start;
  }
  .header .main-menu .navbar .credits-btn {
    display: none;
  }
  .header .navbar .navbar-brand img {
    height: 28px;
  }
  .header .main-menu .right-block .upgrade-btn {
    min-width: auto;
    font-size: 10px;
    gap: 2px;
    justify-content: center;
    padding: 0 10px;
  }
  .header .main-menu .right-block .upgrade-btn span svg {
    height: 10px;
  }
  .header .main-menu {
    gap: 10px;
    padding: 0 10px 0 15px;
  }
  .header .main-menu .right-block {
    gap: 10px;
  }
  .header .main-menu .right-block .profile-dropdown .dropdown-toggle {
    pointer-events: none;
  }
  .header .main-menu .right-block .profile-dropdown li.dropdown {
    margin-right: 0;
  }
  .header .main-menu .right-block .profile-dropdown .dropdown-toggle .profile-avatar img,
  .header .main-menu .right-block .profile-dropdown .dropdown-toggle .profile-avatar {
    width: 40px;
    height: 40px;
  }
  .header .main-menu .right-block .profile-dropdown .dropdown-toggle .profile-avatar:after {
    display: none;
  }
  .header .navbar .navbar-brand {
    font-size: 18px;
  }
  .header .main-menu .right-block .profile-dropdown .dropdown-menu {
    right: 20px !important;
    top: 13px !important;
  }
  input, .input, .input-field, textarea, select, .dream-select__label {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) {
  .main-body {
    height: auto;
    min-height: auto;
  }
  .header .main-menu .navbar .navbar-collapse {
    display: none;
  }
  .header .main-menu .navbar .navbar-nav .nav-link {
    text-align: left;
    padding: 0;
    line-height: 55px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    padding: 5px 15px;
  }
}
@media (max-width: 400px) {
  .btn-outline {
    padding: 0 20px;
  }
  .header .main-menu .right-block .upgrade-btn span {
    display: none;
  }
  .footer .inner .footer-link {
    gap: 10px;
    row-gap: 5px;
    flex-wrap: wrap;
  }
}
