@property --wx {
  syntax: '<length>';
  inherits: false;
  initial-value: 0px
}

@property --wy {
  syntax: '<length>';
  inherits: false;
  initial-value: 0px
}

@property --wr {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --ink: #0a0a0a;
  --w: #fff;
  --dim: rgba(255, 255, 255, .4);
  --glass: rgba(255, 255, 255, .04);
  --edge: rgba(255, 255, 255, .08);
  --lime: #c8ff00;
  --card-bg: rgba(255,255,255,.03);
  --card-border: rgba(255,255,255,.06);
  --profile-effect-image:
    url("https://raw.githubusercontent.com/shreeyanshbisht31-lab/gif/main/a8de8ea2-f05c-45eb-965d-c69aaf27de93-Photoroom.png"),
    url("https://raw.githubusercontent.com/shreeyanshbisht31-lab/gif/main/8ea8264c-b768-4df5-98ab-5ba95f2e457a-Photoroom.png");
  --avatar-decoration-image: url("https://cdn.discordapp.com/avatar-decoration-presets/a_82e4df4028396ad5ccaaafb397fa6248.png?size=240&passthrough=true");
  --profile-effect-opacity: 1;
  --profile-effect-blend-mode: normal;
  --profile-effect-layer-blend-mode: normal, normal
}

body.light {
  --ink: #f5f5f7;
  --w: #1a1a1a;
  --dim: rgba(0, 0, 0, .45);
  --glass: rgba(0, 0, 0, .03);
  --edge: rgba(0, 0, 0, .1);
  --card-bg: rgba(0,0,0,.02);
  --card-border: rgba(0,0,0,.08)
}

/* ══ THEME TOGGLE (Modified for copyright safety) ══ */
.theme-switch {
  --toggle-size: 12px;
  --container-width: 5.625em;
  --container-height: 2.5em;
  --container-radius: 6.25em;
  --container-light-bg: #4088c2;
  --container-night-bg: #161824;
  --circle-container-diameter: 3.375em;
  --sun-moon-diameter: 2.125em;
  --sun-bg: #f4cc33;
  --moon-bg: #c9ced6;
  --spot-color: #8c95a8;
  --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height))/2 * -1);
  --stars-color: #f8f8f8;
  --clouds-color: #f7feff;
  --back-clouds-color: #a3c4d8;
  --transition: 0.5s cubic-bezier(0,-0.02,0.4,1.25);
  --circle-transition: 0.3s cubic-bezier(0,-0.02,0.35,1.17);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: var(--toggle-size);
}
.theme-switch * { box-sizing: border-box; }
.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0em -0.05em 0.06em rgba(0,0,0,0.2), 0em 0.06em 0.1em rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}
.theme-switch__container::before {
  content: ""; position: absolute; z-index: 1; inset: 0;
  box-shadow: 0em 0.05em 0.15em rgba(0,0,0,0.25) inset; border-radius: var(--container-radius);
}
.theme-switch__checkbox { display: none; }
.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255,255,255,0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  box-shadow: inset 0 0 0 3.3em rgba(255,255,255,0.1), 0 0 0 0.6em rgba(255,255,255,0.1), 0 0 0 1.2em rgba(255,255,255,0.1);
  display: flex; transition: var(--circle-transition); pointer-events: none;
}
.theme-switch__sun-moon-container {
  pointer-events: auto; position: relative; z-index: 2;
  width: var(--sun-moon-diameter); height: var(--sun-moon-diameter);
  margin: auto; border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  box-shadow: 0.06em 0.06em 0.06em 0em rgba(255,255,240,0.6) inset, 0em -0.06em 0.06em 0em #9a8025 inset;
  filter: drop-shadow(0.06em 0.1em 0.1em rgba(0,0,0,0.2));
  overflow: hidden; transition: var(--transition);
}
.theme-switch__moon {
  transform: translateX(100%); width: 100%; height: 100%;
  background-color: var(--moon-bg); border-radius: inherit;
  box-shadow: 0.06em 0.06em 0.06em 0em rgba(255,255,240,0.6) inset, 0em -0.06em 0.06em 0em #8c8c8c inset;
  transition: var(--transition); position: relative;
}
.theme-switch__spot {
  position: absolute; top: 0.7em; left: 0.3em; width: 0.7em; height: 0.7em;
  border-radius: var(--container-radius); background-color: var(--spot-color);
  box-shadow: 0em 0.03em 0.06em rgba(0,0,0,0.25) inset;
}
.theme-switch__spot:nth-of-type(2) { width: 0.35em; height: 0.35em; top: 0.9em; left: 1.3em; }
.theme-switch__spot:nth-last-of-type(3) { width: 0.25em; height: 0.25em; top: 0.3em; left: 0.8em; }
.theme-switch__clouds {
  width: 1.25em; height: 1.25em; background-color: var(--clouds-color);
  border-radius: var(--container-radius); position: absolute; bottom: -0.6em; left: 0.3em;
  box-shadow: 0.9em 0.3em var(--clouds-color), -0.3em -0.3em var(--back-clouds-color), 1.4em 0.3em var(--clouds-color), 0.5em -0.1em var(--back-clouds-color), 2.1em 0 var(--clouds-color), 1.2em -0.06em var(--back-clouds-color), 2.9em 0.3em var(--clouds-color), 2em -0.3em var(--back-clouds-color), 3.6em -0.06em var(--clouds-color), 2.6em 0em var(--back-clouds-color), 4.5em -0.3em var(--clouds-color), 3.3em -0.4em var(--back-clouds-color), 4.6em -1.7em 0 0.4em var(--clouds-color), 4em -0.6em var(--back-clouds-color), 4.1em -2.1em 0 0.4em var(--back-clouds-color);
  transition: 0.5s cubic-bezier(0,-0.02,0.4,1.25);
}
.theme-switch__stars-container {
  position: absolute; color: var(--stars-color); top: -100%; left: 0.2em; width: 2.7em; height: auto; transition: var(--transition);
}
.theme-switch__checkbox:checked + .theme-switch__container { background-color: var(--container-night-bg); }
.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container { left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter)); }
.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover { left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.15em); }
.theme-switch__circle-container:hover { left: calc(var(--circle-container-offset) + 0.15em); }
.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon { transform: translate(0); }
.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds { bottom: -4em; }
.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container { top: 50%; transform: translateY(-50%); }

/* ══ CUSTOM ANIMATED SEARCH BAR (NO COPYRIGHT) ══ */
.mkt-search-fancy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mkt-search-fancy .s-main {
  position: relative;
  width: 320px;
  height: 56px;
  border-radius: 12px;
  background: #0D0E12;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 0 20px rgba(0,0,0,0.5);
  transition: 0.3s ease;
  overflow: hidden;
}

.mkt-search-fancy .s-main:focus-within {
  box-shadow: 0 0 0 1px var(--lime), 0 0 30px rgba(200,255,0,0.15);
}

.mkt-search-fancy .s-input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 0 60px 0 50px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
  position: relative;
  z-index: 2;
}

.mkt-search-fancy .s-input::placeholder { color: #80848e; }

.mkt-search-fancy .s-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.mkt-search-fancy .s-filter-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #16181D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: 0.2s;
}

.mkt-search-fancy .s-filter-icon:hover { background: #232428; }

/* Custom Animated Glow Border */
.mkt-search-fancy .s-main::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(transparent, transparent, transparent, var(--lime));
  animation: s-spin 4s linear infinite;
  z-index: 0;
  opacity: 0.5;
}

.mkt-search-fancy .s-main::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: #0D0E12;
  border-radius: 11px;
  z-index: 1;
}

@keyframes s-spin { 100% { transform: rotate(360deg); } }

/* Hide the old complex Uiverse elements */
.mkt-search-fancy .s-glow, 
.mkt-search-fancy .s-dark, 
.mkt-search-fancy .s-white, 
.mkt-search-fancy .s-border, 
.mkt-search-fancy .s-input-mask, 
.mkt-search-fancy .s-pink-mask, 
.mkt-search-fancy .s-filter-border {
  display: none !important;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--ink);
  color: var(--w);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden
}

/* ══ Global Site Loader Overlay ══ */
.veyra-site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.96);
  transition: opacity .35s ease, visibility .35s ease;
}

.veyra-site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.banter-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
}

.banter-loader__box {
  float: left;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.banter-loader__box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.banter-loader__box:nth-child(3n) {
  margin-right: 0;
  margin-bottom: 6px;
}

.banter-loader__box:nth-child(1):before, .banter-loader__box:nth-child(4):before {
  margin-left: 26px;
}

.banter-loader__box:nth-child(3):before {
  margin-top: 52px;
}

.banter-loader__box:last-child {
  margin-bottom: 0;
}

@keyframes moveBox-1 { 9.0909090909% { transform: translate(-26px, 0); } 18.1818181818% { transform: translate(0px, 0); } 27.2727272727% { transform: translate(0px, 0); } 36.3636363636% { transform: translate(26px, 0); } 45.4545454545% { transform: translate(26px, 26px); } 54.5454545455% { transform: translate(26px, 26px); } 63.6363636364% { transform: translate(26px, 26px); } 72.7272727273% { transform: translate(26px, 0px); } 81.8181818182% { transform: translate(0px, 0px); } 90.9090909091% { transform: translate(-26px, 0px); } 100% { transform: translate(0px, 0px); } }
.banter-loader__box:nth-child(1) { animation: moveBox-1 4s infinite; }
@keyframes moveBox-2 { 9.0909090909% { transform: translate(0, 0); } 18.1818181818% { transform: translate(26px, 0); } 27.2727272727% { transform: translate(0px, 0); } 36.3636363636% { transform: translate(26px, 0); } 45.4545454545% { transform: translate(26px, 26px); } 54.5454545455% { transform: translate(26px, 26px); } 63.6363636364% { transform: translate(26px, 26px); } 72.7272727273% { transform: translate(26px, 26px); } 81.8181818182% { transform: translate(0px, 26px); } 90.9090909091% { transform: translate(0px, 26px); } 100% { transform: translate(0px, 0px); } }
.banter-loader__box:nth-child(2) { animation: moveBox-2 4s infinite; }
@keyframes moveBox-3 { 9.0909090909% { transform: translate(-26px, 0); } 18.1818181818% { transform: translate(-26px, 0); } 27.2727272727% { transform: translate(0px, 0); } 36.3636363636% { transform: translate(-26px, 0); } 45.4545454545% { transform: translate(-26px, 0); } 54.5454545455% { transform: translate(-26px, 0); } 63.6363636364% { transform: translate(-26px, 0); } 72.7272727273% { transform: translate(-26px, 0); } 81.8181818182% { transform: translate(-26px, -26px); } 90.9090909091% { transform: translate(0px, -26px); } 100% { transform: translate(0px, 0px); } }
.banter-loader__box:nth-child(3) { animation: moveBox-3 4s infinite; }
@keyframes moveBox-4 { 9.0909090909% { transform: translate(-26px, 0); } 18.1818181818% { transform: translate(-26px, 0); } 27.2727272727% { transform: translate(-26px, -26px); } 36.3636363636% { transform: translate(0px, -26px); } 45.4545454545% { transform: translate(0px, 0px); } 54.5454545455% { transform: translate(0px, -26px); } 63.6363636364% { transform: translate(0px, -26px); } 72.7272727273% { transform: translate(0px, -26px); } 81.8181818182% { transform: translate(-26px, -26px); } 90.9090909091% { transform: translate(-26px, 0px); } 100% { transform: translate(0px, 0px); } }
.banter-loader__box:nth-child(4) { animation: moveBox-4 4s infinite; }
@keyframes moveBox-5 { 9.0909090909% { transform: translate(0, 0); } 18.1818181818% { transform: translate(0, 0); } 27.2727272727% { transform: translate(0, 0); } 36.3636363636% { transform: translate(26px, 0); } 45.4545454545% { transform: translate(26px, 0); } 54.5454545455% { transform: translate(26px, 0); } 63.6363636364% { transform: translate(26px, 0); } 72.7272727273% { transform: translate(26px, 0); } 81.8181818182% { transform: translate(26px, -26px); } 90.9090909091% { transform: translate(0px, -26px); } 100% { transform: translate(0px, 0px); } }
.banter-loader__box:nth-child(5) { animation: moveBox-5 4s infinite; }
@keyframes moveBox-6 { 9.0909090909% { transform: translate(0, 0); } 18.1818181818% { transform: translate(-26px, 0); } 27.2727272727% { transform: translate(-26px, 0); } 36.3636363636% { transform: translate(0px, 0); } 45.4545454545% { transform: translate(0px, 0); } 54.5454545455% { transform: translate(0px, 0); } 63.6363636364% { transform: translate(0px, 0); } 72.7272727273% { transform: translate(0px, 26px); } 81.8181818182% { transform: translate(-26px, 26px); } 90.9090909091% { transform: translate(-26px, 0px); } 100% { transform: translate(0px, 0px); } }
.banter-loader__box:nth-child(6) { animation: moveBox-6 4s infinite; }
@keyframes moveBox-7 { 9.0909090909% { transform: translate(26px, 0); } 18.1818181818% { transform: translate(26px, 0); } 27.2727272727% { transform: translate(26px, 0); } 36.3636363636% { transform: translate(0px, 0); } 45.4545454545% { transform: translate(0px, -26px); } 54.5454545455% { transform: translate(26px, -26px); } 63.6363636364% { transform: translate(0px, -26px); } 72.7272727273% { transform: translate(0px, -26px); } 81.8181818182% { transform: translate(0px, 0px); } 90.9090909091% { transform: translate(26px, 0px); } 100% { transform: translate(0px, 0px); } }
.banter-loader__box:nth-child(7) { animation: moveBox-7 4s infinite; }
@keyframes moveBox-8 { 9.0909090909% { transform: translate(0, 0); } 18.1818181818% { transform: translate(-26px, 0); } 27.2727272727% { transform: translate(-26px, -26px); } 36.3636363636% { transform: translate(0px, -26px); } 45.4545454545% { transform: translate(0px, -26px); } 54.5454545455% { transform: translate(0px, -26px); } 63.6363636364% { transform: translate(0px, -26px); } 72.7272727273% { transform: translate(0px, -26px); } 81.8181818182% { transform: translate(26px, -26px); } 90.9090909091% { transform: translate(26px, 0px); } 100% { transform: translate(0px, 0px); } }
.banter-loader__box:nth-child(8) { animation: moveBox-8 4s infinite; }
@keyframes moveBox-9 { 9.0909090909% { transform: translate(-26px, 0); } 18.1818181818% { transform: translate(-26px, 0); } 27.2727272727% { transform: translate(0px, 0); } 36.3636363636% { transform: translate(-26px, 0); } 45.4545454545% { transform: translate(0px, 0); } 54.5454545455% { transform: translate(0px, 0); } 63.6363636364% { transform: translate(-26px, 0); } 72.7272727273% { transform: translate(-26px, 0); } 81.8181818182% { transform: translate(-52px, 0); } 90.9090909091% { transform: translate(-26px, 0); } 100% { transform: translate(0px, 0); } }
.banter-loader__box:nth-child(9) { animation: moveBox-9 4s infinite; }

/* Force consistent dropdown colors across pages (Windows fix) */
select {
  background-color: #0d0e12;
  color: var(--w);
}

select option,
select optgroup {
  background-color: #0d0e12;
  color: var(--w);
}

body.light select,
body.light select option,
body.light select optgroup {
  background-color: #ffffff;
  color: #111111;
}

a {
  text-decoration: none;
  color: inherit
}

/* ══ NAV ══ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 2.5rem;
  background: rgba(10, 10, 10, .5);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--edge)
}

.nav-logo-img {
  height: 32px;
  display: block
}

.nav-links a {
  color: var(--dim);
  font-size: .86rem;
  font-weight: 500;
  margin: 0 .9rem;
  transition: color .25s
}

.nav-links a:hover,
.nav-links .is-active {
  color: var(--w)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .7rem
}

.nav-icon {
  display: flex;
  align-items: center;
  color: var(--dim);
  transition: color .2s
}

.nav-icon:hover {
  color: var(--w)
}

.nav-icon-gif {
  height: 22px;
  border-radius: 4px
}

.nav-btn-outline {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dim);
  border: 1px solid var(--edge);
  padding: .4rem 1rem;
  border-radius: 100px;
  transition: all .2s
}

.nav-btn-outline:hover {
  color: var(--w);
  border-color: rgba(255, 255, 255, .3)
}

/* ══ DRIP BUTTON ══ */
.btn-drip,
.nav-btn-drip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: #000;
  font-weight: 700;
  font-size: .88rem;
  padding: .6rem 1.6rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  overflow: visible;
  transition: transform .2s, box-shadow .2s
}

.btn-drip:hover,
.nav-btn-drip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 255, 0, .25)
}

.nav-btn-drip {
  padding: .4rem 1rem;
  font-size: .82rem;
  border-radius: 10px
}

/* ── Logout button in nav ── */
.nav-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  color: #f87171;
  font-size: .78rem;
  font-weight: 600;
  padding: .38rem .9rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap
}
.nav-logout-btn:hover {
  background: rgba(239,68,68,.2);
  border-color: rgba(239,68,68,.5);
  color: #fca5a5
}
.logout-icon { display: flex; align-items: center }

.drip-drops {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  pointer-events: none
}

.drip-drops i {
  display: block;
  width: 6px;
  height: 12px;
  background: var(--lime);
  border-radius: 0 0 50% 50%;
  animation: dripFall 2.5s ease-in infinite;
  opacity: .7
}

.drip-drops i:nth-child(2) {
  animation-delay: .5s;
  height: 10px;
  width: 5px
}

.drip-drops i:nth-child(3) {
  animation-delay: 1.2s;
  height: 8px;
  width: 4px
}

@keyframes dripFall {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: .7
  }

  60% {
    opacity: .5
  }

  100% {
    transform: translateY(18px) scaleY(.3);
    opacity: 0
  }
}

/* ══ SHINY BUTTON ══ */
.btn-shiny {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: .75rem 2.2rem;
  border-radius: 100px;
  background: var(--lime);
  color: #000;
  font-weight: 800;
  font-size: .95rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s
}

.btn-shiny:hover {
  transform: translateY(-2px)
}

.shiny-layer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
  animation: shinySwipe 3s ease-in-out infinite
}

@keyframes shinySwipe {
  0% {
    left: -100%
  }

  50% {
    left: 150%
  }

  100% {
    left: 150%
  }
}

.btn-outline-pill {
  display: inline-flex;
  padding: .7rem 1.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--dim);
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s
}

.btn-outline-pill:hover {
  color: var(--w);
  border-color: rgba(255, 255, 255, .4)
}

/* ══ SHARED ══ */
.sec-header {
  text-align: center;
  margin-bottom: 2.5rem
}

.pill {
  display: inline-block;
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 100px;
  padding: .25rem .8rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--dim);
  margin-bottom: .6rem;
  backdrop-filter: blur(6px)
}

.sec-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px
}

#footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--edge);
  padding: 2.5rem 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem
}

.foot-logo {
  font-size: 1.7rem;
  font-weight: 900
}

#footer p {
  font-size: .82rem;
  color: var(--dim)
}

.foot-copy {
  font-size: .68rem;
  color: rgba(255, 255, 255, .12)
}

/* ══ CHAT ══ */
.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500
}

.chat-toggle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #5865F2;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  transition: transform .2s
}

.chat-toggle:hover {
  transform: scale(1.05)
}

.chat-panel {
  display: none;
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 350px;
  background: #313338;
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255,255,255,.05)
}

.chat-panel.open {
  display: flex;
  animation: popIn .2s ease-out
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98) }
  to { opacity: 1; transform: translateY(0) scale(1) }
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: #2b2d31;
  border-bottom: 1px solid #1e1f22;
  font-weight: 700;
  font-size: .95rem;
  color: #f2f3f5
}

.chat-close {
  background: none;
  border: none;
  color: #b5bac1;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1
}
.chat-close:hover { color: #dbdee1 }

.chat-body {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  max-height: 350px
}

.chat-msg {
  padding: .3rem 1.2rem;
  font-size: .88rem;
  line-height: 1.4;
  color: #dbdee1;
  display: flex;
  flex-direction: column;
  position: relative
}

.chat-msg:hover {
  background: rgba(255,255,255,.02)
}

.chat-msg::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: .4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-size: cover;
  background-position: center
}

.chat-msg.bot { padding-left: 3.8rem; min-height: 44px; margin-bottom: 4px }
.chat-msg.bot::before { background-image: url("server icon'/ve.png"); background-color: #2b2d31 }
.chat-msg.bot::after { content: 'Veyra Support'; position: absolute; left: 3.8rem; top: .2rem; font-size: .8rem; font-weight: 600; color: #f2f3f5 }
.chat-msg.bot { padding-top: 1.4rem }

.chat-msg.user { padding-left: 3.8rem; min-height: 44px; margin-bottom: 4px }
.chat-msg.user::before { background: #5865F2 }
.chat-msg.user::after { content: 'You'; position: absolute; left: 3.8rem; top: .2rem; font-size: .8rem; font-weight: 600; color: #f2f3f5 }
.chat-msg.user { padding-top: 1.4rem }

.chat-foot {
  padding: .8rem 1.2rem;
  background: #313338
}

.chat-foot-inner {
  display: flex;
  background: #383a40;
  border-radius: 8px;
  padding: .4rem .6rem
}

.chat-foot input {
  flex: 1;
  background: transparent;
  border: none;
  padding: .4rem;
  color: #dbdee1;
  font-size: .88rem;
  outline: none
}
.chat-foot input::placeholder { color: #80848e }

.chat-send {
  font-size: 1rem
}

/* ══ DOCK ══ */
.dock {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(20, 20, 20, .85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 6px 10px
}

.dock-item {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  transition: transform .25s cubic-bezier(.25, .8, .25, 1), background .2s, color .2s;
  position: relative
}

.dock-item:hover {
  transform: scale(1.3) translateY(-6px);
  color: var(--w);
  background: rgba(255, 255, 255, .08)
}

.dock-item.active {
  color: var(--lime)
}

.dock-item::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: var(--w);
  font-size: .65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s
}

.dock-item:hover::after {
  opacity: 1
}

.dock-sep {
  width: 1px;
  height: 24px;
  background: var(--edge);
  margin: 0 4px
}

/* ------- ABOUT PAGE ------- */
#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.collage-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 4px;
  padding: 4px
}

.collage-grid .cell {
  overflow: hidden;
  border-radius: 8px
}

.collage-grid .cell img,
.collage-grid .cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block
}

.collage-grid .cell.span-c2 {
  grid-column: span 2
}

.collage-grid .cell.span-r2 {
  grid-row: span 2
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(10, 10, 10, .25) 0%, rgba(10, 10, 10, .55) 50%, rgba(10, 10, 10, .82) 100%);
  backdrop-filter: blur(1.5px)
}

.hero-center {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  max-width: 800px;
  padding: 0 2rem
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 0 50px rgba(255, 255, 255, .4), 0 4px 30px rgba(0, 0, 0, .9)
}

.hero-title .letter {
  display: inline-block;
  transition: --wx .45s cubic-bezier(.25, .8, .25, 1), --wy .45s cubic-bezier(.25, .8, .25, 1), --wr .45s, color .2s, opacity .4s;
  transform: translate(var(--wx, 0px), var(--wy, 0px)) rotate(var(--wr, 0deg));
  cursor: default;
  will-change: transform
}

.hero-title .letter.lit {
  text-shadow: 0 0 50px rgba(255, 255, 255, 1), 0 0 100px rgba(255, 255, 255, .5)
}

.hero-sub {
  font-size: clamp(.82rem, 1.3vw, .95rem);
  color: rgba(255, 255, 255, .45);
  line-height: 1.7
}

.hero-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
  animation: linePulse 2.4s ease-in-out infinite
}

@keyframes linePulse {

  0%,
  100% {
    opacity: .35
  }

  50% {
    opacity: 1
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: .68rem;
  color: rgba(255, 255, 255, .22);
  letter-spacing: .1em
}

/* STATEMENT */
#statement {
  position: relative;
  z-index: 10;
  padding: 6rem 5%;
  background: var(--ink)
}

.stmt-blur-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none
}

.stmt-blur-edge.top {
  top: -50px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  filter: blur(30px)
}

.stmt-blur-edge.bottom {
  bottom: -50px;
  background: linear-gradient(to top, transparent, var(--ink));
  filter: blur(30px)
}

.stmt-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center
}

.stmt-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem
}

.stmt-inner p {
  font-size: .92rem;
  color: var(--dim);
  line-height: 1.75
}

/* VIDEO TEXT */
#videoText {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  background: var(--ink);
  overflow: hidden
}

.vt-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px
}

.vt-title {
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: -6px;
  color: transparent;
  -webkit-text-stroke: 0;
  background-clip: text;
  -webkit-background-clip: text;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen
}

.vt-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: .8
}

.vt-title {
  background: none;
  color: var(--w);
  mix-blend-mode: normal;
  -webkit-text-stroke: 0
}

.vt-wrap {
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)
}

/* PARTNERSHIPS */
#partnerships {
  position: relative;
  z-index: 10;
  padding: 0
}

#partnerships .sec-header {
  position: relative;
  z-index: 20;
  padding: 2rem 5% 0;
  text-align: center
}

.partner-stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.partner-bg {
  position: absolute;
  inset: -80px;
  z-index: 0;
  filter: blur(80px) saturate(1.5);
  opacity: .5;
  transition: background 1.2s;
  background: linear-gradient(135deg, #f9a8d4, #93c5fd);
  transform: scale(1.4)
}

.partner-stage::before,
.partner-stage::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 3;
  pointer-events: none
}

.partner-stage::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink), transparent)
}

.partner-stage::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink), transparent)
}

.partner-scattered {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none
}

.partner-scattered img {
  position: absolute;
  border-radius: 10px;
  opacity: 0;
  transition: opacity .8s
}

.partner-badge {
  position: absolute;
  z-index: 5;
  width: 260px;
  height: 180px;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  transition: left .6s cubic-bezier(.25, .8, .25, 1), top .6s cubic-bezier(.25, .8, .25, 1)
}

.partner-badge>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: opacity .4s
}

.mark-overlay {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .5);
  z-index: 6
}

.mark-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.partner-names {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem
}

.p-name {
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.15;
  color: rgba(255, 255, 255, .15);
  cursor: pointer;
  transition: color .5s, transform .5s;
  user-select: none
}

.p-name.active {
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 0 40px rgba(255, 255, 255, .2);
  transform: scale(1.05)
}

.p-name:hover:not(.active) {
  color: rgba(255, 255, 255, .35)
}

/* TEAM */
#creators {
  position: relative;
  z-index: 10;
  padding: 5rem 5%;
  background: var(--ink)
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
  max-width: 960px;
  margin: 0 auto
}

.team-card {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform .35s, box-shadow .35s
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .35)
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, .12)
}

.a1 {
  background: linear-gradient(135deg, #ec4899, #f97316)
}

.a2 {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6)
}

.a3 {
  background: linear-gradient(135deg, #ef4444, #f59e0b)
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .3rem
}

.team-role {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .08em;
  display: block;
  margin-bottom: .8rem
}

.team-card p {
  font-size: .82rem;
  color: var(--dim);
  line-height: 1.6
}

/* VERTICAL MARQUEE � Special Designs */
#designs {
  position: relative;
  z-index: 10;
  padding: 5rem 5%;
  background: var(--ink);
  overflow: hidden
}

.marquee-v-wrap {
  position: relative;
  height: 500px;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  overflow: hidden
}

.marquee-v-col {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0
}

.marquee-v-col.left {
  animation: mvDown 25s linear infinite
}

.marquee-v-col.right {
  animation: mvUp 22s linear infinite
}

@keyframes mvDown {
  0% {
    transform: translateY(-50%)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes mvUp {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-50%)
  }
}

.mv-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--edge);
  flex-shrink: 0;
  transition: transform .3s
}

.mv-card:hover {
  transform: scale(1.03)
}

.mv-card-visual {
  height: 200px;
  background-size: cover;
  background-position: center
}

.mv-card span {
  display: block;
  padding: .8rem 1rem;
  font-weight: 700;
  font-size: .88rem
}

.marquee-v-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 5;
  pointer-events: none
}

.marquee-v-fade.top {
  top: 0;
  background: linear-gradient(to bottom, var(--ink), transparent)
}

.marquee-v-fade.bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--ink), transparent)
}

/* REVIEW MARQUEE � two columns vertical scroll */
#reviews {
  position: relative;
  z-index: 10;
  padding: 5rem 5%;
  background: var(--ink);
  overflow: hidden
}

.review-marquee-wrap {
  position: relative;
  height: 500px;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  overflow: hidden
}

.review-col {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0
}

#revCol1 {
  animation: mvDown 30s linear infinite
}

#revCol2 {
  animation: mvUp 28s linear infinite
}

.review-card {
  background: rgba(255, 255, 255, .95);
  color: #111;
  border-radius: 18px;
  padding: 1.2rem;
  flex-shrink: 0
}

.rc-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem
}

.rc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0
}

.rc-name {
  font-weight: 700;
  font-size: .88rem;
  line-height: 1.2
}

.rc-handle {
  font-size: .72rem;
  color: #888
}

.rc-body {
  font-size: .84rem;
  line-height: 1.6;
  color: #333
}

/* ANIMATED NOTIFICATIONS */
#notifs {
  position: relative;
  z-index: 10;
  padding: 5rem 5%;
  background: var(--ink)
}

.notif-list {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  min-height: 320px
}

.notif-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(255, 255, 255, .95);
  color: #111;
  border-radius: 16px;
  padding: .8rem 1rem;
  transform: translateY(20px);
  opacity: 0;
  animation: notifSlideIn .5s forwards;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08)
}

@keyframes notifSlideIn {
  to {
    transform: translateY(0);
    opacity: 1
  }
}

.notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0
}

.notif-text {
  flex: 1
}

.notif-text strong {
  font-size: .88rem;
  display: block
}

.notif-text small {
  font-size: .72rem;
  color: #888
}

.notif-time {
  font-size: .7rem;
  color: #aaa;
  white-space: nowrap
}

/* SERVICES */
#services {
  position: relative;
  z-index: 10;
  padding: 5rem 5%;
  max-width: 1300px;
  margin: 0 auto
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem
}

.srv-card {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  transition: background .3s, transform .3s
}

.srv-card:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-4px)
}

.srv-glyph {
  font-size: 1.3rem;
  opacity: .4;
  margin-bottom: .8rem
}

.srv-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .35rem
}

.srv-card p {
  font-size: .8rem;
  color: var(--dim);
  line-height: 1.6
}

/* ------- SIGNUP PAGE ------- */
.page-signup {
  overflow: hidden;
  height: 100vh
}

.ink-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #050505;
  overflow: hidden
}

.ink-splash {
  position: absolute;
  border-radius: 42% 58% 65% 35% / 45% 55% 45% 55%;
  opacity: 0;
  mix-blend-mode: screen
}

.ink-splash.s1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 40%, transparent 70%);
  top: 8%;
  left: 12%;
  animation: inkSplat 6s ease-out infinite
}

.ink-splash.s2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.14) 0%, rgba(200,200,200,.06) 35%, transparent 65%);
  top: 55%;
  right: 8%;
  animation: inkSplat 8s 2s ease-out infinite;
  border-radius: 55% 45% 38% 62% / 60% 40% 60% 40%
}

.ink-splash.s3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 60%);
  bottom: 15%;
  left: 35%;
  animation: inkSplat 7s 4s ease-out infinite;
  border-radius: 60% 40% 50% 50% / 35% 65% 35% 65%
}

.ink-splash.s4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 55%);
  top: 30%;
  right: 30%;
  animation: inkSplat 9s 1s ease-out infinite;
  border-radius: 35% 65% 55% 45% / 50% 50% 50% 50%
}

.ink-splash.s5 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,.16) 0%, transparent 50%);
  top: 70%;
  left: 10%;
  animation: inkSplat 5s 3s ease-out infinite;
  border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%
}

@keyframes inkSplat {
  0% {
    transform: scale(.3) rotate(0deg);
    opacity: 0;
    filter: blur(0px)
  }
  15% {
    opacity: .8;
    filter: blur(1px)
  }
  50% {
    transform: scale(1.2) rotate(15deg);
    opacity: .15;
    filter: blur(12px)
  }
  100% {
    transform: scale(1.6) rotate(25deg);
    opacity: 0;
    filter: blur(30px)
  }
}

.signup-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  gap: 4rem
}

.signup-left {
  flex: 1;
  max-width: 420px
}

.signup-logo {
  display: block;
  margin-bottom: 2rem
}

.signup-logo img {
  height: 48px
}

.signup-left h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem
}

.aura-text {
  background: linear-gradient(135deg, var(--lime), #a855f7, #ec4899, var(--lime));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: auraShift 4s ease infinite
}

@keyframes auraShift {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.signup-left p {
  color: var(--dim);
  font-size: .92rem;
  line-height: 1.7
}

.signup-right {
  flex: 1;
  max-width: 420px
}

.signup-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--edge);
  border-radius: 22px;
  padding: 2.2rem;
  backdrop-filter: blur(12px)
}

.signup-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .3rem
}

.signup-sub {
  color: var(--dim);
  font-size: .85rem;
  margin-bottom: 1.3rem
}

.field {
  margin-bottom: .9rem
}

.field label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  color: var(--dim);
  margin-bottom: .35rem;
  letter-spacing: .05em
}

.field input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--edge);
  border-radius: 11px;
  padding: .65rem .9rem;
  color: var(--w);
  font-size: .88rem;
  outline: none;
  transition: border-color .2s
}

.field input:focus {
  border-color: var(--lime)
}

.divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1rem 0;
  color: rgba(255, 255, 255, .2);
  font-size: .76rem
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--edge)
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--edge);
  border-radius: 11px;
  padding: .65rem;
  color: var(--w);
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s
}

.google-btn:hover {
  background: rgba(255, 255, 255, .1)
}

.toggle-link {
  text-align: center;
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--dim)
}

.toggle-link a {
  color: var(--lime);
  font-weight: 700;
  margin-left: .3rem
}

/* ------- HOME PAGE ------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 5% 4rem
}

.home-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 560px;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #a855f7, #ec4899, #f97316);
  filter: blur(100px);
  opacity: .25;
  border-radius: 50%;
  z-index: 0
}

.home-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px
}

.home-big-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap
}

.hw {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1
}

.home-hero-sub {
  font-size: clamp(.85rem, 1.4vw, 1.05rem);
  color: var(--dim);
  margin: 1.3rem 0 1.8rem;
  letter-spacing: .08em;
  text-transform: uppercase
}

.home-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem
}

.home-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap
}

.stat {
  text-align: center
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900
}

.stat span {
  font-size: .76rem;
  color: var(--dim)
}

.float-badge {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: .4rem .8rem;
  font-size: .76rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: .3rem;
  animation: floatB 6s ease-in-out infinite
}

.fb1 {
  top: 20%;
  left: 8%
}

.fb2 {
  top: 33%;
  left: 12%;
  animation-delay: 1.5s;
  color: var(--lime);
  border-color: rgba(200, 255, 0, .2)
}

.fb3 {
  top: 36%;
  right: 10%;
  animation-delay: 3s;
  color: var(--lime);
  border-color: rgba(200, 255, 0, .2)
}

.fb4 {
  bottom: 16%;
  right: 12%;
  animation-delay: 4.5s
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* AVATAR CIRCLES */
.avatar-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2rem
}

.av-stack {
  display: flex
}

.av-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -10px;
  object-fit: cover
}

.av-stack img:first-child {
  margin-left: 0
}

.av-count {
  font-size: .82rem;
  color: var(--dim);
  font-weight: 600
}

/* TWEET CARDS */
#socialProof {
  position: relative;
  z-index: 10;
  padding: 5rem 5%;
  background: var(--ink)
}

.tweet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto
}

.tweet-card {
  background: rgba(255, 255, 255, .95);
  color: #111;
  border-radius: 18px;
  padding: 1.4rem;
  transition: transform .3s
}

.tweet-card:hover {
  transform: translateY(-4px)
}

.tc-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem
}

.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover
}

.tc-user {
  flex: 1
}

.tc-user strong {
  display: block;
  font-size: .9rem
}

.tc-user span {
  font-size: .72rem;
  color: #888
}

.tc-icon {
  color: #1da1f2;
  font-size: 1.2rem
}

.tc-body {
  font-size: .88rem;
  line-height: 1.6;
  color: #333
}

.tc-img {
  margin-top: .8rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee
}

.tc-img img {
  width: 100%;
  display: block
}

/* CATEGORIES */
.home-cats {
  position: relative;
  z-index: 10;
  padding: 5rem 5%;
  max-width: 1100px;
  margin: 0 auto
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1rem
}

.cat-card {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  border-color: rgba(200, 255, 0, .2)
}

.cat-icon {
  font-size: 1.8rem;
  margin-bottom: .7rem
}

.cat-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .25rem
}

.cat-card p {
  font-size: .75rem;
  color: var(--dim);
  line-height: 1.5
}

/* ------- MARKETPLACE ------- */
.page-market {
  padding-top: 65px
}

.mkt-layout {
  display: flex;
  min-height: calc(100vh - 65px)
}

.mkt-sidebar {
  width: 230px;
  position: sticky;
  top: 65px;
  height: calc(100vh - 65px);
  overflow-y: auto;
  padding: 1.3rem;
  border-right: 1px solid var(--edge);
  flex-shrink: 0;
  background: rgba(10, 10, 10, .9)
}

.mkt-sidebar h3 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .9rem
}

.cat-list {
  list-style: none
}

.cat-list li {
  padding: .5rem .7rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  color: var(--dim);
  margin-bottom: 2px
}

.cat-list li:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--w)
}

.cat-list li.active {
  background: rgba(200, 255, 0, .1);
  color: var(--lime);
  font-weight: 700
}

.sidebar-filter {
  margin-top: 1.3rem
}

.sidebar-filter h4 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--dim);
  margin-bottom: .5rem;
  letter-spacing: .08em
}

.price-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem
}

.pp {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--edge);
  border-radius: 8px;
  padding: .25rem .5rem;
  font-size: .72rem;
  color: var(--dim);
  cursor: pointer;
  transition: all .2s
}

.pp:hover {
  border-color: rgba(255, 255, 255, .2);
  color: var(--w)
}

.pp.active {
  background: rgba(200, 255, 0, .1);
  border-color: rgba(200, 255, 0, .3);
  color: var(--lime)
}

.mkt-main {
  flex: 1;
  padding: 1.3rem 1.8rem
}

.market-account-bar {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: .8rem 1rem;
  margin-bottom: 1rem;
  font-size: .82rem;
  color: var(--dim);
}

.market-admin-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.1rem;
}

.market-admin-panel h3 { margin-bottom: .4rem; }
.market-admin-panel p { color: var(--dim); font-size: .8rem; margin-bottom: .8rem; }

.market-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.market-form-grid input,
.market-form-grid textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--edge);
  border-radius: 10px;
  padding: .55rem .7rem;
  color: var(--w);
  font-size: .8rem;
}

.market-form-grid textarea,
.market-form-grid button { grid-column: 1 / -1; }
.market-check { display:flex; align-items:center; gap:.4rem; font-size:.8rem; color:var(--dim); }

.market-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.market-modal-card {
  width: min(900px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #0d0e12;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 1rem;
  position: relative;
}

.market-modal-close {
  position: absolute;
  right: .8rem;
  top: .5rem;
  background: transparent;
  border: none;
  color: var(--w);
  font-size: 1.5rem;
  cursor: pointer;
}

.market-modal-header { display:flex; justify-content:space-between; gap:.5rem; margin-bottom:.5rem; }
.market-modal-actions { display:flex; gap:.6rem; margin:.9rem 0; flex-wrap:wrap; }
.market-reaction-row { display:flex; gap:.5rem; margin-bottom:.7rem; }
.market-comment-form { display:flex; gap:.5rem; margin-top:.5rem; }
.market-comment-form input { flex:1; background:rgba(255,255,255,.05); border:1px solid var(--edge); border-radius:8px; padding:.5rem .7rem; color:var(--w); }

.mkt-topbar {
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-bottom: 1.3rem;
  flex-wrap: wrap
}

.mkt-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--edge);
  border-radius: 11px;
  padding: .5rem .9rem;
  min-width: 180px
}

.mkt-search svg {
  color: var(--dim);
  flex-shrink: 0
}

.mkt-search input {
  flex: 1;
  background: none;
  border: none;
  color: var(--w);
  font-size: .86rem;
  outline: none
}

.mkt-sort select {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--edge);
  border-radius: 10px;
  padding: .45rem .7rem;
  color: var(--w);
  font-size: .82rem;
  outline: none;
  cursor: pointer
}

.mkt-cat-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .25rem
}

.mkt-count {
  font-size: .8rem;
  color: var(--dim);
  margin-bottom: 1.3rem
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: .9rem
}

.prod-card {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  opacity: 0;
  animation: blurFadeIn .5s forwards
}

@keyframes blurFadeIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0)
  }
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.prod-thumb {
  height: 170px;
  overflow: hidden;
  position: relative
}

.prod-thumb-bg {
  width: 100%;
  height: 100%;
  display: block
}

.prod-badge {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background: var(--lime);
  color: #000;
  font-size: .62rem;
  font-weight: 800;
  padding: .18rem .45rem;
  border-radius: 5px
}

.prod-info {
  padding: .8rem
}

.prod-info h3 {
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.prod-creator {
  font-size: .7rem;
  color: var(--dim);
  margin-bottom: .35rem
}

.prod-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.prod-price {
  font-size: .9rem;
  font-weight: 800;
  color: var(--lime)
}

.prod-format {
  font-size: .63rem;
  color: var(--dim);
  background: rgba(255, 255, 255, .06);
  padding: .18rem .35rem;
  border-radius: 4px
}

@media(max-width:768px) {
  .mkt-sidebar {
    display: none
  }

  .signup-wrap {
    flex-direction: column;
    gap: 2rem
  }

  .signup-left,
  .signup-right {
    max-width: 100%
  }

  #nav .nav-links {
    display: none
  }

  .nav-right {
    gap: .3rem
  }

  .float-badge {
    display: none
  }

  .dock {
    bottom: .8rem;
    padding: 4px 8px
  }

  .dock-item {
    width: 36px;
    height: 36px
  }

  .review-marquee-wrap,
  .marquee-v-wrap {
    flex-direction: column;
    height: 400px
  }
}

/* ------- VIDEO TEXT CLIP ------- */
.vt-container {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink)
}

.vt-container.wide {
  height: 450px
}

.vt-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1
}

.vt-clip-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--ink);
  background: var(--ink);
  mix-blend-mode: multiply;
  z-index: 1;
  user-select: none
}

.vt-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 15%, transparent 85%, var(--ink) 100%);
  z-index: 2;
  pointer-events: none
}

.vt-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 5;
  pointer-events: none
}

.vt-fade.top {
  top: 0;
  background: linear-gradient(to bottom, var(--ink), transparent)
}

.vt-fade.bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--ink), transparent)
}

/* SIGNUP VIDEO TEXT */
.signup-video-text {
  position: relative;
  margin-bottom: 1rem;
  height: 160px;
  overflow: hidden;
  background: #000;
  border-radius: 14px
}

.svt-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0
}

.svt-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  background: #000;
  mix-blend-mode: multiply;
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 20px
}

.svt-clip .aura-text {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: none
}

/* LOGO HOVER */
.nav-logo {
  transition: transform .3s ease;
  display: inline-block
}

.nav-logo:hover {
  transform: scale(1.1)
}

/* ------- MEMBERSHIP PAGE ------- */
.page-member {
  padding-top: 65px
}

.mem-hero {
  position: relative;
  text-align: center
}

.mem-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--dim);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 4rem
}

.mem-pricing {
  position: relative;
  z-index: 10;
  padding: 2rem 5% 5rem;
  max-width: 1200px;
  margin: 0 auto
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center
}

.price-card {
  position: relative;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--edge);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  backdrop-filter: blur(10px)
}

.price-card.featured {
  background: rgba(200, 255, 0, .03);
  border-color: rgba(200, 255, 0, .3);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(200, 255, 0, .1);
  padding: 4rem 2.5rem
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, .2)
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  border-color: var(--lime)
}

.pc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .1;
  pointer-events: none
}

.pc-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, .1) 10px, rgba(255, 255, 255, .1) 11px)
}

.pc-badge-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #000;
  font-size: .75rem;
  font-weight: 800;
  padding: .4rem 1.5rem;
  border-radius: 0 0 12px 12px;
  z-index: 2
}

.price-card>* {
  position: relative;
  z-index: 2
}

.pc-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem
}

.price-card.featured .pc-icon {
  background: rgba(200, 255, 0, .1);
  color: var(--lime)
}

.price-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .5rem
}

.pc-price {
  margin-bottom: 1rem
}

.pc-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1
}

.pc-period {
  font-size: 1rem;
  color: var(--dim)
}

.pc-desc {
  font-size: .9rem;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 2rem
}

.pc-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.pc-features li {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  display: flex;
  gap: .5rem
}

.btn-drip.small {
  padding: .45rem 1.1rem;
  font-size: .82rem;
}

/* Full-width only inside forms */
.btn-drip.full {
  width: 100%;
  justify-content: center
}

/* Nav signin button — compact pill */
.veyra-signin-btn {
  padding: .38rem 1rem !important;
  font-size: .8rem !important;
  border-radius: 10px !important;
  width: auto !important;
  white-space: nowrap
}

.btn-shiny {
  width: 100%;
  justify-content: center
}

.mem-features {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto
}

.mem-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem
}

.mf-card {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.mf-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, .05);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px
}

.mf-card h4 {
  font-size: 1.1rem;
  font-weight: 700
}

.mf-card p {
  font-size: .9rem;
  color: var(--dim);
  line-height: 1.6
}

.mem-faq {
  padding: 5rem 5% 8rem;
  max-width: 800px;
  margin: 0 auto
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 16px;
  overflow: hidden
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--w);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.faq-arrow {
  transition: transform .3s;
  font-size: 1.5rem;
  font-weight: 400
}

.faq-a {
  height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: all .3s ease-out;
  opacity: 0
}

.faq-a p {
  font-size: .95rem;
  color: var(--dim);
  line-height: 1.6;
  padding-bottom: 1.5rem
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg)
}

.faq-item.open .faq-a {
  height: auto;
  opacity: 1
}

@media(max-width:768px) {
  .price-card.featured {
    transform: scale(1);
    padding: 3rem 2.5rem
  }

  .price-card.featured:hover {
    transform: translateY(-10px)
  }
}

/* ══ SMOOTH CURSOR ══ */
.smooth-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime) 0%, rgba(200,255,0,.3) 60%, transparent 100%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity .2s;
  will-change: transform
}

/* ══ NAV SOCIAL GLASSMORPHISM BUTTONS ══ */
.nav-social-btn {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.5);
  transition: all .3s ease;
  overflow: hidden
}

.nav-social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s ease
}

.nav-social-btn:hover::before {
  transform: translateX(100%)
}

.nav-social-btn:hover {
  transform: scale(1.15) translateY(-2px);
  border-color: rgba(255,255,255,.2);
  color: #fff
}

.nav-social-btn.yt:hover {
  border-color: rgba(255,65,65,.4);
  box-shadow: 0 4px 20px rgba(255,65,65,.2);
  color: #ff4141
}

.nav-social-btn.dc:hover {
  border-color: rgba(88,101,242,.4);
  box-shadow: 0 4px 20px rgba(88,101,242,.2);
  color: #5865F2
}

.nav-social-btn.gh:hover {
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 4px 20px rgba(255,255,255,.1);
  color: #fff
}

/* ══ LOGOUT BUTTON (expandable) ══ */
.nav-logout-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: width .3s, border-radius .3s, box-shadow .3s;
  background: #e53935;
  box-shadow: 0 2px 10px rgba(229,57,53,.25)
}

.logout-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width .3s, padding .3s;
  color: #fff;
  flex-shrink: 0
}

.logout-text {
  position: absolute;
  right: 0;
  width: 0;
  opacity: 0;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  transition: opacity .3s, width .3s;
  white-space: nowrap
}

.nav-logout-btn:hover {
  width: 100px;
  border-radius: 17px;
  box-shadow: 0 4px 20px rgba(229,57,53,.4)
}

.nav-logout-btn:hover .logout-icon {
  width: 30%;
  padding-left: 12px
}

.nav-logout-btn:hover .logout-text {
  opacity: 1;
  width: 70%;
  padding-right: 10px
}

.nav-logout-btn:active {
  transform: translate(1px, 1px)
}

/* ══ PROFILE DROPDOWN ══ */
.nav-profile {
  position: relative;
  cursor: pointer
}

/* ══ Membership ring + tag ══ */
.veyra-member-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  border: 2px solid rgba(200,255,0,.35);
  box-shadow: 0 0 18px rgba(200,255,0,.18);
}
.veyra-member-ring.mem-basic {
  border-color: rgba(56,189,248,.45);
  box-shadow: 0 0 18px rgba(56,189,248,.16);
}
.veyra-member-ring.mem-pro {
  border-color: rgba(200,255,0,.45);
  box-shadow: 0 0 22px rgba(200,255,0,.22);
}
.veyra-member-ring.mem-elite {
  border-color: rgba(168,85,247,.55);
  box-shadow: 0 0 24px rgba(168,85,247,.22);
}
.veyra-member-tag {
  position: absolute;
  right: -10px;
  bottom: -10px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  z-index: 4;
  backdrop-filter: blur(10px);
}
.veyra-member-tag.mem-basic { border-color: rgba(56,189,248,.35); color: #7dd3fc; }
.veyra-member-tag.mem-pro { border-color: rgba(200,255,0,.35); color: var(--lime); }
.veyra-member-tag.mem-elite { border-color: rgba(168,85,247,.45); color: #c084fc; }

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  transition: all .25s
}

.nav-profile:hover .nav-avatar {
  border-color: var(--lime);
  color: var(--w);
  box-shadow: 0 0 15px rgba(200,255,0,.15);
  transform: scale(1.08)
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  background: #0D1117;
  border: 1px solid var(--edge);
  border-radius: 10px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.96);
  transition: all .25s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,.5);
  z-index: 500
}

.profile-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1)
}

.pd-item {
  background: transparent;
  border: none;
  padding: 8px 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 500;
  transition: all .2s;
  position: relative
}

.pd-item:not(:active):hover,
.pd-item:focus {
  background: #21262C
}

.pd-item:focus,
.pd-item:active {
  background: #1A1F24;
  outline: none
}

.pd-item::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -6px;
  width: 3px;
  height: 80%;
  background: var(--lime);
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s
}

.pd-item:focus::before,
.pd-item:active::before {
  opacity: 1
}

/* ══ AVATAR HOVER ANIMATION ══ */
.av-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
  background: var(--av-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: #000;
  cursor: pointer;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  animation: avPop .5s var(--av-delay, 0s) cubic-bezier(.25,.8,.25,1) both
}

.av-circle:first-child {
  margin-left: 0
}

.av-circle:hover {
  transform: scale(1.35) translateY(-8px);
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.3)
}

@keyframes avPop {
  0% {
    transform: scale(0) translateY(10px);
    opacity: 0
  }
  70% {
    transform: scale(1.15) translateY(-3px)
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1
  }
}

.avatar-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 1.2rem 0 1.5rem
}

/* ══ SCROLL VELOCITY TEXT ══ */
#scrollVelocity {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
  overflow: hidden;
  background: var(--ink)
}

.sv-row {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform
}

.sv-row span {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(255,255,255,.06);
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  flex-shrink: 0;
  user-select: none
}

#scrollVelocity::before,
#scrollVelocity::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 2;
  pointer-events: none
}

#scrollVelocity::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent)
}

#scrollVelocity::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent)
}

/* ══ WORD ROTATE ══ */
.word-rotate {
  display: inline-block;
  transition: transform .3s cubic-bezier(.25,.8,.25,1), opacity .3s;
  color: var(--lime)
}

/* ══ NOTIF WRAP ══ */
.notif-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto
}

.notif-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--ink), transparent);
  pointer-events: none;
  z-index: 2
}

/* ══ 3D PRICING CARDS ══ */
.pricing-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  perspective: 1000px
}

.card-3d-wrap {
  perspective: 1000px;
  padding: 10px
}

.card-3d {
  position: relative;
  padding-top: 50px;
  border: 2px solid #1a1a1a;
  transform-style: preserve-3d;
  background: linear-gradient(135deg, #0000 18.75%, #1a1a1a 0 31.25%, #0000 0),
    repeating-linear-gradient(45deg, #1a1a1a -6.25% 6.25%, #0a0a0a 0 18.75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 0;
  background-color: #0a0a0a;
  width: 100%;
  border-radius: 16px;
  box-shadow: rgba(200, 255, 0, .05) 0px 30px 30px -10px;
  transition: all .5s ease-in-out
}

.card-3d:hover {
  background-position: -100px 100px, -100px 100px;
  transform: rotate3d(.5, 1, 0, 15deg);
  box-shadow: rgba(200, 255, 0, .12) 0px 30px 40px -10px
}

.card-3d-content {
  background: var(--lime);
  border-radius: 0 0 14px 14px;
  transition: all .5s ease-in-out;
  padding: 50px 25px 25px 25px;
  transform-style: preserve-3d
}

.card-3d-content h3 {
  color: #0a0a0a;
  font-size: 1.3rem;
  font-weight: 900;
  transform: translate3d(0, 0, 30px);
  transition: transform .4s
}

.card-3d-content:hover h3 {
  transform: translate3d(0, 0, 50px)
}

.card-3d-content .pc-price {
  transform: translate3d(0, 0, 20px);
  margin: .5rem 0
}

.card-3d-content .pc-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0a0a0a
}

.card-3d-content .pc-period {
  color: rgba(0,0,0,.5);
  font-size: .85rem
}

.card-3d-content .pc-desc {
  color: rgba(0,0,0,.7);
  font-size: .85rem;
  transform: translate3d(0, 0, 15px);
  margin-bottom: 1rem
}

.card-3d-content .pc-features {
  list-style: none;
  transform: translate3d(0, 0, 10px);
  margin-bottom: 1.5rem
}

.card-3d-content .pc-features li {
  font-size: .82rem;
  color: #0a0a0a;
  padding: .25rem 0;
  font-weight: 500
}

.card-3d-content .pc-features li.dim {
  opacity: .4
}

.card-3d-content .pc-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
  transform: translate3d(0, 0, 40px);
  display: inline-block
}

.card-3d-content .btn-drip,
.card-3d-content .btn-shiny {
  transform: translate3d(0, 0, 25px)
}

.card-3d-date {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 55px;
  width: 55px;
  background: #0a0a0a;
  border: 1px solid var(--lime);
  border-radius: 10px;
  padding: 8px;
  transform: translate3d(0, 0, 60px);
  box-shadow: rgba(100, 100, 111, .2) 0px 17px 10px -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.c3d-label {
  color: var(--lime);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px
}

.c3d-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--lime)
}

.card-3d-wrap.featured .card-3d {
  border-color: var(--lime);
  box-shadow: rgba(200, 255, 0, .15) 0px 30px 40px -10px
}

.card-3d-wrap.featured .pc-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0a0a0a;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 5
}

@media(max-width: 768px) {
  .pricing-3d {
    grid-template-columns: 1fr;
    max-width: 350px
  }
}

/* ══ COOKIE CONSENT ══ */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 320px;
  background: #111114;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  backdrop-filter: blur(20px);
  animation: cookieSlide .5s cubic-bezier(.25,.8,.25,1)
}

.cookie-popup.hidden {
  display: none
}

@keyframes cookieSlide {
  from { transform: translateY(120%); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}

.cookie-popup svg {
  width: 42px;
  height: 42px
}

.cookie-popup svg path {
  fill: var(--lime)
}

.cookie-popup .cookie-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff
}

.cookie-popup .cookie-desc {
  text-align: center;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  line-height: 1.5
}

.cookie-btns {
  display: flex;
  gap: 14px
}

.cookie-accept {
  width: 90px;
  height: 32px;
  background: var(--lime);
  border: none;
  color: #0a0a0a;
  cursor: pointer;
  font-weight: 700;
  font-size: .78rem;
  border-radius: 20px;
  transition: all .25s
}

.cookie-accept:hover {
  background: #d4ff33;
  box-shadow: 0 4px 15px rgba(200,255,0,.3);
  transform: translateY(-1px)
}

.cookie-decline {
  width: 90px;
  height: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-weight: 600;
  font-size: .78rem;
  border-radius: 20px;
  transition: all .25s
}

.cookie-decline:hover {
  background: rgba(255,255,255,.1);
  color: #fff
}

.cookie.btn-outline-pill:hover { background: #fff; color: #000; border-color: #fff; }

/* ══ LIQUID BUTTON ══ */
.btn-liquid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--lime);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(200,255,0,0.3), 0 0 0 0 rgba(200,255,0,0.5);
  animation: liquid-pulse 2s infinite;
}
.btn-liquid::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
  pointer-events: none;
}
.btn-liquid:hover::before {
  opacity: 0.4;
  transform: scale(1);
}
.btn-liquid:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(200,255,0,0.4), 0 0 20px rgba(200,255,0,0.6);
}
@keyframes liquid-pulse {
  0% { box-shadow: 0 10px 20px rgba(200,255,0,0.3), 0 0 0 0 rgba(200,255,0,0.5); }
  70% { box-shadow: 0 10px 20px rgba(200,255,0,0.3), 0 0 0 15px rgba(200,255,0,0); }
  100% { box-shadow: 0 10px 20px rgba(200,255,0,0.3), 0 0 0 0 rgba(200,255,0,0); }
}

/* ══ 3D CARDS (MEMBERSHIP) ══ */
.cell {
  position: relative
}

.cell::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent
}

.cell img,
.cell video {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none
}

/* ══ BOT PROMOTION PAGE ══ */
.promo-hero {
  padding: 120px 2rem 3rem;
  text-align: center
}

.promo-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--lime), #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem
}

.promo-hero p {
  color: var(--dim);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem
}

.bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 2rem
}

.bot-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--edge);
  border-radius: 20px;
  overflow: hidden;
  transition: all .4s ease
}

.bot-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 20px 50px rgba(0,0,0,.3)
}

.bot-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #111;
  display: block
}

.bot-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem
}

.bot-card-body {
  padding: 1.5rem
}

.bot-card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: .5rem
}

.bot-card-body .bot-platform {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: .8rem
}

.bot-platform.discord { background: rgba(88,101,242,.15); color: #7289da }
.bot-platform.telegram { background: rgba(0,136,204,.15); color: #0088cc }
.bot-platform.whatsapp { background: rgba(37,211,102,.15); color: #25d366 }

.bot-card-body p {
  color: var(--dim);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem
}

.bot-card-body .bot-features {
  list-style: none;
  margin-bottom: 1.5rem
}

.bot-card-body .bot-features li {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  padding: .2rem 0
}

.bot-invite-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .85rem;
  border: none;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none
}

.bot-invite-btn.discord {
  background: #5865F2;
  color: #fff
}

.bot-invite-btn.telegram {
  background: #0088cc;
  color: #fff
}

.bot-invite-btn.whatsapp {
  background: #25d366;
  color: #fff
}

.bot-invite-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.3)
}

.bot-card .bot-img-upload {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 10px;
  cursor: pointer;
  color: var(--dim);
  font-size: .75rem;
  transition: all .2s
}

.bot-img-upload:hover {
  border-color: var(--lime);
  color: var(--lime)
}

/* Instagram-Style User Hover Profile Card */
.hover-profile-popover {
  position: absolute;
  width: 280px;
  background: var(--ink);
  border: 1px solid var(--edge);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
  overflow: hidden;
}
.hover-profile-popover.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hpp-cover {
  height: 80px;
  background: linear-gradient(135deg, #1e1b4b, #7c3aed);
}
.hpp-body {
  padding: 0 1rem 1rem 1rem;
  position: relative;
  text-align: center;
}
.hpp-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: linear-gradient(135deg, #c084fc, #ec4899);
  margin: -30px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
}
.hpp-name {
  font-weight: 700;
  color: var(--w);
  font-size: 1.1rem;
}
.hpp-handle {
  color: var(--lime);
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.hpp-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}
.hpp-stat-box {
  text-align: center;
}
.hpp-stat-val {
  display: block;
  font-weight: 700;
  color: var(--w);
}
.hpp-stat-lbl {
  font-size: 0.7rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hpp-actions {
  display: flex;
  gap: 8px;
}
.hpp-btn {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}
.hpp-btn-follow {
  background: var(--lime);
  color: #000;
  border: none;
}
.hpp-btn-msg {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--edge);
  color: var(--w);
}
.hpp-btn-msg:hover {
  background: var(--w);
  color: #000;
}

/* Discord-style profile effect layer for website avatars */
.website-profile-effect {
  background-image: var(--profile-effect-image);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  background-blend-mode: var(--profile-effect-layer-blend-mode);
  mix-blend-mode: var(--profile-effect-blend-mode);
  opacity: var(--profile-effect-opacity);
  pointer-events: none;
}