:root {
  --bg-black: #000000;
  --bg-navy: #050a25;
  --gold: #eeb909;
  --gold-soft: rgba(233, 198, 102, .35);
  --gold-gradient: linear-gradient(90deg, #fffef6 0%, #f3dc96 20%, #fff8dd 50%, #d8af50 75%, #fffef6 100%);
  --btn-gradient: linear-gradient(135deg, #6d4cff, #5865F2, #4752c4);
  --text-white: #ffffff;
  --font-body: 'Poppins', sans-serif;
  --font-nav: 'Roboto', sans-serif;
  --font-display: 'Cinzel', serif;
  --max-width: 1224px;
}

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

body {
  background: var(--bg-navy);
  color: var(--text-white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  background: var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__icon { width: 36px; height: 24px; }

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  background: linear-gradient(90deg, #39c8ff, #a25bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav ul {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 15px;
  color: var(--gold);
  transition: opacity .2s ease;
}

.main-nav a:hover { opacity: .75; }

.main-nav a.is-active { color: #fff; text-decoration: underline; text-underline-offset: 6px; }

.has-dropdown { position: relative; }

.has-dropdown .caret { font-size: 11px; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  background: var(--bg-black);
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .18s ease;
  z-index: 20;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a { display: block; padding: 8px 18px; white-space: nowrap; }
.dropdown a:hover { background: rgba(238, 185, 9, .08); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 3px;
  margin-right: 6px;
}

.lang-switch__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: opacity .15s ease, background .15s ease, color .15s ease;
}

.lang-switch__btn:hover { color: rgba(255,255,255,.85); }
.lang-switch__btn.is-active { color: var(--bg-black); background: var(--gold); }

.social-icon, .cart-icon { color: var(--gold); width: 22px; height: 22px; }
.social-icon svg, .cart-icon svg { width: 100%; height: 100%; }
.social-icon:hover, .cart-icon:hover { opacity: .75; }

/* ---------- Layout helpers ---------- */
main { max-width: var(--max-width); margin: 0 auto; padding: 48px 20px; }

/* ---------- Pill titles (gold foil) ---------- */
.pill-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18,22,32,.98), rgba(10,12,18,.98));
  border: 1px solid var(--gold-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 10px rgba(233,198,102,.08);

  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: .04em;
  text-transform: uppercase;

  background-image: var(--gold-gradient);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foil 8s linear infinite;
}

.pill-title::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #fff6d6, #d7b056, #fff0b2, #a87c21, #fff6d6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pill-title--lg {
  display: flex;
  margin: 0 auto 40px;
  width: fit-content;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.hero__image { border-radius: 12px; width: 100%; }

.hero__text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero__mascot-corner {
  display: block;
  width: 200px;
  max-width: 60%;
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

@media (max-width: 900px) {
  .hero__mascot-corner { width: 160px; }
}

/* ---------- Game cards ---------- */
.card-grid {
  display: grid;
  gap: 40px;
}

.card-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid--2 {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  max-width: 700px;
  margin: 0 auto;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 940px;
  margin: 0 auto;
}

.game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(233,198,102,.2);
  border-radius: 20px;
  padding: 20px 20px 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
}

.game-card__media {
  position: relative;
  width: 100%;
  margin-bottom: 4px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}

.game-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.platform-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, .18);
}

.platform-badge--android { border-color: rgba(164, 198, 57, .5); color: #c3e86b; }
.platform-badge--windows { border-color: rgba(0, 173, 239, .5); color: #6fd4ff; }

.game-card .pill-title {
  font-size: clamp(16px, 2vw, 22px);
  padding: 4px 22px;
  max-width: 100%;
  white-space: normal;
}

.game-card__subtitle {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,245,215,.8);
  text-shadow: 0 0 8px rgba(233,198,102,.15);
}

.game-card .btn-cta {
  margin-top: auto;
}

.btn-cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 14px;
  background: var(--btn-gradient);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 15px rgba(88,101,242,.35), inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88,101,242,.55), inset 0 1px 0 rgba(255,255,255,.2);
}

.btn-cta--disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(.4);
}

.zuki-cta__social {
  margin-top: 14px;
}

.zuki-cta__social-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}

.zuki-cta__social-icons {
  display: flex;
  gap: 16px;
}

.catalog { margin-bottom: 72px; }

/* ---------- Page hero (text-only, home/other pages) ---------- */
.page-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.zuki-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 56px;
  max-width: 780px;
  padding: 20px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(233,198,102,.18);
  border-radius: 20px;
}

.zuki-cta__image {
  max-width: 150px;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.35));
}

.zuki-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.zuki-cta__text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 640px) {
  .zuki-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .zuki-cta__image { max-width: 130px; }
  .zuki-cta__content { align-items: center; }
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  background-image: var(--gold-gradient);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foil 8s linear infinite;
  margin-bottom: 20px;
}

.page-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.75);
}

/* ---------- Feature cards ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 72px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(18,22,32,.9), rgba(10,12,18,.9));
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: 26px 24px;
}

.feature-card__icon { width: 30px; height: 30px; color: var(--gold); display: block; margin-bottom: 14px; }

.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 8px;
}

.feature-card p { font-size: 14px; color: rgba(255,255,255,.75); }

/* ---------- Team section ---------- */
.team {
  text-align: center;
  margin-bottom: 72px;
}

.team__intro {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 16px;
  color: rgba(255,255,255,.8);
}

.team__photo {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 14px;
}

/* ---------- Product pages (purple gradient background) ---------- */
.product-page {
  background: linear-gradient(180deg, #000 0%, #000 12%, #2a1454 55%, #a221c9 100%);
}

.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.product-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 18px rgba(160,90,255,.6), 0 0 40px rgba(80,140,255,.35);
  margin-bottom: 20px;
  grid-column: 1 / -1;
  text-align: center;
}

.product-hero__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

.product-hero__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.product-hero__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.product-hero__body p {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  max-width: 480px;
}

.product-hero__body p strong { color: #fff; }

.product-hero__tagline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  background-image: var(--gold-gradient);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foil 8s linear infinite;
  text-shadow: 0 0 30px rgba(233,198,102,.35);
}

.product-hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 10px 0 6px;
}

.product-tag {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  font-family: var(--font-nav);
  font-size: 13px;
  color: #fff;
}

.product-hero--centered { grid-template-columns: 1fr; max-width: 1100px; margin: 0 auto 56px; }

@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; }
}

/* ---------- Gods Unchained hero ---------- */
.gu-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
}

.gu-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gu-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(5,10,25,.55) 55%, rgba(5,10,25,.92) 100%);
}

.gu-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gu-hero__tagline {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin: 6px 0 18px;
}

.gu-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 28px;
}

.gu-hero__note {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
}

/* ---------- Torneos (gold gradient background) ---------- */
.torneos-page {
  background: linear-gradient(180deg, #000 0%, #000 15%, #6b5514 55%, #d8ae3f 100%);
}

.tournament-grid { margin-bottom: 72px; }

.game-card .tournament-badge {
  font-size: clamp(12px, 1.6vw, 15px);
  padding: 6px 18px;
}

/* ---------- Software blocks ---------- */
.software-block {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 88px;
}

.software-block__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-nav);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow-icon { width: 16px; height: 16px; }

.software-block__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin: 0 0 20px;
}

.software-block__text {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  max-width: 680px;
  margin: 0 auto 16px;
}

.software-block__image {
  width: 100%;
  border-radius: 12px;
  margin: 28px 0;
}

.software-block .btn-cta { margin-top: 8px; }

/* ---------- Empty store page ---------- */
.store-empty {
  position: relative;
  max-width: none;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
  margin: 0;
}

.store-empty__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  transform: scale(1.05);
}

.store-empty__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(5,10,37,.55), rgba(0,0,0,.92));
}

.store-empty__card {
  position: relative;
  z-index: 1;
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 48px 40px;
  border-radius: 20px;
  background: rgba(5,10,25,.55);
  border: 1px solid var(--gold-soft);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.store-empty__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.wip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(238,185,9,.12);
  border: 1px solid var(--gold-soft);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

.store-empty__text {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

/* ---------- Legal / privacy pages ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto 72px;
}

.legal__updated {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin: 40px 0 14px;
}

.legal h2:first-of-type { margin-top: 0; }

.legal p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 14px; }

.legal ul { margin: 0 0 14px 20px; }
.legal li { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 8px; list-style: disc; }

.legal a { color: var(--gold); text-decoration: underline; }

.legal strong { color: #fff; }

/* ---------- Token panel ---------- */
.token-panel {
  max-width: 620px;
  margin: 0 auto 72px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
}

.token-panel__logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.token-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 8px;
}

.token-panel__subtitle {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}

.token-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.token-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: left;
}

.token-stat__label {
  display: block;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}

.token-stat__value { font-weight: 600; font-size: 15px; }
.token-stat__value--accent { color: #7ee08a; }

.token-address {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
  text-align: left;
}

.token-address__label {
  display: block;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

.token-address__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.token-address__row code {
  font-family: monospace;
  font-size: 13px;
  color: #fff;
  overflow-wrap: anywhere;
}

.copy-btn {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.token-address--action { text-align: center; }
.token-address--action .token-address__row { margin-bottom: 16px; }

.btn-thirdweb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #1a1200;
  border-radius: 14px;
  background: linear-gradient(90deg, #ffb238, #ff8a00);
}

.token-address__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
  margin: 8px 0 16px;
}

.btn-view,
.btn-stake,
.btn-bridge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 14px;
  border: 1px solid rgba(var(--neon-rgb), .85);
  box-shadow:
    0 4px 0 rgba(var(--neon-rgb), .35),
    0 0 14px rgba(var(--neon-rgb), .55),
    0 0 30px rgba(var(--neon-rgb), .3),
    inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .12s ease, box-shadow .12s ease;
  animation: btn-neon-seq 2.4s ease-in-out infinite;
}
.btn-view:hover,
.btn-stake:hover,
.btn-bridge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 rgba(var(--neon-rgb), .4),
    0 0 22px rgba(var(--neon-rgb), .8),
    0 0 42px rgba(var(--neon-rgb), .5),
    inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-view:active,
.btn-stake:active,
.btn-bridge:active {
  transform: translateY(2px);
}

@keyframes btn-neon-seq {
  0%, 100% {
    box-shadow:
      0 4px 0 rgba(var(--neon-rgb), .35),
      0 0 14px rgba(var(--neon-rgb), .55),
      0 0 30px rgba(var(--neon-rgb), .3),
      inset 0 1px 0 rgba(255,255,255,.3);
  }
  50% {
    box-shadow:
      0 4px 0 rgba(var(--neon-rgb), .35),
      0 0 24px rgba(var(--neon-rgb), .9),
      0 0 48px rgba(var(--neon-rgb), .6),
      inset 0 1px 0 rgba(255,255,255,.4);
  }
}

.btn-view {
  --neon-rgb: 110, 230, 255;
  color: #eafcff;
  background: linear-gradient(180deg, rgba(90,220,255,.35), rgba(10,20,35,.9) 70%);
  text-shadow: 0 0 10px rgba(110,230,255,.8);
  animation-delay: 0s;
}

.btn-stake {
  --neon-rgb: 140, 255, 210;
  color: #04231a;
  background: linear-gradient(90deg, #1fd88f, #17b892);
  animation-delay: .25s;
}

.btn-bridge {
  --neon-rgb: 205, 195, 255;
  animation-delay: .5s;
}

/* ---------- Contact form ---------- */
.contact {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 72px;
}

.contact__intro {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin: 16px 0 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-nav);
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.contact-form input,
.contact-form textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form .btn-cta {
  border: none;
  cursor: pointer;
  align-self: center;
}

@keyframes foil {
  from { background-position: 0% 50%; }
  to   { background-position: 250% 50%; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-black);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 96px;
  padding: 48px 20px;
  text-align: center;
}

.site-footer__col h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.site-footer__col p { font-size: 14px; margin-bottom: 6px; }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__col .copyright { opacity: .6; margin-top: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .site-header { padding: 16px 20px; }
  .main-nav ul { gap: 16px; }
}

/* ---------- Zuki chat page (fits one viewport, no page scroll) ---------- */
html:has(body.zuki-body) { height: 100%; overflow: hidden; }

body.zuki-body {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.zuki-body .site-header { flex: 0 0 auto; }

.zuki-main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  overflow: hidden;
}

.zuki-main__title {
  flex: 0 0 auto;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 30px);
  text-align: center;
  background-image: var(--gold-gradient);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zuki-page {
  display: flex;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  flex: 1;
  min-height: 0;
}

.zuki-page__avatar {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.zuki-page__avatar img {
  max-width: 100%;
  max-height: 42vh;
  width: auto;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.4));
}

.zuki-page__name {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  background-image: var(--gold-gradient);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zuki-page__role {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

.zuki-chat {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #0e0e14;
  border: 1px solid rgba(233,198,102,.25);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

.zuki-chat__messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zuki-chat__msg {
  max-width: 85%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  word-wrap: break-word;
}

.zuki-chat__msg--assistant {
  align-self: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border-bottom-left-radius: 3px;
}

.zuki-chat__msg--user {
  align-self: flex-end;
  background: var(--gold);
  color: var(--bg-black);
  font-weight: 500;
  border-bottom-right-radius: 3px;
}

.zuki-chat__msg--typing { opacity: .5; }

.zuki-chat__msg a { color: inherit; text-decoration: underline; }
.zuki-chat__msg--assistant a { color: var(--gold); }

.zuki-chat__toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px 12px 0;
}

.zuki-voice-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  color: #fff;
  background: var(--btn-gradient);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 12px rgba(88,101,242,.4), inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
}
.zuki-voice-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(88,101,242,.55), inset 0 1px 0 rgba(255,255,255,.25); }
.zuki-voice-btn:active { transform: translateY(1px); box-shadow: 0 2px 6px rgba(88,101,242,.4), inset 0 1px 0 rgba(255,255,255,.15); }

#zukiVoiceBtn[aria-pressed="false"],
#zukiMicBtn[aria-pressed="false"] {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  box-shadow: inset 0 2px 5px rgba(0,0,0,.4);
}
#zukiVoiceBtn[aria-pressed="false"]:hover,
#zukiMicBtn[aria-pressed="false"]:hover { transform: none; box-shadow: inset 0 2px 5px rgba(0,0,0,.4); }

.zuki-mic-btn--listening {
  background: linear-gradient(135deg, #ff5c5c, #e63946);
  border-color: rgba(255,255,255,.25);
  animation: zuki-mic-pulse 1.2s ease-in-out infinite;
}
@keyframes zuki-mic-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(230,57,70,.5), inset 0 1px 0 rgba(255,255,255,.2); }
  50% { box-shadow: 0 4px 22px rgba(230,57,70,.9), inset 0 1px 0 rgba(255,255,255,.3); }
}

.zuki-mic-btn[hidden] { display: none; }

.zuki-chat__form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(233,198,102,.2);
}

.zuki-chat__input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(233,198,102,.25);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.zuki-chat__input:focus { outline: none; border-color: var(--gold); }

.zuki-chat__send {
  flex: 0 0 auto;
  background: var(--gold);
  color: var(--bg-black);
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}
.zuki-chat__send:hover { opacity: .9; }

@media (max-width: 720px) {
  body.zuki-body .site-header { padding: 8px 12px; gap: 6px 10px; }
  body.zuki-body .logo__icon { width: 28px; height: 19px; }
  body.zuki-body .logo__text { font-size: 12px; }
  body.zuki-body .main-nav ul { gap: 8px 12px; }
  body.zuki-body .main-nav a { font-size: 11px; }
  body.zuki-body .header-actions { gap: 8px; }
  body.zuki-body .lang-switch__btn { padding: 3px 7px; font-size: 11px; }
  body.zuki-body .social-icon, body.zuki-body .cart-icon { width: 16px; height: 16px; }

  .zuki-main { padding: 6px 10px; }
  .zuki-main__title { font-size: 15px; margin-bottom: 4px; }
  .zuki-page {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .zuki-page__avatar { flex: 0 0 auto; flex-direction: row; gap: 8px; }
  .zuki-page__avatar img { max-height: 7vh; }
  .zuki-page__name { font-size: 14px; margin-top: 0; }
  .zuki-page__role { font-size: 10px; margin-top: 0; }
  .zuki-chat { width: 100%; min-height: 0; }
  .zuki-chat__messages { padding: 10px; gap: 8px; }
  .zuki-chat__msg { padding: 7px 10px; font-size: 13px; line-height: 1.35; }
  .zuki-chat__form { padding: 8px; gap: 6px; }
  .zuki-chat__input { padding: 8px 10px; font-size: 13px; }
  .zuki-chat__send { padding: 0 12px; font-size: 11px; }
}
