*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #7c3aed;
  --pink-dim: rgba(124,58,237,0.15);
  --pink-border: rgba(124,58,237,0.35);
  --mx: 50%;
  --my: 50%;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #080808;
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(650px circle at var(--mx) var(--my), rgba(124,58,237,0.06) 0%, transparent 55%);
}

#pc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }


nav {
  position: sticky; top: 0; z-index: 999;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px;
  background: rgba(8,8,8,0.80);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.n-logo {
  font-size: 1.2rem; font-weight: 800; letter-spacing: 0.01em;
  color: #fff; white-space: nowrap; flex-shrink: 0;
}
.brand-ping {
  display: inline-block;
  color: var(--pink);
  text-shadow: 0 0 8px rgba(124,58,237,0.45);
}
.brand-word {
  display: inline-block;
  transform: translateY(-2px);
  letter-spacing: 0.018em;
}
.n-links {
  display: flex; align-items: center; gap: 0;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.n-links a {
  font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.15s; white-space: nowrap;
}
.n-links a:hover { color: #fff; }
.n-links a.cur { color: #fff; }
.n-links a.cur::after {
  content: ""; display: block;
  height: 2px; background: var(--pink);
  border-radius: 1px; margin-top: 2px;
}
.n-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.n-burger {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9px;
  background: rgba(255,255,255,0.02);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}
.n-burger span {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.18s, opacity 0.18s;
}
body.mobile-nav-open .n-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.mobile-nav-open .n-burger span:nth-child(2) { opacity: 0; }
body.mobile-nav-open .n-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed;
  inset: 70px 0 0 0;
  z-index: 998;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.mobile-nav-panel {
  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  z-index: 999;
  border-left: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateX(102%);
  transition: transform 0.2s ease;
}
.mobile-nav-inner {
  display: grid;
  gap: 14px;
  padding: 16px;
}
.mobile-nav-links,
.mobile-nav-actions {
  display: grid;
  gap: 6px;
}
.mobile-nav-links a,
.mobile-nav-actions a {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.02);
}
.mobile-nav-links a.cur {
  border-color: var(--pink-border);
  background: rgba(124,58,237,0.1);
}
.mobile-nav-actions .n-buy {
  background: #fff;
  color: #000;
  font-weight: 800;
  margin-left: 0;
}
body.mobile-nav-open {
  overflow: hidden;
}
body.mobile-nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.mobile-nav-open .mobile-nav-panel {
  transform: translateX(0);
}
.n-icon {
  width: 32px; height: 32px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.11);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.n-icon:hover { border-color: rgba(255,255,255,0.28); color: #fff; }
.n-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.n-txt {
  font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.55); padding: 0 10px;
  transition: color 0.15s;
}
.n-txt:hover { color: #fff; }
.n-login {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.55); padding: 0 8px;
  transition: color 0.15s;
}
.n-login:hover { color: #fff; }
.n-login svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.n-buy {
  padding: 10px 20px; background: #fff; color: #000;
  font-size: 0.92rem; font-weight: 800; border-radius: 10px;
  margin-left: 4px; transition: background 0.15s, color 0.15s;
}
.n-buy:hover { background: var(--pink); color: #fff; }


.hero {
  position: relative; z-index: 1;
  min-height: calc(100vh - 70px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px 100px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink-border);
  background: var(--pink-dim);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.07; max-width: 1100px; margin-bottom: 14px;
  white-space: nowrap;
}
.hero-type-wrap {
  display: inline;
  white-space: nowrap;
}
.hero-type-acronym {
  color: var(--pink);
  text-shadow: 0 0 24px rgba(124,58,237,0.45);
}
.hero-type-cursor {
  display: none;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-type-fullname {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  min-height: 1.4em;
  margin-bottom: 32px;
  transition: opacity 0.25s;
}
.hero p {
  color: rgba(255,255,255,0.52);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  max-width: 500px; line-height: 1.7; margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }


.hero-game-strip {
  position: relative;
  width: 100%;
  max-width: 680px;
  overflow: hidden;
  margin-top: 4px;
}
.hero-game-strip::before,
.hero-game-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.hero-game-strip::before {
  left: 0;
  background: linear-gradient(to right, #080808 0%, transparent 100%);
}
.hero-game-strip::after {
  right: 0;
  background: linear-gradient(to left, #080808 0%, transparent 100%);
}
.hero-game-track {
  display: flex;
  gap: 10px;
  animation: scrollPills 40s linear infinite;
  width: max-content;
}
.hero-game-track:hover {
  animation-play-state: paused;
}
@keyframes scrollPills {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-game-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
}
.hero-game-pill::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 5px var(--pink);
  flex-shrink: 0;
}
.hero-game-pill:hover,
.hero-game-pill.is-active {
  border-color: var(--pink-border);
  color: #fff;
  background: var(--pink-dim);
}
.hero-game-pill.is-active::before {
  box-shadow: 0 0 8px var(--pink);
}
.btn-wh {
  padding: 11px 26px; background: #fff; color: #000;
  font-size: 0.9rem; font-weight: 700; border-radius: 999px;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}
.btn-wh:hover { background: var(--pink); color: #fff; box-shadow: 0 0 22px rgba(124,58,237,0.5); }
.btn-dk {
  padding: 11px 26px; background: transparent; color: rgba(255,255,255,0.8);
  font-size: 0.9rem; font-weight: 600; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: border-color 0.15s, color 0.15s;
}
.btn-dk:hover { border-color: rgba(255,255,255,0.45); color: #fff; }


.sec {
  position: relative; z-index: 1;
  padding: 96px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em;
}
.sec-head p { color: rgba(255,255,255,0.42); margin-top: 9px; font-size: 0.95rem; }


.why-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: 1080px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; overflow: hidden;
}
.why-card {
  padding: 34px 26px;
  border-right: 1px solid rgba(255,255,255,0.09);
  transition: background 0.2s;
}
.why-card:last-child { border-right: none; }
.why-card:hover { background: rgba(255,255,255,0.025); }
.why-ic {
  width: 36px; height: 36px; margin-bottom: 16px;
  color: rgba(255,255,255,0.65);
}
.why-ic svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 9px; }
.why-card p { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.65; }


.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; max-width: 860px; margin: 0 auto 48px;
}
.how-card {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; padding: 30px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.how-card:hover { border-color: var(--pink-border); background: var(--pink-dim); }
.how-ic {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(124,58,237,0.1);
  border: 1px solid var(--pink-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--pink);
}
.how-ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.how-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.how-card p { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.65; }
.how-cta { text-align: center; }
.how-cta a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.how-cta a:hover { color: var(--pink); border-color: var(--pink); }
.how-cta a svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }


.team-grid {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; max-width: 340px; margin: 64px auto 0;
}
.team-card {
  flex: 1; min-width: 240px; max-width: 300px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: var(--pink-border); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, #7c1aff 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.team-avatar.has-image {
  background-size: cover;
  background-position: center;
  color: transparent;
}
.team-name { font-size: 1rem; font-weight: 700; }
.team-role { font-size: 0.8rem; color: rgba(255,255,255,0.42); }
.team-links { display: flex; gap: 8px; margin-top: 4px; }
.team-links a {
  width: 30px; height: 30px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.15s, color 0.15s;
}
.team-links a:hover { border-color: var(--pink); color: var(--pink); }
.team-links svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.team-links .js-team-discord {
  width: auto;
  min-width: 82px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}
.team-link-label {
  letter-spacing: 0.01em;
}


.home-accounts-cta {
  margin: 56px auto 0;
  width: min(100%, 760px);
  padding: 28px 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.home-accounts-overline {
  display: block;
  font-size: 0.8rem;
  color: rgba(124,58,237,0.78);
  margin-bottom: 10px;
}
.home-accounts-cta h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 10px;
}
.home-accounts-cta p {
  color: rgba(255,255,255,0.56);
  font-size: 0.94rem;
  margin-bottom: 16px;
}
.home-accounts-btn {
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 12px;
  min-height: 48px;
  min-width: 250px;
  padding: 0 18px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 58%, #5b21b6 100%);
  box-shadow: 0 8px 18px rgba(124,58,237,0.32), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.home-accounts-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(124,58,237,0.42), inset 0 1px 0 rgba(255,255,255,0.45);
}
.home-accounts-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.home-suppliers-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 16px;
}
.home-suppliers-modal[hidden] {
  display: none;
}
.home-suppliers-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,8,0.8);
  backdrop-filter: blur(5px);
}
.home-suppliers-panel {
  position: relative;
  width: min(100%, 372px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    radial-gradient(620px circle at -20% -40%, rgba(124,58,237,0.08) 0%, transparent 48%),
    linear-gradient(180deg, rgba(17,17,23,0.98) 0%, rgba(10,10,15,0.98) 100%);
  box-shadow: 0 20px 44px rgba(0,0,0,0.66);
  padding: 12px;
  animation: suppliersIn 0.22s ease;
}
@keyframes suppliersIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.home-suppliers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.home-suppliers-head h3 {
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.015em;
}
.home-suppliers-close {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}
.home-suppliers-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.home-suppliers-sub {
  color: rgba(255,255,255,0.62);
  font-size: 0.83rem;
  margin-bottom: 10px;
}
.home-suppliers-sub-sm {
  margin-bottom: 9px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
}
.home-suppliers-list {
  display: grid;
  gap: 7px;
}
.home-suppliers-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.9);
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.home-suppliers-link:hover {
  transform: translateY(-1px);
  border-color: var(--pink-border);
  background: var(--pink-dim);
  box-shadow: 0 7px 14px rgba(124,58,237,0.22);
}
.home-suppliers-link.is-primary {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 64%, #5b21b6 100%);
  color: #fff;
  border-color: rgba(124,58,237,0.65);
}
.home-suppliers-link.is-primary:hover {
  box-shadow: 0 7px 15px rgba(124,58,237,0.35);
}
.home-suppliers-link.is-sub {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
  border-style: dashed;
  font-size: 0.82rem;
  font-weight: 700;
}
.home-suppliers-link.is-exec {
  background: rgba(124,58,237,0.12);
  color: #ffd6ea;
  border-color: rgba(124,58,237,0.45);
}
.home-suppliers-tag {
  position: absolute;
  top: -6px;
  right: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.7);
  background: #13131a;
  color: #ffd6ea;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 1px 7px;
}
.home-suppliers-tag.is-good {
  color: #fff;
}
.home-suppliers-tag.is-safe {
  color: #ffd6ea;
}
.home-suppliers-tag.is-hq {
  color: #ffbadf;
}
.home-suppliers-sep {
  margin: 12px 0 8px;
  height: 1px;
  background: rgba(255,255,255,0.08);
}


.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 28px 72px;
}
.policy-hero {
  text-align: center;
  margin-bottom: 34px;
}
.policy-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.policy-hero p {
  color: rgba(255,255,255,0.5);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}
.policy-sections {
  display: grid;
  gap: 16px;
}
.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 22px;
  max-width: 860px;
}
.policy-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.78);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.policy-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px rgba(124,58,237,0.6);
}
.policy-chip:hover {
  border-color: var(--pink-border);
  color: #fff;
  background: var(--pink-dim);
  transform: translateY(-1px);
}
.policy-chip.is-active {
  border-color: var(--pink);
  background: rgba(124,58,237,0.18);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(124,58,237,0.2) inset;
}
.terms-nav {
  max-width: 920px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.terms-nav .policy-chip {
  flex: 0 0 auto;
  border-radius: 10px;
  border-color: transparent;
  background: transparent;
  padding: 9px 14px;
  color: rgba(255,255,255,0.72);
}
.terms-nav .policy-chip::before {
  display: none;
}
.terms-nav .policy-chip:hover {
  transform: none;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.terms-nav .policy-chip.is-active {
  border-color: var(--pink-border);
  background: rgba(124,58,237,0.2);
}
.policy-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  padding: 22px 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.2s, background 0.2s;
}
.policy-card:hover {
  border-color: var(--pink-border);
  background: linear-gradient(180deg, rgba(124,58,237,0.08) 0%, rgba(255,255,255,0.015) 100%);
}
.policy-card h2 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.policy-card h3 {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.9);
  margin: 16px 0 6px;
}
.policy-card p,
.policy-card li {
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  font-size: 0.9rem;
}
.policy-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.policy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.16);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.policy-btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.policy-btn-primary:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.policy-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.72);
}
.policy-btn-ghost:hover {
  border-color: var(--pink-border);
  color: #fff;
  background: var(--pink-dim);
}
.policy-card ul {
  list-style: none;
  display: grid;
  gap: 7px;
}
.policy-card ul li::before {
  content: "- ";
  color: var(--pink);
}
.faq-item + .faq-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-item h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-item h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(124,58,237,0.65);
}
.last-updated {
  margin-top: 16px;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

.faq-shell {
  display: grid;
  gap: 16px;
}
.faq-hero {
  margin-bottom: 8px;
}
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}
.faq-tab {
  cursor: pointer;
  justify-content: center;
  text-align: center;
}
.faq-hero-note {
  margin-top: 12px;
  padding: 10px 12px;
  max-width: 780px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
}
.faq-main {
  width: min(100%, 980px);
  margin: 0 auto;
  gap: 12px;
}
.faq-block {
  padding: 16px;
}
.faq-block[hidden] {
  display: none;
}
.faq-block h2 {
  margin-bottom: 12px;
}
.faq-qa {
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.faq-qa:first-of-type {
  margin-top: 0;
}
.faq-qa:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.faq-qa summary {
  cursor: pointer;
  color: rgba(255,255,255,0.94);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: space-between;
  padding: 15px 16px;
}
.faq-qa summary::-webkit-details-marker {
  display: none;
}
.faq-qa summary::before {
  content: "+";
  order: 2;
  margin-left: auto;
  width: 18px;
  color: var(--pink);
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}
.faq-qa[open] summary::before {
  content: "-";
}
.faq-qa p {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(255,255,255,0.62);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-support {
  background: linear-gradient(180deg, rgba(124,58,237,0.1) 0%, rgba(255,255,255,0.015) 100%);
}


.pricing-shell {
  display: grid;
  gap: 16px;
}
.pricing-hero {
  margin-bottom: 6px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pricing-pill-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}
.price-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 18px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -65% -40%;
  height: 140px;
  background: radial-gradient(60% 70% at 50% 0%, rgba(124,58,237,0.08), transparent 70%);
  pointer-events: none;
}
.price-card:hover {
  border-color: var(--pink-border);
}
.price-card.is-featured {
  border-color: rgba(124,58,237,0.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 0 0 1px rgba(124,58,237,0.22);
}
.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.price-title {
  font-size: 1rem;
  font-weight: 700;
}
.price-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.price-badge {
  border: 1px solid var(--pink-border);
  background: var(--pink-dim);
  color: #fff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-amount strong {
  font-size: clamp(1.7rem, 3.1vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-amount span {
  color: rgba(255,255,255,0.5);
  font-size: 0.86rem;
}
.price-list {
  list-style: none;
  display: grid;
  gap: 7px;
}
.price-list li {
  position: relative;
  padding-left: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 8px rgba(124,58,237,0.55);
}
.price-actions {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.price-meta {
  margin-top: 4px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.pricing-faq {
  margin-top: 2px;
}
.pricing-note {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  padding: 14px 16px;
  color: rgba(255,255,255,0.66);
  font-size: 0.85rem;
  line-height: 1.6;
}
.pricing-footnote {
  margin-top: -6px;
  text-align: center;
  color: rgba(255,255,255,0.42);
  font-size: 0.74rem;
  line-height: 1.5;
}


.games-shell {
  display: grid;
  gap: 22px;
}
.games-top {
  text-align: center;
  padding: 24px 0 8px;
}
.games-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--pink-border);
  background: var(--pink-dim);
  color: var(--pink);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.games-chip::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 6px var(--pink);
}
.games-top h1 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
}
.games-sub {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}
.games-search-wrap {
  max-width: 480px;
  margin: 20px auto 0;
  position: relative;
}
.games-search-wrap::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}
.games-search {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 0 14px 0 36px;
  font-size: 0.85rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.games-search::placeholder {
  color: rgba(255,255,255,0.3);
}
.games-search:focus {
  outline: none;
  border-color: var(--pink-border);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.games-stats {
  margin: 10px auto 0;
  max-width: 540px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.games-stat-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  padding: 11px;
}
.games-stat-card strong {
  display: block;
  font-size: 1.12rem;
}
.games-stat-card span {
  color: rgba(255,255,255,0.5);
  font-size: 0.73rem;
}
.games-toolbar {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
}
.games-toolbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.games-toolbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink-border);
  border-radius: 8px;
  background: var(--pink-dim);
  color: var(--pink);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 6px 12px;
  transition: background 0.15s, box-shadow 0.15s;
}
.games-toolbar-link:hover {
  background: rgba(124,58,237,0.22);
  box-shadow: 0 0 10px rgba(124,58,237,0.2);
}
.games-grid-wrap h2 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 10px;
}
.games-grid-wrap h2::before {
  content: "";
  display: block;
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--pink);
  box-shadow: 0 0 8px rgba(124,58,237,0.6);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.game-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(20,20,28,0.85);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.game-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #0e0e1e 0%, #1e0c18 100%);
  overflow: hidden;
}
.game-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.game-card:hover .game-card-image {
  transform: scale(1.05);
}
.game-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  pointer-events: none;
}
.game-card-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.game-card-check svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}
.game-card-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  background: linear-gradient(140deg, #0e0e1e 0%, #1e0c18 100%);
}
.game-card.has-error .game-card-image {
  display: none;
}
.game-card.has-error .game-card-fallback {
  display: flex;
}
.game-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.game-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
.game-card-support-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.game-card-support-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.game-card-bar-track {
  width: 80%;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.game-card-bar-fill {
  height: 100%;
  width: 100%;
  border-radius: 99px;
  background: var(--pink);
  box-shadow: 0 0 6px rgba(124,58,237,0.6);
}
.game-card-avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
}
.game-card-avail::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px #4ade80;
  flex-shrink: 0;
}
.game-card-features-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid rgba(124,58,237,0.45);
  border-radius: 8px;
  background: rgba(124,58,237,0.14);
  color: #ffd4e7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 11px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.game-card-features-btn:hover {
  background: rgba(124,58,237,0.22);
  box-shadow: 0 0 12px rgba(124,58,237,0.24);
  transform: translateY(-1px);
}
.game-card-btn {
  display: none;
}
body.games-compact .games-grid {
  gap: 14px;
}
body.games-compact .game-card-body {
  padding: 12px 14px 16px;
}
.games-detail-wrap {
  margin-top: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
}
.games-detail-wrap h2 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}
.games-detail-sub {
  margin: 8px 0 16px;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  line-height: 1.5;
}
.deadline-feature-list {
  display: grid;
  gap: 10px;
}
.deadline-category {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px 12px 10px;
  background: linear-gradient(180deg, rgba(13,16,26,0.74), rgba(9,11,18,0.58));
}
.deadline-category h3 {
  margin: 0 0 9px;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.deadline-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.deadline-group {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.01);
}
.deadline-group h4 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.deadline-feature-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.deadline-feature-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}
.deadline-feature-item:last-child {
  border-bottom: 0;
}
.deadline-feature-name {
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 600;
}
.deadline-feature-head {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 2px;
  cursor: pointer;
}
.deadline-feature-head.is-static {
  cursor: default;
}
.deadline-feature-head[data-expandable="true"]:hover .deadline-feature-name {
  color: #fff;
}
.deadline-feature-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.deadline-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}
.deadline-feature-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.deadline-feature-preview {
  max-width: 120px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,0.58);
  font-size: 0.66rem;
}
.deadline-options-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  font-size: 0.64rem;
  font-weight: 600;
  padding: 2px 7px;
}
.deadline-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid rgba(255,255,255,0.48);
  border-bottom: 1.5px solid rgba(255,255,255,0.48);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
.deadline-feature-head[aria-expanded="true"] .deadline-chevron {
  transform: rotate(225deg);
}
.deadline-feature-control {
  width: 100%;
}
.deadline-inline-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
}
.deadline-feature-panel {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 7px 2px 8px;
  margin-top: 1px;
}
.control-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.control-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.control-toggle-track {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 2px;
  transition: background 0.15s;
}
.control-toggle-thumb {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f4f4f6;
  transition: transform 0.15s;
}
.control-toggle-input:checked + .control-toggle-track {
  background: rgba(22,163,74,0.35);
  border-color: rgba(134,239,172,0.5);
}
.control-toggle-input:checked + .control-toggle-track .control-toggle-thumb {
  transform: translateX(14px);
}
.control-toggle-text {
  font-size: 0.66rem;
  font-weight: 600;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.control-range-row,
.control-input-row,
.control-select-row {
  display: grid;
  gap: 4px;
}
.control-range-label,
.control-input-label,
.control-select-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.46);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.control-range-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.control-range {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,0.36), rgba(255,255,255,0.18));
  outline: none;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.control-range-value {
  min-width: 36px;
  text-align: right;
  color: rgba(255,255,255,0.62);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.control-range:hover,
.control-range:focus {
  opacity: 1;
}
.control-range::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,0.4), rgba(255,255,255,0.2));
}
.control-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: -4px;
  border: 1px solid rgba(255,255,255,0.5);
  background: #f2f2f4;
  box-shadow: 0 0 0 1px rgba(8,10,18,0.42);
}
.control-range::-moz-range-track {
  height: 2px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, rgba(124,58,237,0.4), rgba(255,255,255,0.2));
}
.control-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: #f2f2f4;
  box-shadow: 0 0 0 1px rgba(8,10,18,0.42);
}
.control-input,
.control-select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.72rem;
  padding: 6px 7px;
}
.control-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 24px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.55) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 13px) calc(50% - 1px),
    calc(100% - 9px) calc(50% - 1px);
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}
.control-input:focus,
.control-select:focus {
  outline: none;
  border-color: rgba(124,58,237,0.52);
  box-shadow: 0 0 0 2px rgba(124,58,237,0.12);
}
.control-select option {
  background: #10131d;
  color: #f3f4f6;
}
.control-action-btn {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.84);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 9px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.control-action-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.26);
}


.exec-shell {
  display: grid;
  gap: 16px;
}
.versions-panel,
.stat-grid {
  display: grid;
  gap: 10px;
}
.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.exec-hero {
  padding-top: 24px;
  padding-bottom: 8px;
}
.exec-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  margin-bottom: 10px;
}
.exec-hero p {
  max-width: none;
  font-size: 0.95rem;
}
.exec-hero-note {
  margin: 10px auto 0;
  max-width: 760px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.84);
  font-size: 0.82rem;
  line-height: 1.5;
}
.versions-panel,
.stat-card,
.exec-toolbar,
.exec-group {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.versions-panel,
.stat-card {
  padding: 14px;
}
.versions-head {
  margin-bottom: 10px;
}
.versions-head h2 {
  font-size: 0.98rem;
}
.version-list {
  display: grid;
  gap: 10px;
}
.version-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.version-tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.09);
  color: #fff;
  font-size: 0.78rem;
  font-family: Consolas, Monaco, monospace;
}
.version-label,
.stat-label,
.exec-sub,
.version-date,
.exec-detail-label,
.exec-group-head span,
.exec-empty,
.exec-metric span {
  color: rgba(255,255,255,0.45);
}
.stat-card strong {
  font-size: 0.95rem;
  font-weight: 700;
}
.version-date {
  font-size: 0.74rem;
  line-height: 1.35;
}
.stat-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 84px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-card:nth-child(2) strong {
  color: #25d366;
}
.stat-card:nth-child(3) strong {
  color: #4a8dff;
}
.stat-card:nth-child(4) strong {
  color: #f4b022;
}
.exec-toolbar {
  padding: 14px;
  display: grid;
  gap: 10px;
}
.exec-toolbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.exec-toolbar-simple {
  flex-wrap: nowrap;
}
.exec-toolbar-top h2 {
  font-size: 1rem;
}
.exec-toolbar-top p {
  color: rgba(255,255,255,0.48);
  font-size: 0.84rem;
}
.exec-search-wrap {
  flex: 1;
}
.exec-search {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #fff;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}
.exec-search:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.exec-filter-toggle {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.exec-filters-drawer {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}
.exec-filter-group {
  display: grid;
  gap: 6px;
}
.exec-filter-group h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.exec-group {
  padding: 14px;
}
.exec-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.exec-group-head h2 {
  font-size: 1.02rem;
}
.exec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.exec-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  overflow: hidden;
  position: relative;
}
.exec-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ef5350;
}
.exec-item-success::before {
  background: #25d366;
}
.exec-item-danger::before {
  background: #ef5350;
}
.exec-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
}
.exec-summary::-webkit-details-marker {
  display: none;
}
.exec-left {
  min-width: 0;
  flex: 1;
}
.exec-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.exec-title-row h3 {
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.exec-sub {
  font-size: 0.78rem;
  margin-top: 6px;
}
.exec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}
.exec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.12);
  line-height: 1.2;
}
.exec-badge-success {
  background: rgba(41,181,110,0.16);
  color: #b9ffd8;
  border-color: rgba(41,181,110,0.25);
}
.exec-badge-warn {
  background: rgba(255,195,76,0.12);
  color: #ffe0a3;
  border-color: rgba(255,195,76,0.2);
}
.exec-badge-danger {
  background: rgba(255,85,115,0.12);
  color: #ffc1cc;
  border-color: rgba(255,85,115,0.2);
}
.exec-badge-muted {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.72);
}
.exec-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.exec-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}
.exec-status-success {
  background: #25d366;
  color: #fff;
  border: 1px solid #25d366;
}
.exec-status-danger {
  background: #ef5350;
  color: #fff;
}
.exec-progress-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.exec-progress-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.52);
  white-space: nowrap;
}
.exec-progress-track {
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.exec-progress-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
}
.exec-progress-bar-success {
  background: #25d366;
}
.exec-progress-bar-warn {
  background: #f4c430;
}
.exec-progress-bar-danger {
  background: #ef5350;
}
.exec-progress-value {
  font-size: 0.76rem;
  font-weight: 700;
}
.exec-progress-value-success {
  color: #25d366;
}
.exec-progress-value-warn {
  color: #f4c430;
}
.exec-progress-value-danger {
  color: #ef5350;
}
.exec-panel {
  display: grid;
  gap: 8px;
  padding: 0 16px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.exec-advisory {
  margin-top: 10px;
  border: 1px solid rgba(59,130,246,0.35);
  background: rgba(18,31,53,0.72);
  color: rgba(255,255,255,0.88);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.8rem;
  line-height: 1.4;
}
.exec-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding-top: 4px;
}
.exec-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
}
.exec-fact-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
}
.exec-fact-value {
  font-size: 0.86rem;
  color: #fff;
}
.exec-fact-value.is-yes {
  color: #25d366;
}
.exec-actions {
  margin-top: 0;
  gap: 6px;
}
.exec-actions .policy-btn {
  min-width: 0;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 0.74rem;
}


footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 52px 28px 28px;
}
.foot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px; max-width: 720px; margin: 0 auto 44px;
}
.foot-col h4 {
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.foot-col a {
  display: block; font-size: 0.84rem;
  color: rgba(255,255,255,0.32); margin-bottom: 9px;
  transition: color 0.15s;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 0.78rem; color: rgba(255,255,255,0.22);
}
.foot-bottom a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
.foot-bottom a:hover { color: #fff; }
.foot-disclaimer { font-size: 0.73rem; color: rgba(255,255,255,0.18); max-width: 560px; line-height: 1.5; }


.feat-shell { max-width: 1080px; }

.feat-banner { margin-bottom: 56px; }
.feat-banner-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--pink-border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(255,255,255,0.02) 100%);
  padding: 32px;
  box-shadow: 0 0 0 1px rgba(124,58,237,0.1) inset, 0 20px 48px rgba(0,0,0,0.4);
}
.feat-banner-img {
  flex-shrink: 0;
  width: 260px;
  height: 155px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.feat-banner-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.18);
}
.feat-banner-img-fallback svg { width: 48px; height: 48px; }
.feat-banner-info { flex: 1; min-width: 0; }
.feat-banner-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink-border);
  background: var(--pink-dim);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.feat-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.feat-banner-desc {
  color: rgba(255,255,255,0.52);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 500px;
}
.feat-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.feat-list-section { }
.feat-list-head { text-align: center; margin-bottom: 40px; }
.feat-list-head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.feat-list-head p { color: rgba(255,255,255,0.42); font-size: 0.92rem; }


.ftabs-wrap {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  position: relative;
}
.ftabs-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 56px;
  border-radius: 0 16px 0 0;
  background: linear-gradient(to left, rgba(8,8,8,0.85) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.ftabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px 16px 0 0;
  scrollbar-width: none;
}
.ftabs::-webkit-scrollbar { display: none; }
.ftab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ftab:hover { color: #fff; background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15); }
.ftab-active {
  background: var(--pink-dim);
  border-color: var(--pink-border);
  color: #fff;
}
.ftab-panel { display: none; padding: 24px 20px; min-height: 110px; }
.ftab-panel-active { display: block; }
.fchips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.fchip {
  font-size: 0.79rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.fchip:hover {
  background: var(--pink-dim);
  border-color: var(--pink-border);
  color: #fff;
}
@media (max-width: 760px) {
  .feat-banner-inner { flex-direction: column; }
  .feat-banner-img { width: 100%; height: 180px; }
  .ftab-panel { padding: 18px 14px; }
}


.cmp-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.cmp-after,
.cmp-before {
  display: block;
  width: 100%;
}
.cmp-after img,
.cmp-before img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.cmp-before {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.cmp-before img {
  width: auto;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.cmp-label {
  position: absolute;
  bottom: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.cmp-label-left {
  left: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}
.cmp-label-right {
  right: 12px;
  background: var(--pink-dim);
  border: 1px solid var(--pink-border);
  color: #fff;
}
.cmp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  pointer-events: none;
  z-index: 10;
}
.cmp-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.55);
}
.cmp-handle-grip {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.cmp-handle-grip svg {
  width: 14px;
  height: 14px;
  stroke: #111;
  flex-shrink: 0;
}


@media(max-width:960px) {
  .why-row { grid-template-columns: 1fr 1fr; }
  .n-links { display: none; }
  .n-right { display: none; }
  .n-burger { display: inline-flex; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 600px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-grid,
  .exec-facts-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:620px) {
  nav { padding: 0 16px; }
  .sec { padding: 68px 16px; }
  .why-row { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 16px 80px; }
  .hero-game-strip { max-width: 100%; }
  .page-wrap { padding: 40px 16px 56px; }
  .policy-nav { justify-content: flex-start; }
  .policy-chip { font-size: 0.78rem; }
  .faq-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .faq-tab { flex: 0 0 auto; }
  .games-toolbar { flex-direction: column; align-items: flex-start; }
  .games-grid { grid-template-columns: 1fr; max-width: 360px; }
  .deadline-group-grid { grid-template-columns: 1fr; }
  .deadline-feature-head { align-items: flex-start; }
  .deadline-feature-left { min-width: 0; }
  .deadline-feature-name { line-height: 1.35; }
  .deadline-feature-meta { margin-top: 1px; }
  .deadline-inline-control { width: 100%; justify-content: flex-start; margin-top: 4px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-grid,
  .exec-facts-grid { grid-template-columns: 1fr; }
  .exec-toolbar-top { flex-direction: column; align-items: flex-start; }
  .exec-toolbar-simple { flex-wrap: wrap; }
  .version-item { flex-direction: column; align-items: flex-start; }
  .exec-summary,
  .exec-right,
  .exec-title-row { flex-direction: column; align-items: flex-start; }
  .exec-progress-wrap { width: 100%; flex-wrap: wrap; }
  .home-accounts-btn {
    width: 100%;
    min-width: 0;
    font-size: 0.94rem;
    min-height: 46px;
  }
  .home-suppliers-head h3 {
    font-size: 1.2rem;
  }
  .home-suppliers-link {
    font-size: 0.88rem;
  }
}


#ars-chat-widget {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}
.ars-chat-fab {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ff4ba0 0%, #7c3aed 46%, #b90f5d 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(124,58,237,0.42), inset 0 1px 0 rgba(255,255,255,0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.ars-chat-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(124,58,237,0.54), inset 0 1px 0 rgba(255,255,255,0.52);
}
.ars-chat-fab-ring {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  animation: chatFabPulse 2.8s ease-in-out infinite;
}
@keyframes chatFabPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.08); opacity: 0.18; }
}
.ars-chat-fab-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.ars-chat-fab-close { opacity: 0; transform: rotate(-90deg) scale(0.7); }
.ars-chat-fab[aria-expanded="true"] .ars-chat-fab-open  { opacity: 0; transform: rotate(90deg) scale(0.7); }
.ars-chat-fab[aria-expanded="true"] .ars-chat-fab-close { opacity: 1; transform: rotate(0) scale(1); }
.ars-chat-panel {
  width: min(360px, calc(100vw - 34px));
  height: min(560px, calc(100vh - 92px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(1200px circle at -10% -20%, rgba(124,58,237,0.08) 0%, transparent 40%),
    linear-gradient(160deg, rgba(15,15,22,0.96) 0%, rgba(9,9,14,0.96) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.68), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlideIn 0.28s cubic-bezier(.2,.9,.3,1);
}
.ars-chat-panel[hidden] { display: none; }
@keyframes chatSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ars-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%);
  flex-shrink: 0;
}
.ars-chat-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ars-chat-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  flex-shrink: 0;
}
.ars-chat-header strong {
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.ars-chat-header-sub {
  display: block;
  font-size: 0.66rem;
  color: rgba(255,255,255,0.56);
}
.ars-chat-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ars-chat-clean-btn {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  height: 27px;
  padding: 0 8px;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}
.ars-chat-clean-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.32);
}
.ars-chat-close-btn {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.62);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.ars-chat-close-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.34);
}
.ars-chat-banner {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(90deg, rgba(124,58,237,0.15) 0%, rgba(124,58,237,0.06) 50%, rgba(255,255,255,0) 100%);
  color: rgba(255,255,255,0.74);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.ars-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 11px 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  scroll-behavior: smooth;
}
.ars-chat-messages::-webkit-scrollbar { width: 6px; }
.ars-chat-messages::-webkit-scrollbar-track { background: transparent; }
.ars-chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }
.ars-chat-msg { display: flex; }
.ars-chat-msg-user { justify-content: flex-end; }
.ars-chat-msg-bot  { justify-content: flex-start; }
.ars-chat-msg.is-enter {
  opacity: 0;
  transform: translateY(8px);
}
.ars-chat-bubble {
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 0.77rem;
  line-height: 1.5;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.ars-chat-msg-user .ars-chat-bubble {
  background: linear-gradient(135deg, #ff4ba0 0%, #7c3aed 55%, #b50f5b 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(124,58,237,0.25);
  border-bottom-right-radius: 4px;
}
.ars-chat-msg-bot .ars-chat-bubble {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 4px;
}
.ars-chat-msg-bot .ars-chat-bubble a {
  color: #ff77b7;
  text-decoration: underline;
}
.ars-chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 11px;
}
.ars-chat-typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.52);
  animation: typingDot 1.2s ease-in-out infinite;
}
.ars-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.ars-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(1); opacity: 0.45; }
  40% { transform: scale(1.4); opacity: 1; }
}
.ars-chat-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 0 10px 9px;
}
.ars-chat-qbtn {
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(160deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  color: rgba(255,255,255,0.86);
  border-radius: 9px;
  padding: 7px 8px;
  min-height: 36px;
  font-size: 0.66rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  animation: chatQuickIn 0.24s ease both;
}
.ars-chat-qbtn:hover {
  transform: translateY(-1px);
  background: linear-gradient(160deg, rgba(124,58,237,0.24) 0%, rgba(124,58,237,0.12) 100%);
  border-color: rgba(124,58,237,0.6);
}
@keyframes chatQuickIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ars-chat-qicon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  background: rgba(255,255,255,0.14);
  color: #fff;
  flex-shrink: 0;
}
.ars-chat-qlabel {
  line-height: 1.2;
  text-align: left;
}
.ars-chat-form {
  display: flex;
  gap: 7px;
  padding: 9px 10px 10px;
  border-top: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}
.ars-chat-input {
  flex: 1;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  padding: 0 11px;
  font-size: 0.74rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.ars-chat-input::placeholder { color: rgba(255,255,255,0.3); }
.ars-chat-input:focus {
  border-color: rgba(124,58,237,0.6);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.14);
}
.ars-chat-send {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ff4ba0 0%, #7c3aed 62%, #be0f5f 100%);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(124,58,237,0.28);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.ars-chat-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(124,58,237,0.38);
}
.ars-chat-send svg {
  width: 14px;
  height: 14px;
}
@media(max-width:620px) {
  #ars-chat-widget {
    right: 10px;
    bottom: 10px;
  }
  .ars-chat-fab {
    width: 58px;
    height: 58px;
  }
  .ars-chat-panel {
    width: calc(100vw - 20px);
    height: min(70vh, 540px);
    border-radius: 14px;
  }
  .ars-chat-quick {
    grid-template-columns: 1fr;
  }
}
