:root {
  --bg0: #000;
  --bg1: #000;
  --card: rgba(255, 255, 255, .04);
  --card2: rgba(255, 255, 255, .02);
  --stroke: rgba(255, 255, 255, .14);
  --text: #fff;
  --muted: rgba(255, 255, 255, .72);
  --accent: #00d2ff;
  --accent-glow: rgba(0, 210, 255, 0.4);
  --accent2: #fff;
  --ok: #fff;
  --shadow: none;
  --radius: 14px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #000;
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none
}

.hidden {
  display: none !important
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(15, 20, 30, 0.4) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: -1;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: none;
  background: rgba(0, 0, 0, .92);
  border-bottom: 1px solid var(--stroke);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .4px
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.brand__logo {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.brand__text {
  font-size: 15px
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center
}

.nav__link {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px
}

.nav__link:hover {
  color: var(--text);
  background: transparent
}

.nav__link.is-active {
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  text-decoration: none;
}

.nav__link.is-active:hover {
  background: #fff
}

.navToggle {
  display: none
}

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .03);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  user-select: none;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.btn:active {
  transform: translateY(0px) scale(0.98);
}

.btn--primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn--ghost {
  background: transparent
}

.hero {
  padding: 58px 0 30px
}

.hero--center {
  padding-top: 64px
}

.hero--center .container {
  text-align: center
}

.hero--center .hero__subtitle {
  margin-inline: auto
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .02);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
}

.hero__title {
  margin: 16px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--text);
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 56ch;
}

.em {
  color: var(--text);
  font-weight: 700
}

.hero__cta {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .02);
  border-radius: 16px;
  padding: 12px;
}

.stat__value {
  font-weight: 800
}

.stat__label {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin-top: 4px
}

.hero__card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .03);
  box-shadow: none;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: none;
  pointer-events: none;
}

.profile {
  position: relative
}

.profile__top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--stroke);
  overflow: hidden;
  font-weight: 900;
}

.avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.profile__name {
  font-weight: 900
}

.profile__tag {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin-top: 3px
}

.profile__box {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .02);
  border-radius: 16px;
  padding: 12px;
}

.profile__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0
}

.profile__row+.profile__row {
  border-top: 1px solid var(--stroke)
}

.muted {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 800
}

.social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.social__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .02);
  font-weight: 800;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.social__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .04)
}

.icon {
  width: 18px;
  height: 18px;
  color: var(--text)
}

.social__text {
  font-size: 14px
}

.note {
  height: 18px;
  margin-top: 10px;
  color: var(--ok);
  font-weight: 800;
  font-size: 13px;
}

.downloadHelp {
  min-height: 18px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.section {
  padding: 34px 0
}

.section[hidden] {
  display: none
}

.section__head {
  margin-bottom: 16px
}

.section__title {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.3px
}

.section__desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

@media (max-width: 800px) {

  .grid3,
  .grid2 {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .03);
  padding: 16px;
}

.card--big {
  padding: 18px
}

.card__title {
  font-weight: 900;
  margin-bottom: 8px
}

.card__body {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6
}

.buyCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 220px;
}

.buyCard--premium {
  position: relative;
  overflow: hidden;
  padding: 46px 16px 16px;
  min-height: 0;
  gap: 10px;
  border-color: rgba(255, 255, 255, .35);
  background: radial-gradient(900px 240px at 20% -10%, rgba(155, 210, 255, .22), rgba(0, 0, 0, 0) 60%),
    radial-gradient(900px 260px at 80% 0%, rgba(210, 155, 255, .18), rgba(0, 0, 0, 0) 58%),
    rgba(255, 255, 255, .03);
}

.buyCard--premium .discountPill {
  position: absolute;
  top: 14px;
  left: 14px;
  margin: 0;
}

.buyCard--premium .buyCard__price {
  font-size: 44px;
  line-height: 1
}

.buyCard--premium .buyCard__sub,
.buyCard--premium .buyCard__next,
.buyCard--premium .buyCard__note {
  font-size: 12px
}

.buyCard--premium::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  padding: 2px;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, .95),
      rgba(154, 200, 255, .85),
      rgba(210, 155, 255, .85),
      rgba(255, 255, 255, .95));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .9;
  pointer-events: none;
}

.buyCard--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px 160px at var(--mx, 30%) var(--my, 30%), rgba(255, 255, 255, .16), rgba(0, 0, 0, 0) 60%),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-20%);
  animation: buyCardShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

.buyCard--premium:hover {
  transform: translateY(-1px)
}

@keyframes buyCardShimmer {
  0% {
    transform: translateX(-40%)
  }

  50% {
    transform: translateX(0%)
  }

  100% {
    transform: translateX(40%)
  }
}

@media (prefers-reduced-motion: reduce) {
  .buyCard--premium::after {
    animation: none
  }
}

.discountPill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.2px;
}

.buyCard__price {
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.5px
}

.buyCard__priceNow {
  display: inline-block
}

.buyCard__priceWas {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-weight: 900;
  font-size: 18px;
  text-decoration: line-through;
  opacity: .9;
}

.buyCard__sub {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px
}

.buyCard__next {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  text-align: center
}

.buyCard__nextPrice {
  color: var(--text)
}

.buyCard__note {
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
  text-align: center
}

.buyCard__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.buyCounter {
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-align: center;
}

.list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-weight: 700
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4
}

.list--ordered {
  list-style: decimal;
  padding-left: 18px
}

.list--ordered li {
  display: list-item
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  margin-top: 4px;
  flex: 0 0 auto;
}

.cta {
  margin-top: 14px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .03);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.soloAction {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.cta__title {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 4px
}

.cta__desc {
  color: var(--muted);
  font-weight: 700
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.footer {
  padding: 22px 0;
  border-top: 1px solid var(--stroke);
  background: rgba(0, 0, 0, .92);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 700
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .header__inner {
    flex-wrap: wrap
  }

  .nav {
    width: 100%;
    order: 3;
    justify-content: center
  }

  .header__actions {
    order: 2;
    width: 100%;
    justify-content: flex-end
  }

  .soloAction {
    justify-content: stretch
  }

  .soloAction .btn {
    width: 100%
  }

  .hero {
    padding-top: 34px
  }

  .hero__stats {
    grid-template-columns: 1fr
  }

  .grid3 {
    grid-template-columns: 1fr
  }

  .grid2 {
    grid-template-columns: 1fr
  }

  .footer__inner {
    flex-direction: column
  }
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid rgba(255, 255, 255, .85);
  outline-offset: 2px;
}

.previewPlaceholder {
  height: 340px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
}

.previewFrame {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.previewFrame--cta {
  position: relative;
}

.previewOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  transition: opacity .14s ease;
  pointer-events: none;
}

.previewOverlay .btn {
  pointer-events: auto;
}

.previewFrame--cta:hover .previewOverlay,
.previewFrame--cta:focus-within .previewOverlay {
  opacity: 1;
}

.previewFrame--cta:hover .previewImg,
.previewFrame--cta:focus-within .previewImg {
  filter: blur(1.4px);
}

.previewCaption {
  color: var(--text);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.3px;
  margin: 10px 0 12px;
}

.previewImg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.discordHero {
  display: grid;
  gap: 12px
}

.discordHero--premium {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(110, 170, 255, .22);
  padding: 16px;
  background: radial-gradient(900px 260px at 15% -10%, rgba(35, 120, 255, .22), rgba(0, 0, 0, 0) 60%),
    radial-gradient(900px 280px at 85% 0%, rgba(20, 70, 200, .18), rgba(0, 0, 0, 0) 58%),
    rgba(255, 255, 255, .02);
}

.discordHero--premium>* {
  position: relative;
  z-index: 1
}

.discordHero--premium::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 6px);
  padding: 2px;
  background: linear-gradient(120deg,
      rgba(210, 235, 255, .92),
      rgba(90, 160, 255, .85),
      rgba(40, 120, 255, .75),
      rgba(210, 235, 255, .92));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .85;
  pointer-events: none;
}

.discordHero--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(260px 170px at var(--mx, 30%) var(--my, 30%), rgba(120, 190, 255, .16), rgba(0, 0, 0, 0) 65%),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(130, 200, 255, .08) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-20%);
  animation: discordShimmer 3.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes discordShimmer {
  0% {
    transform: translateX(-40%)
  }

  50% {
    transform: translateX(0%)
  }

  100% {
    transform: translateX(40%)
  }
}

@media (prefers-reduced-motion: reduce) {
  .discordHero--premium::after {
    animation: none
  }
}

.discordHero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.discordHero__title {
  display: flex;
  align-items: center;
  gap: 12px
}

.discordHero__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--stroke)
}

.discordHero__heading {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1
}

.discordHero__sub {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700
}

.discordHero__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid #fff;
  background: #fff;
  display: grid;
  place-items: center
}

.discordIconImg {
  width: 22px;
  height: 22px;
  display: block
}

.discordStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.discordStat {
  border-radius: 16px;
  border: 1px solid rgba(110, 170, 255, .18);
  background: rgba(10, 18, 34, .40);
  padding: 12px
}

.discordStat__kicker {
  color: rgba(170, 215, 255, .9);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.2px
}

.discordStat__value {
  margin-top: 4px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.4px
}

.discordGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.discordCard__head {
  display: flex;
  align-items: center;
  gap: 10px
}

.iconBadge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .03);
  display: grid;
  place-items: center;
  color: var(--text)
}

.iconBadge svg {
  width: 18px;
  height: 18px
}

.discordHero--premium .card {
  background: rgba(10, 18, 34, .35);
  border-color: rgba(110, 170, 255, .16)
}

.discordHero--premium .iconBadge {
  border-color: rgba(110, 170, 255, .22);
  background: rgba(35, 120, 255, .10);
  color: rgba(220, 240, 255, .95)
}

.discordHero--premium .discordHero__sub {
  color: rgba(200, 230, 255, .78)
}

.discordCta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .02)
}

.discordCta__title {
  font-weight: 900;
  font-size: 16px
}

.discordCta__sub {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700
}

.discordHero--premium .discordCta {
  border-color: rgba(110, 170, 255, .20);
  background: rgba(10, 18, 34, .28)
}

.discordHero--premium .discordCta__sub {
  color: rgba(200, 230, 255, .72)
}

.menuWrap {
  position: relative
}

.menuPanel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(260px, calc(100vw - 40px));
  padding: 10px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .96);
  display: grid;
  gap: 8px;
  z-index: 50
}

.menuPanel[hidden] {
  display: none
}

.menuItem {
  display: flex;
  width: 100%;
  text-align: left;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .03)
}

.menuItem:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06)
}

.menuItem.is-active {
  color: #000;
  background: #fff;
  border: 1px solid #fff
}

@media (max-width: 780px) {
  .discordHero__top {
    align-items: flex-start
  }

  .discordGrid {
    grid-template-columns: 1fr
  }

  .discordStats {
    grid-template-columns: 1fr
  }

  .discordCta {
    flex-direction: column;
    align-items: stretch
  }

  .discordCta__right .btn {
    width: 100%
  }
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.overlay[hidden] {
  display: none;
}

.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 0;
}

.overlay__panel {
  position: relative;
  width: min(860px, 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: #000;
  padding: 18px;
  z-index: 1;
}

.overlay__panel--download {
  width: min(980px, 100%);
  max-height: min(82vh, 760px);
  display: flex;
  flex-direction: column;
}

.overlay__panel--download .overlay__body {
  display: grid;
  gap: 12px;
}

.downloadOverlay__hint {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}

.downloadOverlay__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.downloadOverlay__frameWrap {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .02);
  height: min(56vh, 540px);
}

.downloadOverlay__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.overlay__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--stroke);
}

.overlay__title {
  display: flex;
  gap: 12px;
  align-items: center
}

.overlay__logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--stroke)
}

.overlay__heading {
  font-weight: 900;
  font-size: 18px
}

.overlay__sub {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px
}

.overlay__body {
  padding-top: 14px
}

@media (max-width: 780px) {
  .overlay {
    padding: 14px
  }

  .overlay__panel {
    padding: 14px
  }
}

/* --- AI Terminal 2026 / Living Discord Card --- */

.discord-living-card {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 210, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
}

.discord-living-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(0, 210, 255, 0.4);
}

.discord-avatar-cloud {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-avatar {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 210, 255, 0.4);
  opacity: 0.8;
  filter: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatUp var(--duration, 20s) linear infinite;
  animation-delay: var(--delay, 0s);
  bottom: -100px;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
  will-change: transform;
}

.discord-living-card:hover .floating-avatar {
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
  z-index: 10;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(var(--drift, 0px)) rotate(0deg);
  }

  100% {
    transform: translateY(-120vh) translateX(calc(var(--drift, 0px) * 1.5)) rotate(360deg);
  }
}

.glitch-container {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: radial-gradient(circle at center, rgba(0, 5, 10, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
}

@media (max-width: 600px) {
  .glitch-container {
    padding: 30px 20px;
  }
}

.discord-living-card:hover .glitch-container {
  background: radial-gradient(circle at center, rgba(0, 5, 10, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.glitch-title {
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 4px;
  position: relative;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(0, 900px, 0, 0);
}

.glitch-title::before {
  left: 2px;
  text-shadow: -2px 0 var(--accent);
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch-title::after {
  left: -2px;
  text-shadow: -2px 0 #ff00ff;
  animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(44px, 9999px, 56px, 0);
  }

  20% {
    clip: rect(12px, 9999px, 88px, 0);
  }

  40% {
    clip: rect(67px, 9999px, 23px, 0);
  }

  60% {
    clip: rect(91px, 9999px, 11px, 0);
  }

  80% {
    clip: rect(2px, 9999px, 64px, 0);
  }

  100% {
    clip: rect(48px, 9999px, 33px, 0);
  }
}

@keyframes glitch-anim2 {
  0% {
    clip: rect(14px, 9999px, 76px, 0);
  }

  20% {
    clip: rect(82px, 9999px, 38px, 0);
  }

  40% {
    clip: rect(27px, 9999px, 93px, 0);
  }

  60% {
    clip: rect(51px, 9999px, 5px, 0);
  }

  80% {
    clip: rect(62px, 9999px, 84px, 0);
  }

  100% {
    clip: rect(18px, 9999px, 43px, 0);
  }
}

.terminal-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.terminal-btn {
  background: rgba(0, 210, 255, 0.05);
  border: 1px solid rgba(0, 210, 255, 0.3);
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Mono', monospace;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terminal-btn:hover {
  background: rgba(0, 210, 255, 0.2);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.terminal-btn svg {
  width: 18px;
  height: 18px;
}

.terminal-status {
  font-family: 'Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  margin-top: 20px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Elite VIP Section --- */

.elite-members-container {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(20, 15, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
  transition: all 0.4s ease;
}

.elite-members-container:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.1);
}

.elite-title-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.elite-badge {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.elite-badge svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.elite-label {
  font-family: 'Mono', monospace;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffd700;
  text-transform: uppercase;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.elite-member-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 600px) {
  .elite-member-row {
    justify-content: center;
    gap: 15px;
  }
}

.elite-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  min-width: 80px;
}

.elite-card:hover {
  transform: translateY(-5px) scale(1.05);
}

.elite-avatar-wrapper {
  position: relative;
  padding: 3px;
  background: linear-gradient(45deg, #ffd700, transparent, #ff8c00);
  border-radius: 50%;
  animation: rotateBorder 4s linear infinite;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

@keyframes rotateBorder {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.elite-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #000;
  background-size: cover;
  background-position: center;
  background-color: #111;
}

.elite-name {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  font-family: 'Mono', monospace;
  text-transform: uppercase;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.elite-category-title {
  font-family: 'Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: fit-content;
}

.premium-label {
  color: var(--accent);
}

.premium-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  min-width: 80px;
}

.premium-card:hover {
  transform: translateY(-5px) scale(1.05);
}

.premium-avatar-wrapper {
  position: relative;
  padding: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.premium-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #000;
  background-size: cover;
  background-position: center;
  background-color: #111;
}

.premium-name {
  font-size: 9px;
  font-weight: 800;
  color: #ccc;
  font-family: 'Mono', monospace;
  text-transform: uppercase;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium-tag {
  font-size: 7px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent);
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid rgba(0, 210, 255, 0.3);
  font-weight: 900;
  letter-spacing: 1px;
}

.elite-tag {
  font-size: 8px;
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  font-weight: 900;
  letter-spacing: 1px;
}

.terminal-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* --- Elite Network Styles --- */

/* Neutralized for Twin Card Symmetry */
#eliteSection {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  overflow: visible;
}

#eliteSection::before {
  display: none;
}

.elite-members-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.elite-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.elite-badge {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.elite-badge svg {
  width: 16px;
  height: 16px;
}

.elite-label {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.3px;
}

.elite-category-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Separator line */
}

.elite-member-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* User Card Styles */
.elite-card,
.premium-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 6px 12px 6px 6px;
  /* p-left is smaller for avatar */
  transition: all 0.2s ease;
}

.elite-card:hover,
.premium-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Elite Specifics (Gold/White Glow) */
.elite-card {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.elite-card:hover {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.elite-avatar-wrapper,
.premium-avatar-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
}

.elite-avatar,
.premium-avatar {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.elite-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #00d2ff;
  /* Online color or premium color */
  border: 2px solid #000;
  border-radius: 50%;
}

.elite-name,
.premium-name {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.elite-card .elite-name {
  color: #fff;
}

.premium-card .premium-name {
  color: #e0e0e0;
}

/* --- Elite Network Floating Styles --- */
/* --- Twin Card System (For Premium Members & Paid UI Preview) --- */
.glass-card-parent {
  display: flex !important;
  flex-direction: column !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 16px !important;
  height: 380px !important;
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.previewCaption {
  margin: 0 0 16px 0 !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  /* Made bigger as requested */
  color: #fff !important;
  text-align: left !important;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: -0.5px !important;
}

.inner-content-box {
  height: 300px !important;
  /* Fixed height to match exactly */
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6) !important;
}

/* Dynamically handled via script.js */
.inner-content-box::before,
.inner-content-box::after {
  display: none !important;
}

.elite-members-container {
  display: none;
  /* Initially hidden, script shows it */
}

#eliteGroup,
#premiumGroup {
  display: none !important;
  /* Hide old grid containers */
}

/* We will reuse #avatarCloud styling logic but with Elite specifics */
.elite-float-canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Blur gradient overlay at top and bottom edges */
.elite-members-container::before,
.elite-members-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 20;
  pointer-events: none;
}

.elite-members-container::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
}

.elite-members-container::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
}

.elite-floating-avatar {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 2px solid #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.elite-floating-avatar:hover {
  transform: scale(1.2);
  z-index: 100;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.4);
}

.elite-tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #ffd700;
  color: #ffd700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.elite-floating-avatar:hover .elite-tooltip {
  opacity: 1;
}