:root {
  --bg:        #0f0a16;
  --bg-2:      #150d20;
  --card:      #1a1029;
  --card-2:    #1f1430;
  --border:    rgba(255, 130, 200, 0.12);
  --border-2:  rgba(255, 130, 200, 0.26);

  --pink:      #ff3d92;
  --pink-2:    #ff79b8;
  --purple:    #a855f7;
  --purple-2:  #c77dff;

  --text:      #f6ecf6;
  --muted:     #bca7cd;
  --faint:     #8f7aa6;

  --head: "Sora", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --pixel: "Press Start 2P", ui-monospace, monospace;

  --wrap: 1120px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 24px;

  --grad: linear-gradient(95deg, var(--pink), var(--purple));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.9);
  --glow: 0 14px 40px -12px rgba(255, 61, 146, 0.5);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(15px, 0.4vw + 14px, 16.5px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--head); font-weight: 700; line-height: 1.1; }

.container { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--pink); color: #fff;
  padding: 0.7rem 1.1rem; border-radius: 0 0 12px 0; font-weight: 600; z-index: 100;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--pink-2); outline-offset: 3px; border-radius: 6px; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.6rem;
  min-height: 54px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: var(--glow);
  transition: transform 0.3s var(--ease), filter 0.25s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 22px 50px -14px rgba(255, 61, 146, 0.65); }
.btn:active { transform: translateY(0); }
.btn--sm { min-height: 42px; padding: 0 1.2rem; font-size: 0.9rem; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0.75rem var(--gut);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { border-radius: 9px; }
.brand__word { font-family: var(--head); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; }
.brand__word span { color: var(--pink-2); }
.nav__links { display: flex; gap: clamp(1rem, 2.6vw, 1.9rem); margin-left: auto; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.25s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 0.6rem; }
.btn__icon { width: 18px; height: 18px; flex: none; }
.btn--ghost {
  background: transparent;
  color: var(--pink-2);
  box-shadow: inset 0 0 0 1.6px var(--border-2);
}
.btn--ghost:hover {
  background: rgba(255, 61, 146, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1.6px var(--pink);
}

.hero {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 11vw, 8rem) var(--gut) clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(68vw 50vh at 50% -12%, rgba(255, 61, 146, 0.26), transparent 60%),
    radial-gradient(42vw 44vh at 84% 26%, rgba(168, 85, 247, 0.16), transparent 62%);
}
.hero__glow::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(80vw 80vh at 50% 0%, #000, transparent 72%);
  mask-image: radial-gradient(80vw 80vh at 50% 0%, #000, transparent 72%);
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; margin-inline: auto; }
.hero__title {
  font-size: clamp(2.7rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero__sub {
  max-width: 36rem;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.ip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 0.4rem 0 1.1rem;
  min-height: 54px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border-2);
}
.ip__label {
  font-family: var(--pixel);
  font-size: 0.5rem;
  color: var(--faint);
  letter-spacing: 0.05em;
}
.ip__value { font-family: var(--pixel); font-size: clamp(0.72rem, 2.2vw, 0.86rem); color: var(--text); }
.ip__copy {
  border: 0;
  padding: 0 1.1rem;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 61, 146, 0.14);
  color: var(--pink-2);
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.ip__copy:hover { background: var(--grad); color: #fff; }
.ip__copy.is-done { background: var(--purple); color: #fff; }
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.8rem 0 0;
  font-size: 0.94rem;
  color: var(--muted);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--faint); }
.dot.is-online { background: #3ad16b; box-shadow: 0 0 0 0 rgba(58, 209, 107, 0.5); animation: pulse 2.6s var(--ease) infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(58, 209, 107, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(58, 209, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 209, 107, 0); }
}

.band { padding-block: clamp(4rem, 9vw, 7rem); }
.band--alt { background: linear-gradient(180deg, transparent, var(--bg-2) 12%, var(--bg-2) 88%, transparent); }

.sec-head { max-width: 44rem; margin: 0 0 clamp(2.4rem, 5vw, 3.4rem); }
.sec-title {
  position: relative;
  padding-top: 1.4rem;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.sec-title::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 46px; height: 4px;
  border-radius: 2px;
  background: var(--grad);
}
.sec-sub { margin: 0.9rem 0 0; color: var(--muted); font-size: 1.05rem; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.feature {
  position: relative;
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: var(--border-2); }
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 1.3rem;
  border-radius: 16px;
  color: var(--pink-2);
  background: linear-gradient(160deg, rgba(255, 61, 146, 0.18), rgba(168, 85, 247, 0.14));
  border: 1px solid var(--border-2);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature__text { margin: 0; color: var(--muted); font-size: 0.98rem; }
.feature--soon {
  background: transparent;
  border-style: dashed;
  border-color: var(--border-2);
  box-shadow: none;
}
.feature--soon:hover { border-color: var(--pink-2); }
.feature--soon .feature__icon {
  background: transparent;
  border-style: dashed;
  color: var(--purple-2);
}
.badge {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-family: var(--pixel);
  font-size: 0.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink-2);
  background: rgba(255, 61, 146, 0.14);
  border: 1px solid var(--border-2);
}

.tabs { max-width: 760px; }
.tabs__bar { display: flex; justify-content: flex-start; gap: 0.7rem; margin-bottom: clamp(1.6rem, 4vw, 2.4rem); flex-wrap: wrap; }
.tab {
  padding: 0.8rem 1.5rem;
  min-height: 48px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tab:hover { color: var(--text); border-color: var(--border-2); }
.tab.is-active { color: #fff; background: var(--grad); border-color: transparent; box-shadow: var(--glow); }
.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: fade 0.45s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.steps { display: grid; gap: 0.8rem; }
.step {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
}
.step__num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: var(--grad);
}
.step__title { font-size: 1.15rem; font-weight: 700; margin: 0 0 0.15rem; }
.step__text { margin: 0; color: var(--muted); font-size: 0.96rem; }
.step__text code {
  font-family: var(--pixel);
  font-size: 0.72em;
  color: var(--pink-2);
  background: rgba(255, 61, 146, 0.14);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.tut-toc { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1rem; }
.tut-toc a {
  font-size: 0.9rem; color: var(--muted); text-decoration: none;
  border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem 0.95rem;
  transition: border-color 0.15s, color 0.15s;
}
.tut-toc a:hover { color: #fff; border-color: var(--border-2); }
.tut-section { margin-top: clamp(2.6rem, 6vw, 4rem); scroll-margin-top: 90px; }
.feature__cmds { margin: 0.85rem 0 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.feature__cmds code {
  font-family: var(--pixel);
  font-size: 0.66em;
  color: var(--pink-2);
  background: rgba(255, 61, 146, 0.14);
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
}

.footer { border-top: 1px solid var(--border); padding-block: 2.8rem; color: var(--muted); }
.footer__top {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1.2rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--border);
}
.footer__links { display: flex; gap: clamp(1rem, 3vw, 1.8rem); }
.footer__links a { color: var(--muted); font-size: 0.94rem; transition: color 0.25s var(--ease); }
.footer__links a:hover { color: var(--text); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 0.6rem; padding-top: 1.5rem;
}
.footer__legal { margin: 0; display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; }
.footer__legal a { color: var(--pink-2); transition: color 0.25s var(--ease); }
.footer__legal a:hover { color: var(--text); }
.footer__copy { margin: 0; font-size: 0.84rem; color: var(--faint); }
.footer__disclaimer { margin: 1.3rem 0 0; max-width: 48rem; font-size: 0.76rem; line-height: 1.6; color: var(--faint); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
.grid3 .feature:nth-child(2) { transition-delay: 0.08s; }
.grid3 .feature:nth-child(3) { transition-delay: 0.16s; }

.account { max-width: 640px; margin-inline: auto; padding: clamp(3rem, 8vw, 5.5rem) var(--gut) 5rem; }
.account__card {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.account__title { font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; }
.account__lead { margin: 0.8rem 0 1.8rem; color: var(--muted); }
.account__lead code, .account__steps code {
  font-family: var(--pixel); font-size: 0.78em; color: var(--pink-2);
  background: rgba(255, 61, 146, 0.14); padding: 0.2rem 0.45rem; border-radius: 6px;
}
.otp-form { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.otp-input {
  flex: 0 1 260px;
  min-height: 56px;
  padding: 0 1.2rem;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-family: var(--pixel);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.otp-input::placeholder { color: var(--faint); letter-spacing: 0.12em; }
.otp-input:focus-visible { outline: 2px solid var(--pink-2); outline-offset: 2px; }
.otp-form .btn { flex: 0 0 auto; }
.otp-msg { min-height: 1.2rem; margin: 0.9rem 0 0; font-size: 0.92rem; color: var(--muted); }
.otp-msg.ok { color: #3ad16b; }
.otp-msg.err { color: #ff6b8a; }
.account__steps { margin: 2rem 0 0; display: grid; gap: 0.7rem; }
.account__steps li { display: flex; align-items: center; gap: 0.9rem; color: var(--muted); }
.account__steps p { margin: 0; }
.account__head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.account__avatar { border-radius: 14px; border: 1px solid var(--border-2); }
.account__uuid { margin: 0.2rem 0 0; font-family: var(--pixel); font-size: 0.5rem; color: var(--faint); letter-spacing: 0.02em; }
.account__status { display: inline-flex; align-items: center; gap: 0.5rem; margin-left: auto; font-size: 0.9rem; color: var(--muted); }
.account__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.sync-card {
  position: relative;
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.sync-card--soon { border-style: dashed; }
.sync-card__label { font-size: 0.82rem; color: var(--faint); }
.sync-card__value { font-family: var(--head); font-weight: 700; font-size: 1.2rem; }
.sync-card--soon .sync-card__value { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
@media (max-width: 460px) { .account__grid { grid-template-columns: 1fr; } }

.leaderboard { max-width: 640px; margin: clamp(2rem, 5vw, 3rem) auto 0; }
.leaderboard__head { margin-bottom: 1.4rem; }
.leaderboard__title {
  position: relative;
  padding-top: 1.2rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.leaderboard__title::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 42px; height: 4px;
  border-radius: 2px;
  background: var(--grad);
}
.lb-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.lb-tab { min-height: 40px; padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.lb-list { display: flex; flex-direction: column; gap: 0.5rem; }
.lb-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.lb-row:hover { border-color: var(--border-2); transform: translateX(2px); }
.lb-pos {
  flex: none;
  width: 2.4rem;
  font-family: var(--pixel);
  font-size: 0.62rem;
  color: var(--pink-2);
  letter-spacing: 0.02em;
}
.lb-row:nth-child(1) .lb-pos { color: #ffd24a; }
.lb-row:nth-child(2) .lb-pos { color: #d8d8e6; }
.lb-row:nth-child(3) .lb-pos { color: #e0944a; }
.lb-avatar { flex: none; width: 32px; height: 32px; border-radius: 9px; border: 1px solid var(--border-2); }
.lb-name { font-family: var(--head); font-weight: 600; font-size: 0.98rem; }
.lb-value { margin-left: auto; font-family: var(--head); font-weight: 700; color: var(--text); }
.lb-empty { padding: 1.2rem 1.3rem; border-radius: var(--radius); background: var(--bg-2); border: 1px dashed var(--border-2); color: var(--muted); font-size: 0.94rem; }

@media (min-width: 720px) {
  .account--auth {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100dvh - 73px);
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }
}

.page { max-width: var(--wrap); margin-inline: auto; padding: clamp(2.4rem, 6vw, 4rem) var(--gut) 5rem; }
.page__head { margin-bottom: clamp(1.6rem, 4vw, 2.4rem); }
.page__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.025em; }
.page__sub { margin: 0.7rem 0 0; color: var(--muted); font-size: 1.05rem; }
.page__notice {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  margin: 0 0 1.6rem; padding: 0.9rem 1.2rem; border-radius: var(--radius);
  background: rgba(255, 61, 146, 0.1); border: 1px solid var(--border-2); color: var(--pink-2); font-size: 0.95rem;
}
.page__notice a { color: #fff; text-decoration: underline; }
.balance-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px; background: var(--card); border: 1px solid var(--border-2);
  font-family: var(--head); font-weight: 700;
}
.balance-pill span { color: var(--pink-2); font-family: var(--pixel); font-size: 0.55rem; }

.markt-toolbar { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; margin-bottom: 1.4rem; }
.markt-search {
  flex: 1 1 220px; min-height: 46px; padding: 0 1rem; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--border-2); color: var(--text); font-family: var(--body); font-size: 0.95rem;
}
.markt-search:focus-visible { outline: 2px solid var(--pink-2); outline-offset: 2px; }
.markt-count { color: var(--faint); font-size: 0.9rem; }
.markt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.8rem; }
.ah-card {
  position: relative; display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.1rem 1.1rem 1rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ah-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.ah-card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(255,61,146,0.16), rgba(168,85,247,0.14)); border: 1px solid var(--border-2);
  font-size: 1.5rem;
}
.ah-card.is-ench .ah-card__icon { box-shadow: 0 0 16px -4px var(--purple-2); }
.ah-card__name { font-family: var(--head); font-weight: 700; font-size: 0.98rem; line-height: 1.2; }
.ah-card__amount { color: var(--faint); font-size: 0.8rem; }
.ah-card__foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; gap: 0.5rem; }
.ah-card__price { font-family: var(--head); font-weight: 800; color: var(--pink-2); }
.ah-card__seller { font-size: 0.72rem; color: var(--faint); text-align: right; }
.ah-ench-badge {
  position: absolute; top: 0.8rem; right: 0.8rem; font-family: var(--pixel); font-size: 0.4rem;
  color: var(--purple-2); background: rgba(168,85,247,0.16); border: 1px solid var(--border-2);
  padding: 0.3rem 0.45rem; border-radius: 999px; text-transform: uppercase;
}
.empty-state { padding: 2.2rem; text-align: center; color: var(--muted); border: 1px dashed var(--border-2); border-radius: var(--radius-lg); }

.casino-wrap { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(260px, 360px); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 760px) { .casino-wrap { grid-template-columns: 1fr; } }
.wheel-stage { position: relative; width: min(100%, 380px); aspect-ratio: 1; margin-inline: auto; }
.wheel-stage__pointer {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent; border-top: 22px solid var(--pink);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.wheel {
  width: 100%; height: 100%; border-radius: 50%;
  transition: transform 4.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 0 6px var(--card-2), 0 0 0 8px var(--border-2), var(--shadow);
}
.wheel-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 64px; height: 64px; border-radius: 50%; background: var(--card-2); border: 2px solid var(--border-2);
  display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 800; color: var(--pink-2); font-size: 0.8rem;
}
.casino-panel { display: flex; flex-direction: column; gap: 1rem; }
.casino-card { padding: 1.4rem; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border); }
.bet-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.bet-input {
  flex: 1 1 120px; min-height: 50px; padding: 0 1rem; border-radius: 12px; background: var(--bg-2);
  border: 1px solid var(--border-2); color: var(--text); font-family: var(--head); font-weight: 700; font-size: 1.05rem;
}
.bet-input:focus-visible { outline: 2px solid var(--pink-2); outline-offset: 2px; }
.bet-quick { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.7rem; }
.bet-chip {
  padding: 0.4rem 0.8rem; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--border);
  color: var(--muted); font-size: 0.82rem; cursor: pointer; transition: all 0.2s var(--ease);
}
.bet-chip:hover { color: #fff; border-color: var(--pink); }
.casino-result { min-height: 2.6rem; text-align: center; font-family: var(--head); font-weight: 800; font-size: 1.3rem; }
.casino-result.win { color: #3ad16b; }
.casino-result.loss { color: #ff6b8a; }
.casino-history { display: flex; flex-direction: column; gap: 0.4rem; }
.casino-history__row { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--muted); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }

.stock-grid { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.stock-card {
  display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1rem; align-items: center;
  padding: 1.1rem 1.3rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}
.stock-card:hover { border-color: var(--border-2); }
.stock-card__main { display: flex; flex-direction: column; }
.stock-card__name { font-family: var(--head); font-weight: 700; }
.stock-card__sym { font-family: var(--pixel); font-size: 0.5rem; color: var(--faint); }
.stock-chart { grid-row: span 2; width: 140px; height: 48px; }
.stock-card__price { text-align: right; font-family: var(--head); font-weight: 800; font-size: 1.1rem; }
.stock-change { font-size: 0.85rem; font-weight: 700; }
.stock-change.up { color: #3ad16b; }
.stock-change.down { color: #ff6b8a; }
.stock-actions { grid-column: 1 / -1; display: flex; gap: 0.5rem; align-items: center; margin-top: 0.6rem; flex-wrap: wrap; }
.stock-actions input {
  width: 90px; min-height: 40px; padding: 0 0.7rem; border-radius: 10px; background: var(--bg-2);
  border: 1px solid var(--border-2); color: var(--text); font-family: var(--head); font-weight: 600;
}
.btn--buy { background: linear-gradient(95deg, #2ea76a, #3ad16b); box-shadow: none; min-height: 40px; padding: 0 1.1rem; font-size: 0.86rem; }
.btn--sell { background: var(--card-2); color: var(--pink-2); box-shadow: inset 0 0 0 1.4px var(--border-2); min-height: 40px; padding: 0 1.1rem; font-size: 0.86rem; }
.stock-hold { font-size: 0.8rem; color: var(--faint); margin-left: auto; }
.portfolio { margin-top: 2.4rem; }
.portfolio__row { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 1.1rem; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--border); margin-bottom: 0.5rem; }
.portfolio__pl.up { color: #3ad16b; }
.portfolio__pl.down { color: #ff6b8a; }

.account-features { margin-top: clamp(2rem, 5vw, 3rem); }

/* Playful hero header */
.account__card--hero { overflow: hidden; }
.account__card--hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(90% 120% at 0% 0%, rgba(255, 61, 146, 0.16), transparent 55%),
              radial-gradient(90% 120% at 100% 0%, rgba(168, 85, 247, 0.16), transparent 55%);
}
.account__hero { position: relative; z-index: 1; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.account__avatar-ring {
  position: relative; flex: none; padding: 4px; border-radius: 22px; background: var(--grad); box-shadow: var(--glow);
}
.account__card--hero .account__avatar { width: 88px; height: 88px; border-radius: 18px; border: 0; }
.account__avatar-badge {
  position: absolute; right: -3px; bottom: -3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--faint); border: 3px solid var(--card);
}
.account__avatar-badge.is-online { background: #3ad16b; box-shadow: 0 0 0 0 rgba(58, 209, 107, 0.5); animation: pulse 2.6s var(--ease) infinite; }
.account__eyebrow { margin: 0 0 0.1rem; font-family: var(--pixel); font-size: 0.55rem; color: var(--pink-2); letter-spacing: 0.04em; }
.account__hero-text .account__title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.account__status-pill {
  display: inline-block; margin-top: 0.5rem; padding: 0.25rem 0.8rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; color: var(--muted); background: var(--bg-2); border: 1px solid var(--border-2);
}

/* Arcade feature cards */
.arcade-title { font-family: var(--head); font-weight: 800; font-size: clamp(1.4rem, 4vw, 1.9rem); margin-bottom: 1.1rem; }
.arcade-title span { display: inline-block; animation: wiggle 2.5s var(--ease) infinite; }
@keyframes wiggle { 0%, 92%, 100% { transform: rotate(0); } 94% { transform: rotate(-12deg); } 97% { transform: rotate(12deg); } }
.arcade-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 0.8rem; }
.arcade-card {
  position: relative; display: flex; flex-direction: column; gap: 0.4rem; padding: 1.4rem 1.3rem 1.2rem;
  border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.arcade-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); opacity: 0.9;
}
.arcade-card:hover { transform: translateY(-5px) rotate(-0.5deg); border-color: var(--border-2); box-shadow: var(--glow); }
.arcade-card__emoji { color: var(--pink-2); line-height: 1; transition: transform 0.3s var(--ease); }
.arcade-card__emoji svg { width: 30px; height: 30px; }
.arcade-card:hover .arcade-card__emoji { transform: scale(1.12) rotate(-4deg); }
.arcade-card__title { font-family: var(--head); font-weight: 800; font-size: 1.25rem; }
.arcade-card__text { color: var(--muted); font-size: 0.9rem; margin: 0; flex: 1; }
.arcade-card__go { font-family: var(--pixel); font-size: 0.5rem; color: var(--pink-2); letter-spacing: 0.04em; margin-top: 0.3rem; }
.arcade-card--casino::after { background: linear-gradient(95deg, #ffd24a, #ff3d92); }
.arcade-card--aktien::after { background: linear-gradient(95deg, #3ad16b, #a855f7); }
.arcade-card--mg::after { background: linear-gradient(95deg, #c77dff, #ff79b8); }

.account-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center;
}
.account-split .sec-head { margin: 0; }
.account-teaser {
  width: 100%; max-width: 560px; margin: 0; padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1.4rem;
}
@media (max-width: 820px) {
  .account-split { grid-template-columns: 1fr; }
  .account-teaser { max-width: 640px; }
}
.account-teaser__list { display: flex; flex-direction: column; gap: 0.8rem; }
.account-teaser__list li { color: var(--muted); padding-left: 1.4rem; position: relative; }
.account-teaser__list li::before { content: "\203A"; position: absolute; left: 0; color: var(--pink-2); font-weight: 800; }
.account-teaser__list strong { color: var(--text); font-family: var(--head); font-weight: 700; }
.account-teaser .btn { align-self: flex-start; }

/* ── Exchange / Aktien (Coinbase-style) ───────────────────── */
.ex-balancebar { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; margin-bottom: 1.6rem; }
.ex-stat-pill {
  display: flex; flex-direction: column; gap: 0.15rem; padding: 0.7rem 1.1rem;
  border-radius: 14px; background: var(--card); border: 1px solid var(--border);
}
.ex-stat-pill span { font-size: 0.72rem; color: var(--faint); }
.ex-stat-pill b { font-family: var(--head); font-weight: 800; font-size: 1.05rem; }
.ex-stat-pill b.up { color: #3ad16b; } .ex-stat-pill b.down { color: #ff6b8a; }

.wc-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  background: linear-gradient(135deg, rgba(168,85,247,0.16), rgba(255,61,146,0.14));
  border: 1px solid var(--border-2);
  font-family: var(--head); font-weight: 800; font-size: 1.05rem; color: var(--text);
  letter-spacing: 0.02em;
}
.wc-chip__ico {
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe89a, #f5a623 60%, #c47a10);
  box-shadow: 0 0 8px rgba(245,166,35,0.5), inset 0 1px 1px rgba(255,255,255,0.45);
  flex: none;
}
.wc-chip b { font-weight: 800; }
.wc-chip small { font-size: 0.7rem; color: var(--faint); font-weight: 600; }

.ex-detail {
  padding: clamp(1.2rem, 3vw, 1.8rem); border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 1.6rem;
}
.ex-detail__top { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.coin-ico {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-weight: 800; font-size: 0.95rem; color: #fff;
}
.ex-detail__name { font-family: var(--head); font-weight: 800; font-size: 1.25rem; line-height: 1.1; }
.ex-detail__sym { font-family: var(--pixel); font-size: 0.5rem; color: var(--faint); }
.ex-detail__price { margin-left: auto; text-align: right; }
.ex-detail__price b { font-family: var(--head); font-weight: 800; font-size: 1.7rem; display: block; transition: color 0.4s; }
.ex-change { font-weight: 700; font-size: 0.95rem; }
.ex-change.up { color: #3ad16b; } .ex-change.down { color: #ff6b8a; }
.ex-chart { width: 100%; height: 200px; margin: 0.8rem 0 0.4rem; }
.ex-chart svg { width: 100%; height: 100%; display: block; }
.ex-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 0.6rem; margin-top: 1rem; }
.ex-stat { padding: 0.7rem 0.9rem; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--border); }
.ex-stat span { display: block; font-size: 0.72rem; color: var(--faint); margin-bottom: 0.2rem; }
.ex-stat b { font-family: var(--head); font-weight: 700; font-size: 0.98rem; }
.ex-trade { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.ex-trade input {
  width: 100px; min-height: 46px; padding: 0 0.8rem; border-radius: 12px; background: var(--bg-2);
  border: 1px solid var(--border-2); color: var(--text); font-family: var(--head); font-weight: 700; font-size: 1rem;
}
.ex-trade .btn--buy, .ex-trade .btn--sell { min-height: 46px; }
.ex-trade__cost { font-size: 0.86rem; color: var(--muted); margin-left: auto; text-align: right; }
.ex-trade__cost b { color: var(--text); font-family: var(--head); }

.ex-markets { border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border); overflow: hidden; }
.ex-markets__head {
  display: grid; grid-template-columns: 1.6fr 90px 1.1fr 1fr; gap: 0.8rem; align-items: center;
  padding: 0.8rem 1.2rem; font-size: 0.74rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.ex-row {
  display: grid; grid-template-columns: 1.6fr 90px 1.1fr 1fr; gap: 0.8rem; align-items: center;
  padding: 0.85rem 1.2rem; cursor: pointer; border-bottom: 1px solid var(--border); transition: background 0.2s var(--ease);
}
.ex-row:last-child { border-bottom: 0; }
.ex-row:hover { background: var(--card-2); }
.ex-row.is-active { background: color-mix(in srgb, var(--pink) 10%, transparent); }
.ex-row__asset { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.coin-ico--sm { width: 34px; height: 34px; font-size: 0.78rem; }
.ex-row__name { font-family: var(--head); font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ex-row__sym { font-family: var(--pixel); font-size: 0.45rem; color: var(--faint); }
.ex-row__spark { width: 90px; height: 34px; }
.ex-row__price { text-align: right; font-family: var(--head); font-weight: 700; transition: color 0.5s; }
.ex-row__chg { text-align: right; font-weight: 700; font-size: 0.9rem; }
.ex-row__chg.up { color: #3ad16b; } .ex-row__chg.down { color: #ff6b8a; }
.flash-up { animation: flashUp 0.6s var(--ease); }
.flash-down { animation: flashDown 0.6s var(--ease); }
@keyframes flashUp { 0% { color: #3ad16b; } 100% {} }
@keyframes flashDown { 0% { color: #ff6b8a; } 100% {} }
@media (max-width: 640px) {
  .ex-markets__head, .ex-row { grid-template-columns: 1.4fr 1fr 0.9fr; }
  .ex-row__sparkwrap, .ex-markets__head span.col-spark { display: none; }
}
.pf-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.6rem; margin-bottom: 1rem; }

/* ── Casino tabs + Blackjack ───────────────────────────────── */
#casino-tabs { margin-bottom: 1.6rem; }
.bj-table {
  max-width: 720px; margin-inline: auto; padding: clamp(1.4rem, 4vw, 2.2rem);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: radial-gradient(120% 90% at 50% 0%, rgba(58, 209, 107, 0.08), transparent 60%), var(--card);
  box-shadow: var(--shadow);
}
.bj-seat { text-align: center; margin-bottom: 1rem; }
.bj-seat__label { font-family: var(--head); font-weight: 700; font-size: 0.92rem; color: var(--muted); margin-bottom: 0.5rem; }
.bj-seat__label span { color: var(--pink-2); }
.bj-hand { display: flex; justify-content: center; gap: 0.4rem; min-height: 70px; flex-wrap: wrap; }
.bj-hand--sm { min-height: 0; gap: 0.25rem; }
.bj-card {
  width: 48px; height: 68px; border-radius: 8px; background: #f6ecf6; color: #1a1029;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.1rem;
  font-family: var(--head); box-shadow: 0 4px 12px -4px rgba(0,0,0,0.6); animation: dealIn 0.3s var(--ease);
}
.bj-hand--sm .bj-card { width: 30px; height: 42px; border-radius: 5px; }
.bj-card--red { color: #d11149; }
.bj-card__r { font-weight: 800; font-size: 1.05rem; line-height: 1; }
.bj-hand--sm .bj-card__r { font-size: 0.7rem; }
.bj-card__s { font-size: 1.1rem; line-height: 1; }
.bj-hand--sm .bj-card__s { font-size: 0.7rem; }
.bj-card--back {
  background: repeating-linear-gradient(45deg, #ff3d92, #ff3d92 6px, #a855f7 6px, #a855f7 12px);
  border: 2px solid var(--card-2);
}
@keyframes dealIn { from { opacity: 0; transform: translateY(-16px) rotate(-5deg) scale(0.92); } to { opacity: 1; transform: none; } }
.bj-card { animation-fill-mode: backwards; }
.bj-card[data-settled] { animation: none; }
.bj-bots { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin: 0.4rem 0 1.2rem; opacity: 0.85; }
.bj-bot .bj-seat__label { font-size: 0.78rem; margin-bottom: 0.3rem; }
.bj-seat--dealer { padding-bottom: 0.8rem; border-bottom: 1px dashed var(--border-2); }
.bj-controls { margin-top: 1rem; }
.bj-controls .bet-row { justify-content: center; }
.bj-actions { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; }
.bj-actions .btn { min-height: 48px; }

@media (prefers-reduced-motion: reduce) {
  .bj-card { animation: none !important; }
}

.legal { max-width: 760px; margin-inline: auto; padding: clamp(3rem, 7vw, 5.5rem) var(--gut) 5rem; }
.legal__back { display: inline-block; margin-bottom: 2.2rem; color: var(--pink-2); font-size: 0.92rem; }
.legal__back:hover { color: var(--text); }
.legal h1 { font-family: var(--head); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; margin-bottom: 0.7rem; }
.legal h2 { font-family: var(--head); font-size: 1.35rem; margin: 2.4rem 0 0.6rem; }
.legal p { color: var(--muted); margin: 0 0 0.9rem; }
.legal ul { margin: 0 0 0.9rem; padding-left: 1.3rem; color: var(--muted); }
.legal li { list-style: disc; margin-bottom: 0.35rem; }
.legal a { color: var(--pink-2); }
.legal a:hover { color: var(--text); }
.legal__note {
  padding: 1rem 1.2rem; margin-bottom: 1.6rem; border-radius: var(--radius);
  background: rgba(255, 61, 146, 0.1); border: 1px solid var(--border-2);
  color: var(--pink-2) !important; font-size: 0.92rem;
}
.legal__disclaimer { margin-top: 2.6rem; font-size: 0.8rem; color: var(--faint) !important; }

@media (max-width: 900px) {
  .grid3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__inner .btn--sm { margin-left: auto; }
}
@media (max-width: 460px) {
  .hero__actions { flex-direction: column; }
  .ip, .btn { width: 100%; }
  .ip { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dot.is-online, .tabpanel.is-active { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

.slot-machine { width: min(100%, 480px); margin-inline: auto; display: flex; flex-direction: column; gap: 1.1rem; --cell: clamp(40px, 10.5vw, 52px); }
.casino-wrap--slots { grid-template-columns: minmax(300px, 1.1fr) minmax(260px, 360px); }
.slot-window--grid .slot-reel { height: calc(var(--cell) * 9); }
.slot-window--grid .slot-reel::after {
  background: linear-gradient(180deg, rgba(13,7,24,0.95) 2%, transparent 24%, transparent 76%, rgba(13,7,24,0.95) 98%);
}
.slot-window--grid .slot-payline { top: calc(0.8rem + var(--cell) * 4.5); transform: translateY(-2px); box-shadow: 0 0 12px rgba(255,61,146,0.65); }

.slot-switch { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; margin: 0 auto 1.4rem; max-width: 640px; }
.slot-switch__btn {
  flex: 1 1 200px; display: flex; flex-direction: column; gap: 0.15rem; text-align: left;
  padding: 0.7rem 0.95rem; border-radius: 14px; cursor: pointer; color: var(--muted);
  background: linear-gradient(165deg, rgba(58,29,92,0.5), rgba(21,11,36,0.6));
  border: 1px solid rgba(255,255,255,0.08); transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s;
}
.slot-switch__btn:hover:not(:disabled) { transform: translateY(-2px); border-color: rgba(255,61,146,0.4); }
.slot-switch__btn:disabled { opacity: 0.5; cursor: not-allowed; }
.slot-switch__btn.is-active {
  color: #fff; border-color: rgba(255,61,146,0.75);
  box-shadow: 0 0 0 1px rgba(255,61,146,0.5), 0 14px 34px -18px rgba(255,61,146,0.8);
}
.slot-switch__name { font-family: var(--head); font-weight: 800; font-size: 1rem; }
.slot-switch__tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: #ffd24a;
  position: absolute; top: 0.7rem; right: 0.95rem;
}
.slot-switch__btn { position: relative; }
.slot-switch__desc { font-size: 0.78rem; line-height: 1.3; }
.slot-machine--mega { width: min(100%, 600px); --cell: clamp(34px, 9vw, 46px); }
.slot-machine--mega .slot-sym { font-size: clamp(1.35rem, 5.2vw, 2.05rem); }
.slot-cabinet {
  position: relative; padding: 1rem; border-radius: 22px;
  background: linear-gradient(165deg, #3a1d5c 0%, #1d1030 55%, #150b24 100%);
  border: 1px solid rgba(255,61,146,0.4);
  box-shadow: 0 0 0 2px rgba(168,85,247,0.18), 0 22px 55px -22px rgba(255,61,146,0.6), inset 0 1px 0 rgba(255,255,255,0.09);
  transition: box-shadow 0.3s var(--ease);
}
.slot-cabinet::before { content: ""; position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  background: radial-gradient(120% 60% at 50% -12%, rgba(255,255,255,0.14), transparent 60%); }
.slot-marquee { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; padding: 0.2rem 0.3rem; }
.slot-marquee__text {
  font-family: var(--head); font-weight: 800; letter-spacing: 0.2em; font-size: 0.95rem; white-space: nowrap;
  background: linear-gradient(90deg, #ffd24a, #ff3d92, #a855f7, #ffd24a); background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  animation: marqueeHue 4s linear infinite;
}
@keyframes marqueeHue { to { background-position: 300% 0; } }
.slot-lights {
  flex: 1; height: 10px; border-radius: 999px;
  background-image: radial-gradient(circle at center, #ffd24a 32%, transparent 34%);
  background-size: 15px 15px; background-position: center;
  filter: drop-shadow(0 0 4px rgba(255,210,74,0.85)); animation: lightsBlink 0.5s steps(2, end) infinite;
}
.slot-lights:last-of-type { animation-delay: 0.25s; }
@keyframes lightsBlink { 0% { opacity: 1; } 50% { opacity: 0.22; } 100% { opacity: 1; } }
.slot-window {
  position: relative; display: grid; grid-template-columns: repeat(var(--reels, 3), 1fr); gap: 0.7rem;
  padding: 0.8rem; border-radius: 16px; background: #0d0718;
  border: 1px solid rgba(255,255,255,0.07); box-shadow: inset 0 6px 22px rgba(0,0,0,0.72);
}
.slot-machine--mega .slot-window { gap: 1rem; }
.slot-reel {
  height: var(--cell); overflow: hidden; border-radius: 12px; position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: inset 0 10px 14px -8px rgba(0,0,0,0.85), inset 0 -10px 14px -8px rgba(0,0,0,0.85);
}
.slot-reel::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,7,24,0.92), transparent 24%, transparent 76%, rgba(13,7,24,0.92)); }
.slot-strip { display: flex; flex-direction: column; will-change: transform; }
.slot-cell { height: var(--cell); display: grid; place-items: center; }
.slot-reel > .slot-sym { height: var(--cell); display: grid; place-items: center; }
.slot-sym { font-size: clamp(1.9rem, 7.5vw, 2.9rem); line-height: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55)); }
.slot-reel.is-spinning { filter: blur(1px); }
.slot-reel.is-locked { animation: reelPop 0.42s var(--ease); }
@keyframes reelPop { 0% { transform: scale(1); } 40% { transform: scale(1.08); } 100% { transform: scale(1); } }
.slot-payline {
  position: absolute; left: 0.5rem; right: 0.5rem; top: 50%; height: 4px; transform: translateY(-2px); opacity: 0.7;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #ff3d92, #a855f7, #ff3d92, transparent);
  box-shadow: 0 0 10px rgba(255,61,146,0.6); transition: opacity 0.3s, box-shadow 0.3s, height 0.3s;
}
.slot-payline::before, .slot-payline::after {
  content: "▶"; position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 0.8rem; line-height: 1; color: #ffd24a; text-shadow: 0 0 8px rgba(255,61,146,0.95);
}
.slot-payline::before { left: -0.95rem; }
.slot-payline::after { right: -0.95rem; transform: translateY(-50%) scaleX(-1); }
.slot-window.is-win .slot-payline {
  opacity: 1; height: 5px; animation: paylinePulse 0.8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, #4ade80, #3ad16b, #4ade80, transparent);
  box-shadow: 0 0 18px rgba(74,222,128,0.85);
}
.slot-window.is-win .slot-payline::before, .slot-window.is-win .slot-payline::after { color: #4ade80; }
@keyframes paylinePulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.slot-window.is-win .slot-cell--result {
  border-radius: 8px;
  animation: slotHit 0.9s ease-in-out infinite;
}
@keyframes slotHit {
  0%, 100% { background: rgba(74,222,128,0.14); box-shadow: inset 0 0 0 2px rgba(74,222,128,0.45), 0 0 12px rgba(74,222,128,0.25); }
  50% { background: rgba(74,222,128,0.30); box-shadow: inset 0 0 0 2px rgba(74,222,128,0.85), 0 0 22px rgba(74,222,128,0.55); }
}
.slot-cabinet.is-win { animation: winGlow 0.7s ease-in-out 2; }
@keyframes winGlow {
  0%, 100% { box-shadow: 0 0 0 2px rgba(168,85,247,0.18), 0 22px 55px -22px rgba(255,61,146,0.6); }
  50% { box-shadow: 0 0 0 2px rgba(255,210,74,0.65), 0 0 65px -4px rgba(255,61,146,0.95); }
}
.slot-cabinet.is-jackpot { animation: jackpotShake 0.5s ease-in-out 5; }
@keyframes jackpotShake {
  0%, 100% { transform: translateX(0) rotate(0); }
  20% { transform: translateX(-6px) rotate(-0.5deg); }
  40% { transform: translateX(6px) rotate(0.5deg); }
  60% { transform: translateX(-4px) rotate(-0.3deg); }
  80% { transform: translateX(4px) rotate(0.3deg); }
}
.slot-limit { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.9rem; }
.slot-limit b { color: #fff; }
.slot-paytable { display: flex; flex-direction: column; gap: 0.35rem; }
.slot-paytable__row { display: flex; justify-content: space-between; align-items: center; font-size: 0.92rem; padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.slot-paytable__row--minor { color: var(--muted); font-size: 0.82rem; }
.slot-paytable__pay { font-family: var(--head); font-weight: 800; color: var(--pink-2); }
.slot-paytable__tiers { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 0.3rem; padding: 0 0 0.3rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; color: var(--faint); text-align: right; }
.slot-paytable__tiers span:first-child { text-align: left; }
.slot-paytable__row--tiers { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 0.3rem; align-items: center; }
.slot-paytable__row--tiers .slot-paytable__sym { font-size: 1.35rem; }
.slot-paytable__row--tiers .slot-paytable__pay { text-align: right; font-size: 0.9rem; }
.casino-legal { margin-top: 1.6rem; text-align: center; font-size: 0.85rem; color: var(--faint); }
.casino-legal a { color: var(--muted); text-decoration: underline; }
.casino-legal a:hover { color: #fff; }

.casino-warn {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  max-width: 760px; margin: 0 auto 1.6rem; padding: 0.85rem 1.1rem;
  border-radius: 14px; background: rgba(255,61,146,0.08); border: 1px solid rgba(255,61,146,0.35);
  color: var(--muted); font-size: 0.88rem; line-height: 1.45;
}
.casino-warn a { color: #fff; text-decoration: underline; }
.casino-warn__badge {
  flex: none; font-family: var(--head); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.02em;
  padding: 0.25rem 0.55rem; border-radius: 8px; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple, #a855f7));
}

.slot-levers { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.9rem; }
.slot-lever {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.7rem; text-align: left;
  padding: 0.65rem 0.85rem; border-radius: 13px; cursor: pointer; color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-2); transition: transform 0.12s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.slot-lever:hover:not(:disabled) { transform: translateY(-2px); border-color: var(--pink); box-shadow: 0 8px 20px -12px rgba(255,61,146,0.7); }
.slot-lever:active:not(:disabled) { transform: translateY(1px) scale(0.99); }
.slot-lever:disabled { opacity: 0.5; cursor: not-allowed; }
.slot-lever__knob {
  width: 14px; height: 14px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, #fff, var(--accent, #ff3d92) 70%);
  box-shadow: 0 0 8px var(--accent, #ff3d92);
}
.slot-lever__name { font-family: var(--head); font-weight: 700; font-size: 0.96rem; }
.slot-lever__stat { font-size: 0.74rem; color: var(--muted); white-space: nowrap; }
.slot-lever--low { --accent: #3ad16b; }
.slot-lever--normal { --accent: #ff3d92; }
.slot-lever--high { --accent: #ffd24a; }
.slot-paytable__head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.8rem; }
.slot-paytable__mode { font-size: 0.78rem; color: var(--pink-2); font-family: var(--head); font-weight: 700; }

.account--grid { max-width: var(--wrap); }
.account-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.2vw, 1.6rem); align-items: stretch; }
@media (max-width: 880px) { .account-2x2 { grid-template-columns: 1fr; } }
.acc-quad {
  display: flex; flex-direction: column; gap: 1rem; margin: 0; max-width: none;
  padding: clamp(1.4rem, 2.6vw, 2rem); border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.acc-quad__title { font-size: clamp(1.2rem, 2.6vw, 1.5rem); font-weight: 800; letter-spacing: -0.02em; padding-top: 0; }
.acc-quad__title::before { content: none; }
.acc-quad__text { margin: 0; color: var(--muted); }
.acc-quad .account__hero { margin-bottom: 0; }
.acc-quad .leaderboard__head { margin-bottom: 0; }
.acc-quad--soon { border-style: dashed; justify-content: center; gap: 0.7rem; }
.acc-soon {
  font-size: 0.66rem; font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--pink-2); background: rgba(255, 61, 146, 0.14); padding: 0.22rem 0.55rem; border-radius: 999px;
  vertical-align: middle; margin-left: 0.45rem;
}
.acc-quad__hint { font-size: 0.78rem; color: var(--faint); font-family: var(--head); font-weight: 600; }

.acc-quad .arcade-card { transition: transform 0.2s var(--ease), border-color 0.2s var(--ease); }
.acc-quad .arcade-card:hover { transform: translateY(-2px); rotate: none; box-shadow: none; border-color: var(--border-2); }
.acc-quad .arcade-card:hover .arcade-card__emoji { transform: none; }
