@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 300;
  src: local("Montserrat Light Italic"), local("Montserrat-LightItalic"), url(../../assets/fonts/montserrat/Montserrat-LightItalic.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 100;
  src: local("Montserrat ExtraLight"), local("Montserrat-ExtraLight"), url(../../assets/fonts/montserrat/Montserrat-Light.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  src: local("Montserrat Light"), local("Montserrat-Light"), url(../../assets/fonts/montserrat/Montserrat-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(../../assets/fonts/montserrat/Montserrat-SemiBold.ttf) format("truetype");
}


:root {
  --c-veil: linear-gradient(155deg, rgba(10, 8, 26, 0.52) 0%, rgba(14, 11, 34, 0.7) 42%, rgba(8, 7, 20, 0.76) 100%);
  --c-glass: rgba(26, 24, 46, 0.78);
  --c-glass-nav: rgba(22, 20, 42, 0.82);
  --c-line: rgba(165, 178, 255, 0.28);
  --c-line-strong: rgba(195, 205, 255, 0.52);
  --c-accent: #a8b6ff;
  --c-accent-soft: #cbd4ff;
  --c-warm: #e0b56a;
  --c-warm-hot: #f0d78a;
  --c-ink: #141022;
  --c-text: rgba(225, 230, 252, 0.92);
  --c-text-muted: rgba(203, 210, 240, 0.82);
  --c-midtone: #7a87dc;
  --c-glow: rgba(130, 150, 255, 0.22);
  --radius-section: 14px;
  --radius-pill: 50px;
}


a {
  color: inherit;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

a[href] {
  cursor: pointer;
}

a:hover,
a:focus-visible {
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

body ::selection {
  background: rgba(145, 165, 255, 0.35);
  color: #f8f9ff;
}

body .navbar {
  flex-wrap: nowrap;
}

@media screen and (max-width: 991px) {
  body header nav.site-header-navbar.navbar {
    flex-wrap: wrap;
    align-items: center;
  }
}
@media screen and (min-width: 576px) {
  body .navbar {
    padding: 15px;
  }
}
@media screen and (max-width: 575px) {
  body .navbar {
    padding: 15px;
  }
  body .navbar ul {
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  body .navbar {
    padding: 0.5rem;
  }
}
body .navbar .navbar-toggler {
  background: linear-gradient(135deg, #241f45, var(--c-warm));
  border: 1px solid var(--c-line);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--c-ink);
  background-image: url("../img/body-bg.jpg");
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  height: 100%;
  font-size: 14px;
  color: var(--c-text-muted);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
}
body > * {
  position: relative;
  z-index: 2;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--c-veil);
  pointer-events: none;
  z-index: 1;
}
body h1 {
  color: #f4f6ff;
  font-weight: 300;
  margin: 0;
  font-size: 120%;
  word-spacing: 4px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
body h1 em {
  color: var(--c-accent-soft);
  text-decoration: underline solid;
  text-decoration-thickness: 0.06em;
}
@media screen and (max-width: 575px) {
  body h1 {
    font-size: 100%;
  }
}
body h2 {
  color: var(--c-accent);
  font-size: 80%;
  word-spacing: 2px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  body h2 {
    font-size: 70%;
  }
}
body h3 {
  color: #eef1ff;
  font-weight: 300;
  font-size: 120%;
  text-transform: uppercase;
  margin: 25px 0;
}
body h3.sub-title {
  color: var(--c-warm);
  text-transform: lowercase;
  font-size: 110%;
}
body h4 {
  color: var(--c-accent);
  font-weight: 100;
}
body label {
  color: #eef1ff;
}
body em {
  color: var(--c-accent-soft);
}
body strong {
  color: var(--c-accent);
}
body ul {
  list-style: none;
  padding-left: 1em;
  margin: 0;
  font-weight: 100;
}
body ul.info {
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  body ul.info {
    flex-direction: row;
  }
}
body ul:not(.no-style):not(.sub-menu) li {
  position: relative;
}
body ul:not(.no-style):not(.sub-menu) li::before {
  display: block;
  position: absolute;
  height: 4px;
  width: 4px;
  background: var(--c-accent);
  border-radius: 50%;
  content: " ";
  top: 10px;
  left: -12px;
}
body figure {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  max-height: 680px;
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
}
body figure img {
  width: 100%;
  object-fit: cover;
}
body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
body .logos {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
body .logos li {
  margin: 0 15px;
}
body .logos img {
  height: 50px;
}
body p {
  font-size: 120%;
  line-height: 140%;
  font-weight: 300;
}
body .cover {
  padding: 25px;
}
body .plus-pattern {
  background-image: url("../svg/plus.svg");
  background-repeat: repeat;
  background-size: 70px 70px;
}
body section {
  position: relative;
  padding: 20px 0;
  background-size: cover;
  background-position: center;
}
body section .section {
  padding: 25px;
  border-radius: var(--radius-section);
  background: var(--c-glass);
  border: 1px solid var(--c-line);
  box-shadow: 0 8px 40px rgba(6, 4, 18, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
@media screen and (min-width: 768px) {
  body section .section {
    padding: 25px;
  }
}
body section.bg-image {
  border-bottom: none;
}
body section.bg-image > * {
  position: relative;
  z-index: 2;
}
body section.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 28, 0.35);
  backdrop-filter: blur(8px);
  z-index: 1;
}
body section#hero {
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  body section#hero {
    padding: 40px 0;
  }
}
@media screen and (max-width: 575px) {
  body {
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 576px) {
  body {
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  body {
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 992px) {
  body {
    background-size: 100% 100%;
  }
}

body footer {
  background: var(--c-glass);
  border-top: 1px solid var(--c-line);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 -12px 48px rgba(6, 4, 20, 0.35);
}
body footer .disclaimer h1 {
  display: flex;
  align-items: center;
}
body footer .menu {
  padding: 10px;
}
body footer .menu .menu-item {
  padding: 5px 15px;
}
body footer .menu.block {
  justify-content: flex-start;
}
body footer .menu h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 20px;
  margin-bottom: 15px;
  font-weight: 100;
  color: #fff;
}
body footer .menu h4 .brand-title {
  font-size: 100%;
}
body footer .menu h4 .brand-name {
  font-size: 80%;
}
body footer .menu .icon {
  font-size: 120%;
}
body footer .menu ul .link {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
body footer .menu ul .link .title {
  font-weight: 100;
  color: var(--c-text-muted);
}
body footer .menu p {
  font-size: 100%;
  margin: 0;
  color: var(--c-accent);
  font-weight: 100;
}
body footer {
  padding: 15px 0;
}
body footer .box {
  text-align: center;
}
body footer .copyright {
  text-align: center;
  margin: 15px 0 0;
  color: var(--c-text-muted);
  font-weight: 100;
}
body .basement figure {
  display: flex;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 60%, #000 100%);
  border-radius: 50px;
  padding: 5px;
}
body .basement figure img {
  height: 60px;
}

body section.common .section {
  text-align: left;
}
body section.common .info {
  border: 1px solid var(--c-line);
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(165, 178, 255, 0.13) 100%);
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  body section.common .info {
    flex-direction: row;
  }
}
body section.common .info .item {
  text-align: center;
}
body section.common .info .item .icon {
  background: rgba(224, 181, 106, 0.38);
  padding: 15px;
  font-size: 300%;
  border-radius: 50px;
  box-shadow: 3px 3px 5px rgba(145, 165, 255, 0.26);
}
body section.common .info .item p {
  font-size: 100%;
}
body section.common .info .item h4 {
  margin: 25px;
  font-weight: 400;
  font-size: 200%;
  color: var(--c-accent);
}

body section.mix .block {
  text-align: center;
}
body section.mix .block h4 {
  font-size: 100%;
  margin: 15px 0;
  text-align: center;
}
body section.mix .block p {
  font-weight: 100;
  font-size: 90%;
  color: #fff;
}
body section.mix .block.second .box {
  padding: 5px;
  justify-content: center;
  background: linear-gradient(180deg, rgba(145, 165, 255, 0.34), rgba(145, 165, 255, 0.34));
}
body section.mix .block.third {
  text-align: center;
}
body section.mix .block.fourth .button {
  text-align: center;
}

body section.accord .accordion {
  padding: 0;
  margin-top: 40px;
}
body section.accord .accordion .accordion-item {
  background: linear-gradient(180deg, transparent 0%, rgba(165, 178, 255, 0.13) 100%);
  border: 1px solid var(--c-line);
  transition: border 0.5s, box-shadow 0.5s, transform 0.5s ease;
}
body section.accord .accordion .accordion-item h4 {
  color: #fff;
  font-size: 120%;
}
body section.accord .accordion .accordion-item:first-of-type {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
body section.accord .accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
body section.accord .accordion .accordion-item {
  border-radius: 5px;
  margin-bottom: 15px;
}
body section.accord .accordion .accordion-item:hover {
  border: 1px solid rgba(195, 205, 255, 0.65);
}
body section.accord .accordion .accordion-item .accordion-button {
  background: transparent;
  box-shadow: none;
}
body section.accord .accordion .accordion-item .accordion-button::after {
  filter: invert(1);
}
body section.accord .accordion .accordion-item .accordion-body {
  color: var(--c-text-muted);
}

body section.wide {
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
body section.wide > * {
  position: relative;
  z-index: 2;
}
body section.wide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
body section.wide .section .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  body section.wide .section .info {
    flex-wrap: nowrap;
  }
}
body section.wide .block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body section.wide .block.plain .info {
  display: flex;
  justify-content: space-around;
  padding: 0 0 40px;
}
body section.wide .block.plain .info .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body section.wide .block.plain .info .item p {
  font-size: 100%;
}
body section.wide .block.plain .info .item h4 {
  margin-top: 40px;
  font-weight: 400;
  font-size: 100%;
  color: var(--c-accent);
  text-align: center;
}
body section.wide .block .button {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  body section.wide .block .button {
    flex-direction: row;
  }
}
body section.wide .block .button a {
  margin: 15px 0;
}
@media screen and (min-width: 992px) {
  body section.wide .block .button a {
    margin: 0 5px;
  }
}
body section.wide .block.rel {
  padding-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin: 5px;
  box-shadow: 0 0 30px rgba(145, 165, 255, 0.14), 0 0 0 rgba(145, 165, 255, 0.09) inset;
  transition: box-shadow 0.2s, border 0.2s;
}
body section.wide .block.rel h4 {
  margin: 4px;
  font-size: 120%;
}
body section.wide .block.rel p {
  margin: 0 4px;
  color: var(--c-accent);
  font-weight: 100;
  font-size: 100%;
}
body section.wide .block.rel .plate {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}
body section.wide .block.rel .plate .info {
  display: flex;
  border: none;
  padding: 10px;
}
body section.wide .block.rel .plate .grade {
  display: flex;
  align-items: center;
}
body section.wide .block.rel .plate .grade .label {
  margin: 0 10px;
}
body section.wide .block.rel .plate .grade h4 {
  margin: 0;
  font-weight: 400;
  font-size: 200%;
  color: var(--c-accent);
}
body section.wide .block.rel .plate .grade p {
  color: var(--c-text-muted);
  font-size: 100%;
}
body section.wide .block.rel .plate .grade p span {
  margin: 0 5px;
}
body section.wide .block.rel .info {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
body section.wide .block.rel .info .item .promo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
body section.wide .block.rel .info .item .promo h4 {
  color: var(--c-midtone);
  font-weight: 100;
  font-size: 100%;
  margin: 0;
}
body section.wide .block.rel .head {
  display: flex;
  align-items: flex-start;
}

body section.resp .section {
  text-align: center;
  position: relative;
  padding: 1.35rem 1.25rem 1.5rem;
  margin: 0 auto;
  max-width: 100%;
  background: linear-gradient(165deg, #fde68a 0%, #fcd34d 48%, #fbbf24 100%);
  border: 1px solid rgba(120, 90, 20, 0.35);
  border-radius: var(--radius-section);
  box-shadow: 0 16px 48px rgba(4, 2, 18, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}
body section.resp .section h2 {
  margin: 0 0 1rem;
  color: #1e1b2e;
  font-size: clamp(0.72rem, 1.3vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}
body section.resp .section .logos {
  gap: 1.75rem 2.25rem;
  padding: 0.35rem 0 0.35rem;
}
body section.resp .section .logos img {
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  border-radius: 0 !important;
}
body section.resp figure {
  background: none;
  border-radius: 0 !important;
  overflow: visible;
  max-height: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
body section.resp figure img {
  border-radius: 0 !important;
  display: block;
}
body section.resp figure:after {
  content: none;
}

body .block.chat .chat-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
body .block.chat .chat-hdr .chat-hdr-main .chat-title {
  color: var(--c-warm);
  font-weight: 400;
}
body .block.chat .chat-hdr .chat-hdr-main .chat-sub {
  margin: 0.25rem 0 0;
}
body .block.chat .chat-hdr .chat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-line);
  font-weight: 900;
  white-space: nowrap;
}
body .block.chat .chat-hdr .chat-pill .chat-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--c-warm);
  box-shadow: 0 0 0 0.35rem var(--c-glow);
}
body .block.chat .chat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-height: 22rem;
  overflow: auto;
}
body .block.chat .chat-list .chat-item {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.5rem;
  transition: transform 180ms ease, opacity 180ms ease;
}
body .block.chat .chat-list .chat-item .chat-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
body .block.chat .chat-list .chat-item .chat-top .chat-meta {
  color: var(--c-warm-hot);
  font-weight: 400;
}
body .block.chat .chat-list .chat-item p.chat-msg {
  color: #fff;
  font-size: 100%;
}

body .block .tabs .nav .tab-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
body .block .tabs .nav .tab-btn.active {
  background: linear-gradient(180deg, rgba(145, 165, 255, 0.1), rgba(26, 24, 46, 0.5));
  border-color: rgba(110, 125, 195, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
body .block .tabs .nav .tab-btn.active .tab-btn-idx {
  background: rgba(155, 175, 255, 0.12);
  border-color: rgba(155, 175, 255, 0.28);
}
body .block .tabs .nav .tab-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(145, 165, 255, 0.1), rgba(26, 24, 46, 0.5));
  border-color: rgba(110, 125, 195, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
body .block .tabs .nav .tab-btn .tab-btn-idx {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 241, 255, 0.92);
}
body .block .tabs .details .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
body .block .tabs .details .meta .title {
  font-weight: 100;
}

body .block .nav {
  display: grid;
  gap: 0.6rem;
}
body .block .nav .f-tab-btn {
  width: 100%;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  padding: 0.3rem 0.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
body .block .nav .f-tab-btn.active {
  background: linear-gradient(180deg, rgba(145, 165, 255, 0.1), rgba(26, 24, 46, 0.5));
  border-color: rgba(110, 125, 195, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
body .block .nav .f-tab-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(145, 165, 255, 0.1), rgba(26, 24, 46, 0.5));
  border-color: rgba(110, 125, 195, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
body .block .nav .f-tab-btn .f-media {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.75rem;
  align-items: center;
}
body .block .nav .f-tab-btn .f-media .f-thumb {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 16/9;
}
body .block .nav .f-tab-btn .f-media .f-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #eaf1ff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
body .block .v-media {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 16/9;
}
body .block .v-media .v-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

body .block .phone-wrap {
  min-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .block .phone-wrap .phone {
  position: relative;
  width: 25rem;
  aspect-ratio: 16/9;
  border-radius: 2rem;
  padding: 0.75rem;
  background: radial-gradient(140px 90px at 30% 20%, rgba(155, 175, 255, 0.2), transparent 65%), radial-gradient(140px 90px at 70% 30%, rgba(224, 181, 106, 0.16), transparent 65%), linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(7deg);
  transform-origin: center;
}
@media screen and (min-width: 768px) {
  body .block .phone-wrap .phone {
    width: 30rem;
  }
}
body .block .phone-wrap .phone:after {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
body .block .phone-wrap .phone:before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.6rem;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.35);
}
body .block .phone-wrap .phone .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body .block .sound .player {
  padding: 1.25rem 1.25rem;
}
body .block .sound .player .player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
body .block .sound .player .player-top .player-now .player-title {
  margin: 0.35rem 0 0;
  font-weight: 900;
  letter-spacing: 0.02em;
}
body .block .sound .player .player-top .player-btns {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}
body .block .sound .player .player-top .player-btns .p-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
body .block .sound .player .player-top .player-btns .p-btn i {
  color: #fff;
}
body .block .sound .player .player-top .player-btns .p-btn-main {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(180deg, rgba(145, 165, 255, 0.26), rgba(145, 165, 255, 0.26));
  border-color: rgba(145, 165, 255, 0.26);
}
body .block .sound .player .p-progress {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
body .block .sound .player .p-progress .range {
  width: 100%;
  height: 2.25rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 0.75rem;
  appearance: none;
}
body .block .sound .player .p-progress .range::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--c-warm-hot), var(--c-warm));
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
body .block .sound .player .p-progress .time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-warm);
  font-weight: 900;
}
body .block .sound .player .p-progress .time-sep {
  opacity: 0.7;
}
body .block .sound .player .playlist {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem;
  display: grid;
  gap: 0.6rem;
}
body .block .sound .player .playlist .track {
  width: 100%;
  display: grid;
  grid-template-columns: 2.25rem 1fr 0.75rem;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(145, 165, 255, 0.26);
  color: var(--c-text-muted);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  text-align: left;
}
body .block .sound .player .playlist .track.is-active {
  background: linear-gradient(180deg, rgba(145, 165, 255, 0.26), rgba(145, 165, 255, 0.14));
  border-color: rgba(145, 165, 255, 0.26);
}
body .block .sound .player .playlist .track.is-active .track-mark {
  background: var(--c-warm);
  box-shadow: 0 0 0 0.35rem rgba(130, 150, 255, 0.28);
}
body .block .sound .player .playlist .track:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(145, 165, 255, 0.26), rgba(145, 165, 255, 0.14));
  border-color: rgba(145, 165, 255, 0.26);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
body .block .sound .player .playlist .track .track-idx {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 900;
}
body .block .sound .player .playlist .track .track-txt {
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}
body .block .sound .player .playlist .track .track-txt .track-title {
  font-weight: 400;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body .block .sound .player .playlist .track .track-txt .track-sub {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(195, 205, 255, 0.65);
  font-size: 90%;
}
body .block .sound .player .playlist .track .track-mark {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

body .modal .modal-close {
  filter: invert(1);
}
body .modal .modal-content {
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(6, 4, 20, 0.55);
  color: #fff;
  background: var(--c-glass);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}
body .modal .modal-content .modal-hdr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body .modal .modal-content .invite .input {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  padding: 0.75rem 0.9rem;
  color: #fff;
}
body .modal .modal-content .invite .field {
  margin-bottom: 1rem;
}
body .modal .modal-content .invite .invite-actions {
  margin-top: 1rem;
}

body section.blog .brand .stars {
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
}
body section.blog .brand .stars .high {
  font-size: 150%;
}
body section.blog .brand .stars .medium {
  font-size: 120%;
}
body section.blog .brand .stars i {
  color: #fff;
}


body header {
  overflow-x: visible;
  overflow-y: visible;
  position: sticky;
  z-index: 999;
  top: 0;
  margin: 1.5rem auto 2rem;
  padding-top: 1rem;
}
body header nav {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  padding: 0.85rem 1.25rem 0.85rem 1.5rem;
  min-height: 72px;
  box-shadow: 0 12px 48px rgba(6, 4, 20, 0.4);
}
body header nav.site-header-navbar > * {
  position: relative;
  z-index: 1;
}
body header nav > ul.no-style {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body header nav > ul.no-style > li {
  padding: 0;
  margin: 0;
}
body header nav .btn-nav {
  white-space: nowrap;
}
body header nav::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: var(--c-glass-nav);
}
body header nav .navbar-brand {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.15rem;
  max-height: none;
  z-index: 9999;
}
body header nav .navbar-brand .logo img {
  border: none;
  max-height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}
@media screen and (max-width: 575px) {
  body header nav .navbar-brand .logo img {
    max-height: 64px;
  }
}
@media screen and (min-width: 768px) {
  body header nav .navbar-brand .logo img {
    max-height: 92px;
  }
}
body header nav .navbar-brand .logo::after {
  content: none;
}
body header nav ul li {
  list-style: none;
  position: relative;
  padding-right: 10px;
}
body header nav ul li.menu-item-has-children {
  position: relative;
}
body header nav ul li.menu-item-has-children a {
  display: inline-block;
  margin-right: 15px;
}


@media screen and (max-width: 991px) {
  body header nav.site-header-navbar .site-header-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(244, 246, 255, 0.55);
    border-radius: 12px;
    flex-shrink: 0;
    align-self: center;
    background: rgba(244, 246, 255, 0.14);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  }
  body header nav.site-header-navbar .site-header-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(145, 165, 255, 0.45);
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger {
    position: relative;
    display: block;
    width: 1.2rem;
    height: 0.95rem;
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: #f4f6ff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.25s ease,
      opacity 0.2s ease,
      top 0.25s ease,
      bottom 0.25s ease,
      margin 0.25s ease;
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger-bar:nth-child(1) {
    top: 0;
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger-bar:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  body header nav.site-header-navbar .site-header-toggler .site-burger-bar:nth-child(3) {
    bottom: 0;
  }
  body header nav.site-header-navbar .site-header-toggler[aria-expanded="true"] .site-burger-bar:nth-child(1) {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
  body header nav.site-header-navbar .site-header-toggler[aria-expanded="true"] .site-burger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body header nav.site-header-navbar .site-header-toggler[aria-expanded="true"] .site-burger-bar:nth-child(3) {
    bottom: auto;
    top: 50%;
    margin-top: -1px;
    transform: rotate(-45deg);
  }
}
body header nav .site-nav-cluster,
body header nav .site-nav-standard-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body header nav .site-nav-cluster > li,
body header nav .site-nav-standard-menu > li {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  body header nav .site-nav-cluster,
  body header nav .site-nav-standard-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  body header nav .site-nav-cluster .btn-nav,
  body header nav .site-nav-standard-menu .btn-nav {
    width: 100%;
    text-align: center;
  }
  body header nav.site-header-navbar .navbar-collapse {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    order: 10;
    z-index: 4;
    margin-top: 0.35rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--c-line);
    background: rgba(18, 16, 34, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    align-self: stretch;
  }
  body header nav .site-nav-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    order: 0;
    min-height: 3rem;
  }
}
@media screen and (min-width: 992px) {
  body header nav .site-nav-standard-menu {
    margin-left: auto !important;
    justify-content: flex-end;
  }
  body header nav .site-nav-composite-inner {
    position: relative;
    min-height: 3.5rem;
    align-items: center;
  }
  body header nav .site-nav-desktop-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0 !important;
  }
  body header nav .site-nav-before {
    justify-content: flex-start;
    margin-right: auto;
  }
  body header nav .site-nav-after {
    justify-content: flex-end;
    margin-left: auto;
  }
}

.btn-nav {
  display: inline-block;
  padding: 5px 10px;
  font-weight: 100;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  color: var(--c-accent-soft);
  border: 1px solid var(--c-accent-soft);
  box-shadow: none;
  -webkit-transition: transform 0.2s, color 0.5s;
  transition: transform 0.2s, color 0.5s;
  position: relative;
  background: transparent;
  overflow: hidden;
  z-index: 9999;
}
.btn-nav span {
  position: relative;
  z-index: 1;
}
.btn-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-warm) 70%, var(--c-warm-hot) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.btn-nav:hover::before {
  opacity: 1;
}
.btn-nav:hover, .btn-nav:active {
  cursor: pointer;
  color: var(--c-ink);
  transform: translateY(-3px);
}
@media screen and (min-width: 576px) {
  .btn-nav {
    font-weight: 400;
    padding: 10px 30px;
  }
}
.btn-nav.btn-full {
  background: linear-gradient(135deg, #251f42, var(--c-warm));
  box-shadow: 0 0 30px rgba(145, 165, 255, 0.42), inset 0 0 0 rgba(145, 165, 255, 0.09);
}
.btn-nav.btn-ghost:link, .btn-nav.btn-ghost:visited {
  color: #fff;
  border: 1px solid var(--c-accent);
}
.btn-nav.btn-ghost:hover, .btn-nav.btn-ghost:active {
  box-shadow: 0 0 30px rgba(145, 165, 255, 0.42), inset 0 0 0 rgba(145, 165, 255, 0.09);
}

a.lining {
  transition: color 0.2s;
}
a.lining::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--c-warm);
  transition: width 0.3s ease;
}
a.lining:link, a.lining:visited {
  color: var(--c-accent-soft);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}
a.lining:hover, a.lining:active {
  color: var(--c-warm);
}
a.lining:hover::before, a.lining:active::before {
  width: 100%;
}

body .cover {
  padding: 10px;
}

body .block {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(165, 178, 255, 0.13) 100%);
  border-radius: 20px;
  border: 1px solid var(--c-line);
  padding: 15px;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s ease;
}
body .box:hover {
  box-shadow: 0 0 15px rgba(175, 188, 255, 0.38);
  border: 1px solid rgba(175, 188, 255, 0.38);
}
body .accord .box {
  height: auto;
}

body .plate {
  display: flex;
  border: 1px solid var(--c-line);
  border-radius: 50px;
  padding: 2px 5px 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(165, 178, 255, 0.13) 100%);
  margin: 5px;
  align-items: center;
  transition: box-shadow 0.4s, border 0.4s, transform 0.4s ease;
}
body .plate:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(175, 188, 255, 0.38);
  border: 1px solid rgba(175, 188, 255, 0.38);
}
body .plate p {
  font-size: 90%;
  margin: 0;
}

body .icon {
  margin-right: 5px;
  color: #fff;
  font-size: 100%;
}
body .box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  text-align: center;
  padding: 5px;
  border-radius: 50px;
  background: rgba(224, 181, 106, 0.38);
  font-size: 220%;
  margin-right: 25px;
  color: #fff;
}
body .plate .icon {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  padding: 12px;
  font-size: 140%;
  border-radius: 50px;
  margin-right: 10px;
  box-shadow: 3px 3px 5px rgba(145, 165, 255, 0.26);
}
body h1 .icon {
  color: #fff;
  font-size: 100%;
}
body .wide .rel .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  padding: 12px;
  font-size: 140%;
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgba(175, 188, 255, 0.38);
}
body .wide .plain .info {
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  body .wide .plain .info {
    flex-direction: row;
  }
}
body .wide .plain .info .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  color: var(--c-warm);
  padding: 15px;
  font-size: 200%;
  border-radius: 100px;
  box-shadow: 3px 3px 5px rgba(145, 165, 255, 0.26);
}

body .ring {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
body .ring .ring-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#e8ecff 0% 0%, #4a4580 0% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), black 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), black 0);
}
body .ring .ring-border.nine-9 {
  background: conic-gradient(#e8ecff 0% 99%, #4a4580 99% 100%);
}
body .ring .ring-border.nine-8 {
  background: conic-gradient(#e8ecff 0% 98%, #4a4580 98% 100%);
}
body .ring .ring-border.nine-6 {
  background: conic-gradient(#e8ecff 0% 96%, #4a4580 96% 100%);
}
body .ring .ring-border.nine-4 {
  background: conic-gradient(#e8ecff 0% 94%, #4a4580 94% 100%);
}
body .ring .ring-border.nine-3 {
  background: conic-gradient(#e8ecff 0% 93%, #4a4580 93% 100%);
}
body .ring .ring-border.nine-2 {
  background: conic-gradient(#e8ecff 0% 92%, #4a4580 92% 100%);
}
body .ring .ring-border.nine-0 {
  background: conic-gradient(#e8ecff 0% 90%, #4a4580 90% 100%);
}
body .ring .ring-border.eight-9 {
  background: conic-gradient(#e8ecff 0% 89%, #4a4580 89% 100%);
}
body .ring .ring-border.eight-7 {
  background: conic-gradient(#e8ecff 0% 87%, #4a4580 87% 100%);
}
body .ring .rate {
  position: relative;
  text-align: center;
  font-weight: bold;
}


body header nav .collapse.navbar-collapse {
  flex: 1 1 100%;
  justify-content: flex-end;
}
@media screen and (min-width: 992px) {
  body header nav .collapse.navbar-collapse {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
  }
  body header nav .navbar-nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
    margin-left: auto !important;
  }
  body header nav .navbar-nav .nav-link {
    padding: 0.35rem 0.6rem;
  }
}


body section.blog .comparison-head-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
  padding-bottom: 0.35rem;
  scrollbar-color: rgba(145, 165, 255, 0.45) rgba(14, 12, 28, 0.4);
  scrollbar-width: thin;
}
body section.blog .comparison-head-wrap::-webkit-scrollbar {
  height: 6px;
}
body section.blog .comparison-head-wrap::-webkit-scrollbar-thumb {
  background: rgba(145, 165, 255, 0.4);
  border-radius: 6px;
}
body section.blog .head-table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  width: 100%;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-section);
  background: linear-gradient(180deg, rgba(72, 78, 140, 0.5), rgba(28, 26, 52, 0.88));
  border: 1px solid var(--c-line);
  color: #f4f6ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(4, 2, 16, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
body section.blog .head-table li {
  flex: 1 1 auto;
  min-width: 5rem;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  body section.blog .head-table {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    gap: 0.45rem 0.75rem;
    margin-bottom: 1rem;
  }
  body section.blog .head-table li {
    flex: 0 0 auto;
    min-width: 6.5rem;
    max-width: 10rem;
    text-align: center;
    font-size: 0.62rem;
    line-height: 1.25;
  }
}


body section.blog .brand {
  position: relative;
  border-radius: calc(var(--radius-section) + 4px);
  background: linear-gradient(145deg, rgba(40, 38, 72, 0.55) 0%, rgba(20, 18, 38, 0.82) 55%, rgba(14, 12, 28, 0.88) 100%);
  border: 1px solid var(--c-line);
  box-shadow: 0 16px 48px rgba(4, 2, 18, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  margin-bottom: 1.35rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
body section.blog .brand::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(120% 70% at 10% -20%, rgba(145, 165, 255, 0.16), transparent 55%);
  opacity: 0.9;
}
body section.blog .brand:hover {
  border-color: rgba(195, 205, 255, 0.45);
  box-shadow: 0 22px 56px rgba(4, 2, 24, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: translateY(-2px);
}
body section.blog .brand > .row {
  position: relative;
  z-index: 1;
  --brand-divider: rgba(255, 255, 255, 0.08);
}
body section.blog .brand .brand-col {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  body section.blog .brand .brand-col:not(.brand-col-foot) {
    border-bottom: 1px solid var(--brand-divider);
  }
}
@media screen and (min-width: 992px) {
  body section.blog .brand .brand-col-lead {
    border-right: 1px solid var(--brand-divider);
  }
  body section.blog .brand .brand-col-body {
    border-right: 1px solid var(--brand-divider);
  }
}
body section.blog .brand .brand-col-lead {
  background: linear-gradient(180deg, rgba(55, 52, 95, 0.35) 0%, rgba(22, 20, 42, 0.5) 100%);
}
body section.blog .brand .brand-col-score,
body section.blog .brand .brand-col-pay {
  justify-content: center;
}
body section.blog .brand .logo {
  padding: 1.15rem 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
body section.blog .brand .logo figure {
  margin: 0;
  max-width: 220px;
}
body section.blog .brand .logo img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}
body section.blog .brand .promo {
  margin: 0 1rem 0.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--c-text);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
body section.blog .brand .links {
  margin-top: auto;
  padding: 0 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  border: none;
  background: transparent;
}
body section.blog .brand .links .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  text-align: center;
  text-decoration: none;
}
body section.blog .brand .links .btn-ghost {
  color: #f4f6ff !important;
  border: 1px solid rgba(200, 210, 255, 0.65) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-weight: 600;
}
body section.blog .brand .links .btn-ghost:hover,
body section.blog .brand .links .btn-ghost:active {
  color: var(--c-ink) !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--c-warm), var(--c-warm-hot)) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
body section.blog .brand .links .btn-full {
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #3a3568, var(--c-warm));
  color: #f8f9ff !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
body section.blog .brand .links .btn-full:hover {
  filter: brightness(1.06);
  color: var(--c-ink) !important;
}
body section.blog .brand .brand-secondary-link {
  font-size: 0.8rem;
  text-align: center;
  color: var(--c-accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
body section.blog .brand .brand-secondary-link:hover {
  color: var(--c-warm);
}
body section.blog .brand .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.1rem;
  text-align: left;
  margin: 0;
  min-height: 100%;
}
body section.blog .brand .list h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #f4f6ff;
}
body section.blog .brand .list p {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
  color: var(--c-text-muted);
}
body section.blog .brand .list ul {
  padding-left: 0;
  margin: 0;
}
body section.blog .brand .list ul li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--c-text-muted);
}
body section.blog .brand .list ul li::before {
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  background: var(--c-accent-soft);
}
body section.blog .brand .grade {
  padding: 1rem 0.65rem;
  min-height: 11rem;
  background: rgba(8, 6, 22, 0.22);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  body section.blog .brand .grade {
    border-left: 1px solid var(--brand-divider);
    border-right: 1px solid var(--brand-divider);
  }
}
body section.blog .brand .votes-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
body section.blog .brand .votes-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--c-text-muted);
  text-align: center;
  max-width: 8rem;
}
body section.blog .brand .votes-count {
  font-weight: 700;
  color: var(--c-accent-soft);
}
body section.blog .brand .rate .value {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
body section.blog .brand .ring .ring-border {
  filter: drop-shadow(0 0 10px rgba(190, 205, 255, 0.55)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.25));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), black 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 12px), black 0);
}
body section.blog .brand .payment {
  height: 100%;
  min-height: 10rem;
  padding: 0.85rem 0.65rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 28, 0.45);
  border: 1px solid rgba(145, 165, 255, 0.22);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body section.blog .brand .payment .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
body section.blog .brand .payment ul.info li::before {
  display: none !important;
  content: none !important;
}
body section.blog .brand .payment .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body section.blog .brand .payment .info figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 8px;
  width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  max-height: none;
}
body section.blog .brand .payment .info img {
  max-width: 100%;
  max-height: 28px;
  width: auto;
  object-fit: contain;
}
body section.blog .brand .payment p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--c-text-muted);
  text-align: center;
}
body section.blog .brand .brand-col-foot .message {
  margin: 0;
  width: 100%;
}
body section.blog .brand .message {
  padding: 0.65rem 1rem;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.28);
  border: none;
  border-top: 1px solid var(--brand-divider);
  text-align: center;
}
body section.blog .brand .message p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--c-text-muted);
}


body section .section table,
body section .cover table {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(20, 18, 38, 0.65);
  border: 1px solid var(--c-line);
  box-shadow: 0 12px 36px rgba(4, 2, 16, 0.42);
}
body section .section table thead th,
body section .cover table thead th,
body section .section table tfoot th,
body section .cover table tfoot th {
  background: linear-gradient(180deg, rgba(88, 96, 168, 0.75) 0%, rgba(52, 56, 112, 0.7) 100%);
  color: #f6f7ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  padding: 0.85rem 1rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body section .section table tbody td,
body section .cover table tbody td {
  padding: 0.75rem 1rem;
  color: var(--c-text);
  background: rgba(16, 14, 32, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
body section .section table tbody tr:nth-child(even) td,
body section .cover table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
body section .section .table,
body section .cover .table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--c-text-muted);
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.04);
  --bs-table-hover-bg: rgba(145, 165, 255, 0.08);
  margin-bottom: 1rem;
  color: var(--c-text-muted);
}
body section .section .table > :not(caption) > * > *,
body section .cover .table > :not(caption) > * > * {
  color: inherit;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
body section .section .table thead th,
body section .cover .table thead th {
  background: linear-gradient(180deg, rgba(88, 96, 168, 0.85), rgba(52, 56, 112, 0.75)) !important;
  color: #f6f7ff !important;
}
body .section figure.wp-block-table {
  margin: 1.25rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
body .section figure.wp-block-table table {
  margin: 0;
  min-width: min(100%, 520px);
}


body section.accord .accordion .accordion-button {
  color: #f4f6ff !important;
  font-weight: 600;
  letter-spacing: 0.03em;
}
body section.accord .accordion .accordion-button:not(.collapsed) {
  background: rgba(145, 165, 255, 0.08);
}
body section.accord .accordion .accordion-body {
  line-height: 1.55;
}


body section.wide .section ul.info.no-style {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.85rem 1.15rem;
  padding: 0;
  margin-top: 1.75rem;
}
body section.wide .section ul.info.no-style li.plate {
  flex: 1 1 210px;
  max-width: 22rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(22, 20, 42, 0.62);
  border: 1px solid var(--c-line);
  box-shadow: 0 10px 32px rgba(4, 2, 16, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin: 0;
}
body section.wide .section ul.info .plate .icon {
  flex-shrink: 0;
  width: 3.35rem !important;
  height: 3.35rem !important;
  min-width: 3.35rem;
  margin-right: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem !important;
  border-radius: 14px !important;
  background: rgba(224, 181, 106, 0.3) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body section.wide .section ul.info .plate p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
  color: var(--c-text);
}


body section.container-fluid.flex .section > h2.title {
  margin: 0 0 0.85rem;
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--c-accent);
}
body section.container-fluid.flex .section > h2.title strong {
  color: var(--c-accent-soft);
  font-weight: 800;
}
body section.container-fluid.flex .section > p:empty {
  display: none;
}
body section.container-fluid.flex .section > p {
  max-width: 52rem;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}
body section.container-fluid.flex .section > .col-md-12 > .row {
  margin-top: 0.25rem;
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
}
body section.container-fluid.flex .section .row > .col-lg-6.mx-auto {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body section.container-fluid.flex .section .block {
  position: relative;
  height: 100%;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.55rem 1.5rem;
  border-radius: calc(var(--radius-section) + 2px);
  background: linear-gradient(165deg, rgba(38, 36, 68, 0.48) 0%, rgba(18, 16, 34, 0.78) 100%);
  border: 1px solid var(--c-line);
  box-shadow: 0 14px 44px rgba(4, 2, 18, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.2s ease;
}
body section.container-fluid.flex .section .block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(180, 195, 255, 0.55), rgba(224, 181, 106, 0.45), transparent);
  opacity: 0.85;
  pointer-events: none;
}
body section.container-fluid.flex .section .block:hover {
  border-color: rgba(200, 210, 255, 0.38);
  box-shadow: 0 18px 52px rgba(4, 2, 22, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: translateY(-3px);
}
body section.container-fluid.flex .section .block h3 {
  margin: 0 0 0.35rem;
  padding: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #f6f7ff;
}
body section.container-fluid.flex .section .block h2.sub-title {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--c-accent-soft);
  border: none;
}
body section.container-fluid.flex .section .block > .icon {
  margin-bottom: 0.65rem;
}
body section.container-fluid.flex .section .block > p {
  flex: 1 1 auto;
  margin: 0 0 0.65rem;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--c-text-muted);
}
body section.container-fluid.flex .section .block > p:empty {
  display: none;
}
body section.container-fluid.flex .section .block p p {
  margin: 0 0 0.75rem;
}
body section.container-fluid.flex .section .block p p:last-child {
  margin-bottom: 0;
}
body section.container-fluid.flex .section .block figure {
  margin: 0 0 1rem;
  border-radius: 12px;
  overflow: hidden;
}
body section.container-fluid.flex .section .block .button {
  margin-top: auto;
  padding-top: 1.1rem;
}
body section.container-fluid.flex .section .block .button .btn.btn-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.68rem 1.25rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f8f9ff !important;
  background: linear-gradient(135deg, #4a4680 0%, #3a3568 40%, var(--c-warm) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 24px rgba(145, 165, 255, 0.18);
  transition: filter 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
body section.container-fluid.flex .section .block .button .btn.btn-full:hover {
  filter: brightness(1.12);
  color: var(--c-ink) !important;
  transform: translateY(-2px);
}


body section.container-fluid.wide .section h1.title {
  position: relative;
  margin: 0 0 1.1rem;
  padding-bottom: 1rem;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  color: #f7f8ff;
}
body section.container-fluid.wide .section h1.title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-accent-soft), var(--c-warm));
  opacity: 0.95;
}
body section.container-fluid.wide .section .col-md-12.mx-auto.mt-5 > h2 {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent-soft);
}
body section.container-fluid.wide .section .col-md-12.mx-auto.mt-5 > p {
  max-width: 46rem;
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--c-text-muted);
}
body section.container-fluid.wide .section .col-md-12.mx-auto.mt-5 .button {
  margin-top: 1.35rem;
}
body section.container-fluid.wide .section .col-md-12.mx-auto.mt-5 .button .btn.btn-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8f9ff !important;
  background: linear-gradient(135deg, #4a4680 0%, #3a3568 45%, var(--c-warm) 100%);
  border: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}


body section.container-fluid.sender .section > h2 {
  margin: 0 0 1rem;
  padding-bottom: 0.9rem;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #f5f7ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body section.container-fluid.sender .section > p {
  max-width: 44rem;
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}
body section.container-fluid.sender .section > ul.info {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
body section.container-fluid.sender .section > ul.info > li.item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border-radius: var(--radius-section);
  background: linear-gradient(160deg, rgba(42, 40, 72, 0.45) 0%, rgba(18, 16, 34, 0.72) 100%);
  border: 1px solid var(--c-line);
  box-shadow: 0 10px 32px rgba(4, 2, 16, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body section.container-fluid.sender .section > ul.info > li.item::before {
  display: none !important;
  content: none !important;
}
body section.container-fluid.sender ul.info .item .icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 12px;
  font-size: 1.25rem;
  color: #f4f6ff;
  background: rgba(224, 181, 106, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}
body section.container-fluid.sender ul.info .item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-accent-soft);
}
body section.container-fluid.sender ul.info .item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--c-text);
}
body section.container-fluid.sender .block.p-4 {
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.6rem 1.65rem !important;
  border-radius: calc(var(--radius-section) + 2px);
  background: linear-gradient(165deg, rgba(36, 34, 62, 0.6) 0%, rgba(14, 12, 28, 0.85) 100%);
  border: 1px solid var(--c-line);
  box-shadow: 0 16px 48px rgba(4, 2, 18, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body section.container-fluid.sender .block.p-4 h1.h4 {
  margin-bottom: 1.25rem !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4f6ff !important;
}
body section.container-fluid.sender .form-label {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e8ebff;
}
body section.container-fluid.sender .form-control {
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  color: #f4f6ff;
  background: rgba(8, 6, 20, 0.55);
  border: 1px solid rgba(160, 175, 255, 0.28);
  border-radius: 10px;
}
body section.container-fluid.sender .form-control::placeholder {
  color: rgba(190, 200, 235, 0.45);
}
body section.container-fluid.sender .form-control:focus {
  border-color: rgba(200, 210, 255, 0.55);
  background: rgba(12, 10, 26, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(130, 150, 255, 0.22);
  color: #fff;
}
body section.container-fluid.sender textarea.form-control {
  min-height: 8rem;
}
body section.container-fluid.sender .form-text {
  color: rgba(190, 198, 230, 0.65);
  font-size: 0.78rem;
}
body section.container-fluid.sender .form-check-label {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--c-text-muted);
}
body section.container-fluid.sender .form-check-label a {
  color: var(--c-accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
body section.container-fluid.sender .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  border-color: rgba(180, 195, 255, 0.45);
  background-color: rgba(8, 6, 20, 0.6);
}
body section.container-fluid.sender .form-check-input:checked {
  background-color: var(--c-warm);
  border-color: rgba(0, 0, 0, 0.2);
}

body section .section button.btn.btn-full,
body section .section .d-grid > button.btn.btn-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.35rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #f8f9ff !important;
  background: linear-gradient(135deg, #4a4680 0%, #3a3568 40%, var(--c-warm) 100%) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42), 0 0 28px rgba(145, 165, 255, 0.15);
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
body section .section button.btn.btn-full:hover,
body section .section .d-grid > button.btn.btn-full:hover {
  filter: brightness(1.1);
  color: var(--c-ink) !important;
  transform: translateY(-2px);
}
body section.container-fluid.sender .alert.alert-success {
  background: rgba(34, 160, 90, 0.2);
  border: 1px solid rgba(80, 220, 140, 0.45);
  color: #d4ffe8;
  border-radius: 10px;
}


