/* ============================================================
   BootsTopup — Shared styles (HTML / CSS / jQuery / TailwindCSS)
   Re-creates the custom CSS from the original React app's index.css
   ============================================================ */

:root {
  --primary: #0284D6;
  --ring: #0284D6;
}

* {
  font-family: 'Anuphan', sans-serif;
}

html,
body {
  font-family: 'Anuphan', sans-serif;
  background: #ffffff;
  color: #18181b;
  scroll-behavior: smooth;
}

/* Hide scrollbar helpers */
.no-scrollbar::-webkit-scrollbar,
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar,
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── Infinite marquee animations ─────────────────────────── */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.animate-marquee-left  { animation: marquee-left  30s linear infinite; }
.animate-marquee-right { animation: marquee-right 30s linear infinite; }

/* Pause marquees on hover (nice touch) */
.marquee-hoverable:hover .animate-marquee-left,
.marquee-hoverable:hover .animate-marquee-right {
  animation-play-state: paused;
}

/* Top announcement ticker */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.animate-ticker { animation: ticker-scroll 35s linear infinite; }

/* Alert banner managed from Dashboard */
.site-alert-dialog {
  width: min(720px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  overflow: visible;
}
.site-alert-dialog::backdrop {
  background: rgba(0, 5, 18, .82);
  backdrop-filter: blur(9px);
}
.site-alert-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55), 0 0 55px rgba(0, 174, 255, .14);
}
.site-alert-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 6, 20, .76);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}
.site-alert-close:hover {
  background: rgba(0, 6, 20, .95);
  transform: scale(1.05);
}
.site-alert-close:focus-visible {
  outline: 3px solid #42d2fa;
  outline-offset: 3px;
}
.site-alert-image {
  display: block;
  width: 100%;
  max-height: min(78vh, 720px);
  object-fit: contain;
}
@media (max-width: 640px) {
  .site-alert-dialog { width: calc(100vw - 20px); }
  .site-alert-card { border-radius: 16px; }
  .site-alert-close {
    top: 9px;
    right: 9px;
    width: 38px;
    height: 38px;
    font-size: 27px;
  }
}

/* ── Mask gradients (used on marquee rows) ───────────────── */
.mask-x {
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.mask-x-10 {
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
          mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* ── Mobile drawer ──────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.drawer-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  z-index: 70;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.drawer-panel.open {
  transform: translateY(0);
}
.drawer-handle {
  width: 2.5rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: #e4e4e7;
  margin: 0.75rem auto;
}

/* Home mobile navigation drawer */
.np-drawer-overlay{background:rgba(0,5,18,.72);backdrop-filter:blur(7px)}
.np-mobile-drawer{top:0;bottom:0;left:auto;right:0;width:min(88vw,380px);max-height:none;border-radius:0;background:radial-gradient(circle at 100% 0,rgba(10,76,145,.28),transparent 38%),linear-gradient(180deg,#061633 0%,#020a1e 100%);border-left:1px solid rgba(73,157,235,.25);box-shadow:-24px 0 60px rgba(0,0,0,.46);transform:translateX(102%);overflow:hidden;display:flex;flex-direction:column}
.np-mobile-drawer.open{transform:translateX(0)}
.np-mobile-drawer .drawer-handle{display:none}
.np-drawer-head{padding:22px 20px 17px;border-bottom:1px solid rgba(76,142,216,.16)}
.np-drawer-brand{height:44px;display:flex;align-items:center;gap:12px}.np-drawer-brand>img{height:38px;width:auto;max-width:190px;object-fit:contain}.np-drawer-brand>div{display:none}.np-drawer-brand>button{margin-left:auto;width:38px;height:38px;border-radius:11px;display:grid;place-items:center;color:#9bb3d0;border:1px solid rgba(110,166,230,.2);background:rgba(9,32,68,.58);transition:.2s}.np-drawer-brand>button:active{transform:scale(.94);background:#0b2d5c}.np-drawer-brand>button svg{width:19px;height:19px}
.np-drawer-profile{margin:17px 18px 0;padding:13px;border:1px solid rgba(76,158,236,.2);border-radius:14px;background:linear-gradient(120deg,rgba(11,47,93,.82),rgba(5,24,53,.82));display:flex;align-items:center;gap:11px}.np-drawer-profile>img{width:45px;height:45px;border-radius:12px;object-fit:cover;border:1px solid #3281c9}.np-drawer-username{color:#f1f7ff;font-size:13px;font-weight:800;max-width:175px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.np-drawer-balance{color:#40cfff;font-size:10px;font-weight:700;margin-top:3px}.np-drawer-profile>a{margin-left:auto;color:#65bfea}.np-drawer-profile>a svg{width:18px}
.np-drawer-content{padding:20px 17px;display:flex;flex-direction:column;gap:6px;overflow-y:auto;overscroll-behavior:contain}.np-drawer-label{margin:0 8px 7px;color:#4e6c91;font-size:9px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.np-drawer-link{width:100%;min-height:48px;padding:0 13px;border-radius:11px;display:flex;align-items:center;gap:13px;color:#91a8c4;font-size:13px;font-weight:700;border:1px solid transparent;text-align:left;transition:.18s}.np-drawer-link>svg:first-child{width:19px;height:19px;color:#6684a8}.np-drawer-link .np-drawer-chevron{width:15px;height:15px;margin-left:auto;color:#36577d}.np-drawer-link:active,.np-drawer-link:hover{color:#e8f5ff;background:rgba(15,54,102,.55);border-color:rgba(66,144,218,.15)}.np-drawer-link.is-active{color:#fff;background:linear-gradient(90deg,rgba(8,112,183,.36),rgba(8,42,86,.55));border-color:rgba(44,188,242,.28);box-shadow:inset 3px 0 #25c9f8,0 5px 18px rgba(0,0,0,.12)}.np-drawer-link.is-active>svg:first-child{color:#3bd3ff;filter:drop-shadow(0 0 5px rgba(29,197,247,.5))}
.np-drawer-actions{margin-top:16px;padding-top:18px;border-top:1px solid rgba(81,143,209,.16);display:grid;gap:9px}.np-drawer-topup,.np-drawer-login,.np-drawer-logout{min-height:48px;border-radius:11px;display:flex;align-items:center;justify-content:center;gap:9px;font-size:13px;font-weight:900}.np-drawer-topup{color:#00182b;background:linear-gradient(135deg,#54e7ff,#09a8ec);box-shadow:0 8px 22px rgba(0,171,235,.22)}.np-drawer-login{color:#d8eaff;border:1px solid rgba(92,161,226,.34);background:rgba(8,34,71,.65)}.np-drawer-actions svg,.np-drawer-logout svg{width:17px;height:17px}.np-drawer-logout{margin-top:16px;color:#ff8fa1;border:1px solid rgba(255,91,116,.2);background:rgba(108,20,41,.15)}
.np-drawer-foot{margin-top:auto;min-height:54px;border-top:1px solid rgba(76,142,216,.14);display:flex;align-items:center;justify-content:center;gap:8px;color:#587594;font-size:9px;letter-spacing:.04em}.np-drawer-foot svg{width:15px;height:15px;color:#4d9ccc}
@media(max-width:380px){.np-mobile-drawer{width:92vw}.np-drawer-content{padding-top:15px}.np-drawer-link{min-height:44px}.np-drawer-head{padding-top:16px}}

/* ── Generic modal (dialog) ─────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open {
  display: flex;
}

/* Accordion (Contact FAQ) */
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}

/* ── Prose (Blog detail article body) ───────────────────── */
.prose-article {
  color: #52525b;
  line-height: 1.75;
  font-size: 1.0625rem;
}
.prose-article h2,
.prose-article h3 {
  color: #18181b;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.prose-article h2 {
  font-size: 1.875rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.prose-article h3 {
  font-size: 1.45rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.prose-article > :first-child { margin-top: 0; }
.prose-article > :last-child { margin-bottom: 0; }
.prose-article p { margin: 1.25rem 0; color: #52525b; }
.prose-article strong,
.prose-article b { color: #18181b; font-weight: 800; }
.prose-article em,
.prose-article i { font-style: italic; }
.prose-article u {
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}
.prose-article ul,
.prose-article ol {
  padding-left: 1.75rem;
  margin: 1.25rem 0;
}
.prose-article ul { list-style-type: disc; }
.prose-article ol { list-style-type: decimal; }
.prose-article li {
  display: list-item;
  margin: 0.55rem 0;
  padding-left: 0.3rem;
  color: #52525b;
}
.prose-article li::marker {
  color: #19c8f4;
  font-weight: 800;
}
.prose-article li > ul,
.prose-article li > ol { margin: 0.5rem 0; }
.prose-article a { color: #0284D6; text-decoration: none; }
.prose-article a:hover { text-decoration: underline; }
.prose-article code {
  background: #f4f4f5;
  color: #0284D6;
  padding: 0.15rem 0.4rem;
  border-radius: 0.375rem;
  font-size: 0.9em;
  font-weight: 700;
}
.prose-article blockquote {
  border-left: 4px solid #0284D6;
  background: #fafafa;
  padding: 1rem 1.5rem;
  border-radius: 0 1rem 1rem 0;
  color: #3f3f46;
  font-weight: 500;
  margin: 1.5rem 0;
}
.prose-article img {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  margin: 1.5rem 0;
}

/* ── Roulette (Random box detail) ───────────────────────── */
.roulette-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}
.roulette-track {
  display: flex;
  gap: 0.5rem;
  will-change: transform;
}
.roulette-item {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  text-align: center;
}
.roulette-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.roulette-item p {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.35rem;
  line-height: 1.1;
}
/* center pointer */
.roulette-pointer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: #0284D6;
  z-index: 20;
  box-shadow: 0 0 12px rgba(2, 132, 214, 0.8);
}
.roulette-pointer::before,
.roulette-pointer::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
}
.roulette-pointer::before {
  top: -2px;
  border-top-color: #0284D6;
}
.roulette-pointer::after {
  bottom: -2px;
  border-bottom-color: #0284D6;
}

/* Utility: simple fade/slide entrance used across pages */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.5s ease both; }

/* ── Home: midnight gaming redesign ─────────────────────── */
.np-home { --np-bg:#020b20; --np-panel:#071a3d; --np-line:rgba(116,177,255,.2); --np-blue:#12baf5; --np-text:#eef7ff; background:var(--np-bg); color:var(--np-text); overflow:hidden; }
.np-home * { box-sizing:border-box; }
.np-wrap { width:min(1320px, calc(100% - 40px)); margin-inline:auto; }
.np-hero { min-height:560px; position:relative; display:flex; align-items:center; overflow:hidden; background:radial-gradient(circle at 75% 44%,#073b82 0,rgba(3,22,59,.75) 27%,transparent 55%),linear-gradient(110deg,#020817 0%,#03112c 48%,#02091c 100%); }
.np-grid { position:absolute; inset:0; opacity:.22; background-image:linear-gradient(rgba(41,155,255,.16) 1px,transparent 1px),linear-gradient(90deg,rgba(41,155,255,.16) 1px,transparent 1px); background-size:52px 52px; mask-image:linear-gradient(to right,transparent,black 55%,transparent); transform:perspective(500px) rotateX(55deg) scale(1.5) translateY(28%); }
.np-light { position:absolute; height:2px; width:70%; right:-10%; background:linear-gradient(90deg,transparent,#1bc7ff,transparent); box-shadow:0 0 18px #0da8ff; transform:rotate(-9deg); opacity:.65; }
.np-light-one{top:38%}.np-light-two{top:54%;right:-18%;opacity:.35}
.np-hero-layout { position:relative; z-index:2; min-height:560px; display:grid; grid-template-columns:1.05fr .95fr; align-items:center; gap:50px; padding-block:70px 95px; }
.np-eyebrow { color:#76d9ff; font-weight:700; font-size:13px; letter-spacing:.08em; text-transform:uppercase; display:flex; align-items:center; gap:9px; margin-bottom:18px; }
.np-eyebrow span { width:28px; height:2px; background:#16c5ff; box-shadow:0 0 10px #16c5ff; }
.np-hero h1 { color:white; font-size:clamp(45px,5.1vw,74px); line-height:1.06; font-weight:900; letter-spacing:-.045em; max-width:730px; text-shadow:0 8px 40px rgba(0,0,0,.35); }
.np-hero h1::first-line { color:#f8fbff; }
.np-lead { margin-top:18px; color:#b8cbe3; font-size:clamp(18px,2vw,26px); font-weight:700; line-height:1.5; }
.np-trust { display:flex; align-items:center; gap:10px; color:#a9bad0; margin-top:20px; font-size:14px; }
.np-mini-shield { display:inline-grid; place-items:center; width:24px; height:27px; color:#69d8ff; border:2px solid #69d8ff; border-radius:8px 8px 12px 12px; font-weight:900; }.np-mini-shield svg{width:13px;height:13px;stroke-width:3}
.np-actions { display:flex; gap:14px; margin-top:30px; }
.np-primary,.np-secondary { min-height:54px; padding:0 27px; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; gap:9px; font-weight:800; transition:.25s ease; }
.np-primary { color:#00152a; background:linear-gradient(135deg,#55e6ff,#0999ed); box-shadow:0 10px 36px rgba(0,181,255,.32),inset 0 1px rgba(255,255,255,.5); }
.np-primary:hover { transform:translateY(-3px); filter:brightness(1.1); }
.np-secondary { border:1px solid rgba(152,199,255,.3); color:#d8ecff; background:rgba(4,25,60,.65); }
.np-secondary:hover { border-color:#29caff; background:rgba(7,51,102,.75); }
.np-visual { height:430px; position:relative; display:grid; place-items:center; }
.np-visual::after { content:""; position:absolute; width:500px; height:95px; bottom:35px; border-radius:50%; border:2px solid #168ddd; background:radial-gradient(ellipse,#0e6eca33 0,transparent 68%); box-shadow:0 0 35px #0b85dc66,inset 0 0 30px #10a5ff44; transform:perspective(300px) rotateX(66deg); }
.np-shield { width:230px; height:286px; display:grid; place-items:center; position:relative; z-index:3; clip-path:polygon(50% 0,93% 17%,88% 70%,75% 88%,50% 100%,25% 88%,12% 70%,7% 17%); background:linear-gradient(135deg,#e6f5ff,#3d86cf 24%,#0b326c 50%,#84caff 78%,#e9f8ff); filter:drop-shadow(0 0 24px #20b6ff88); animation:np-float 4s ease-in-out infinite; }
.np-shield::before { content:""; position:absolute; inset:11px; clip-path:inherit; background:linear-gradient(145deg,#0a397b,#03132d 55%,#0875be); }
.np-shield-inner { width:155px; height:155px; z-index:2; border-radius:50%; display:grid; place-content:center; text-align:center; border:4px solid #58d5ff; background:radial-gradient(circle,#0c376b,#020c20 72%); box-shadow:0 0 22px #1ec4ff,inset 0 0 18px #137ac1; }
.np-clock { font-size:50px; line-height:1; font-weight:900; font-style:italic; }.np-clock span{font-size:25px;color:#5ddcff}.np-shield-inner small{font-size:9px;letter-spacing:.18em;color:#7fbde3;margin-top:10px}
.np-orbit { position:absolute; border:1px solid rgba(68,185,255,.4); border-radius:50%; box-shadow:0 0 15px rgba(0,154,255,.18); animation:np-spin 14s linear infinite; }
.orbit-a{width:390px;height:390px}.orbit-b{width:480px;height:245px;transform:rotate(-16deg)}.orbit-c{width:350px;height:190px;transform:rotate(22deg);animation-direction:reverse}
.np-particle{position:absolute;color:#55d7ff;text-shadow:0 0 12px #00aaff}.p1{left:8%;top:22%}.p2{right:9%;top:27%}.p3{right:5%;bottom:25%}.p4{left:12%;bottom:18%}
@keyframes np-float{50%{transform:translateY(-10px)}} @keyframes np-spin{to{transform:rotate(360deg)}}
.np-stats { position:relative; z-index:5; margin-top:-45px; min-height:108px; border:1px solid var(--np-line); border-radius:12px; background:linear-gradient(100deg,rgba(7,25,61,.95),rgba(5,35,80,.92)); backdrop-filter:blur(12px); display:grid; grid-template-columns:repeat(3,1fr); box-shadow:0 18px 45px rgba(0,0,0,.25); }
.np-stat { display:flex; align-items:center; justify-content:center; gap:18px; padding:20px 25px; position:relative; }.np-stat:not(:last-child)::after{content:"";position:absolute;right:0;height:55%;width:1px;background:var(--np-line)}
.np-stat-icon { width:54px;height:54px;border-radius:50%;display:grid;place-items:center;background:#112f66;border:1px solid #24508c;color:#7cdbff;font-size:24px;box-shadow:inset 0 0 18px #0b67a733; }
.np-stat strong{font-size:27px;display:block;line-height:1.1}.np-stat span{color:#8fa8c7;font-size:12px;display:block;margin-top:5px}
.np-section { padding-block:72px; }
.np-all-games-section { padding-top:0; }
.np-heading { display:flex;align-items:end;justify-content:space-between;margin-bottom:26px}.np-heading h2{font-size:28px;font-weight:800;color:white}.np-kicker{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:#31c9ff;font-weight:800}.np-heading>a{color:#8fb1d3;font-size:13px;font-weight:700;display:inline-flex;align-items:center;gap:7px}.np-heading>a svg{width:14px;height:14px}.np-heading>a:hover{color:#35d2ff}
.np-games { display:grid;grid-template-columns:repeat(6,1fr);gap:14px }.np-game{background:linear-gradient(160deg,#0b234c,#06152f);border:1px solid var(--np-line);border-radius:11px;overflow:hidden;transition:.25s}.np-game:hover{transform:translateY(-7px);border-color:#2cbfff;box-shadow:0 16px 30px #0008,0 0 20px #0aa7ff22}
.np-game-image{height:150px;position:relative;overflow:hidden}.np-game-image::after{content:"";position:absolute;inset:auto 0 0;height:55%;background:linear-gradient(transparent,#06152f)}.np-game img{width:100%;height:100%;object-fit:cover;transition:.4s}.np-game:hover img{transform:scale(1.08)}
.np-hot{position:absolute;z-index:2;top:9px;left:9px;background:#ff405f;color:white;font-size:9px;font-weight:900;padding:4px 7px;border-radius:5px}.np-game-arrow{position:absolute;z-index:3;right:10px;bottom:8px;width:25px;height:25px;border-radius:50%;display:grid;place-items:center;background:#18bdf2;color:#00213a;font-weight:900}
.np-game-info{padding:12px 13px 14px}.np-game-info strong{display:block;color:#f4f9ff;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.np-game-info span{display:block;color:#738cae;font-size:10px;margin-top:3px}
.np-partners { border-block:1px solid rgba(88,149,222,.14);background:#030d22;padding:28px 0}.np-partners p{text-align:center;color:#7189a8;font-size:11px;text-transform:uppercase;letter-spacing:.15em;font-weight:800;margin-bottom:24px}.np-partner-row{display:grid;grid-template-columns:repeat(6,1fr);gap:15px}.np-partner{display:grid;grid-template-columns:auto 1fr;grid-template-rows:1fr 1fr;column-gap:9px;align-items:center;color:#6f86a5;justify-self:center;opacity:.75}.np-partner>span{grid-row:1/3;font-size:30px}.np-partner b{font-size:12px;letter-spacing:.08em}.np-partner small{font-size:7px;letter-spacing:.13em}
.np-heading-center{justify-content:center;text-align:center}.np-steps{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--np-line);border-radius:12px;background:#061633;padding:18px}.np-step{display:flex;align-items:center;gap:13px;padding:15px;position:relative}.np-step-no{position:absolute;top:2px;left:4px;width:25px;height:25px;border-radius:50%;display:grid;place-items:center;background:#174e9e;color:white;border:1px solid #3b87ea;font-weight:800;font-size:11px}.np-step-icon{font-size:27px;color:#6ccfff;margin-left:12px}.np-step strong{font-size:13px}.np-step p{font-size:10px;color:#748ca9;line-height:1.4;margin-top:3px}.np-step>.np-step-arrow{position:absolute;right:-7px;color:#238cd1;width:23px;height:23px}
.np-news{padding-top:10px}.np-news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.np-news-card{display:grid;grid-template-columns:130px 1fr;min-height:130px;border:1px solid var(--np-line);border-radius:10px;overflow:hidden;background:#061633;transition:.25s}.np-news-card:hover{border-color:#24bfff;transform:translateY(-3px)}.np-news-card img{width:100%;height:100%;object-fit:cover}.np-news-card>div{padding:16px}.np-news-card time{font-size:9px;color:#4cc9f5}.np-news-card h3{font-size:13px;margin:6px 0 12px;line-height:1.45;color:#e8f4ff}.np-news-card span{font-size:10px;color:#64cffa}
body:has(.np-home){background:#020b20;color:#dbeeff}body:has(.np-home)>div.sticky header{background:rgba(2,10,28,.94)!important;border-color:rgba(97,153,225,.18)!important;box-shadow:none!important}body:has(.np-home)>div.sticky>div:first-child{background:#061a3d!important}body:has(.np-home)>div.sticky header nav a:not(.text-red-600){color:#9eb2cd!important}body:has(.np-home)>div.sticky header button{color:#9eb2cd}body:has(.np-home)>footer{background:#020817!important;color:#7f96b5!important;border-color:#102447!important;margin-top:0!important}body:has(.np-home)>footer h3,body:has(.np-home)>footer h4,body:has(.np-home)>footer .text-zinc-900,body:has(.np-home)>footer .text-zinc-800{color:#e6f1ff!important}body:has(.np-home)>footer hr,body:has(.np-home)>footer .border-zinc-100{border-color:#11284d!important}
.np-navbar{height:82px;background:rgba(1,9,29,.96);border-bottom:1px solid rgba(71,137,220,.2);backdrop-filter:blur(18px);box-shadow:0 8px 30px rgba(0,0,0,.18)}
.np-navbar-inner{width:min(1380px,calc(100% - 48px));height:100%;margin:auto;display:flex;align-items:center;gap:38px}
.np-navbar-inner>a:first-child{height:100%;display:flex;align-items:center;flex-shrink:0}.np-navbar-inner>a:first-child img{height:47px;max-width:270px;object-fit:contain}
.np-navbar-links{height:100%;display:flex;align-items:center;justify-content:center;gap:47px;flex:1;margin-left:25px}
.np-navbar-links a{height:100%;position:relative;display:flex;align-items:center;color:#9daec5;font-size:14px;font-weight:700;white-space:nowrap;transition:.2s}
.np-navbar-links a:hover,.np-navbar-links a.is-active{color:#f4f9ff}
.np-navbar-links a.is-active::after{content:"";position:absolute;left:50%;bottom:14px;width:52px;height:2px;transform:translateX(-50%);background:#19bff7;border-radius:2px;box-shadow:0 0 9px #16bfff}
.np-navbar-inner>div:last-child{display:flex;align-items:center;gap:16px;margin-left:auto}
.np-login-btn{height:48px;padding:0 22px;display:inline-flex;align-items:center;gap:9px;color:#d8e7fa;border:1px solid rgba(132,164,207,.42);border-radius:9px;font-size:14px;font-weight:800;white-space:nowrap;transition:.2s}
.np-login-btn:hover{border-color:#25c6fa;color:white;background:rgba(12,70,124,.32)}
.np-primary svg,.np-secondary svg,.np-login-btn svg{width:17px;height:17px}.np-topup-btn svg{width:19px;height:19px;stroke-width:2.7}.np-stat-icon svg{width:25px;height:25px}.np-game-arrow svg{width:14px;height:14px;stroke-width:2.8}.np-partner svg{width:30px;height:30px}.np-step-icon svg{width:28px;height:28px}.np-news-card span{display:inline-flex;align-items:center;gap:5px}.np-news-card span svg{width:12px;height:12px}
.np-topup-btn{height:50px;min-width:190px;padding:0 25px;display:inline-flex;align-items:center;justify-content:center;gap:10px;border-radius:8px;color:#031429;background:linear-gradient(135deg,#45e3ff,#08a7eb);box-shadow:0 0 18px rgba(9,190,247,.33),inset 0 1px rgba(255,255,255,.55);font-size:15px;font-weight:900;white-space:nowrap;transition:.2s}.np-topup-btn:hover{filter:brightness(1.1);transform:translateY(-2px)}
@media(max-width:1120px){.np-navbar-links{gap:25px;margin-left:5px}.np-navbar-links a{font-size:12px}.np-topup-btn{min-width:150px;padding:0 17px}.np-login-btn{padding:0 15px}}
@media(max-width:767px){.np-navbar{height:66px}.np-navbar-inner{width:calc(100% - 28px);gap:10px}.np-navbar-inner>a:first-child img{height:38px;max-width:185px}.np-navbar-links,.np-login-btn,.np-topup-btn{display:none}.np-navbar-inner>div:last-child{margin-left:auto}}
@media(max-width:1024px){.np-games{grid-template-columns:repeat(3,1fr)}.np-hero-layout{grid-template-columns:1fr 1fr}.np-shield{width:190px;height:240px}.np-visual{transform:scale(.85)}.np-news-card{grid-template-columns:100px 1fr}}
@media(max-width:767px){.np-wrap{width:min(100% - 28px,620px)}.np-hero{min-height:auto}.np-hero-layout{grid-template-columns:1fr;padding-block:65px 95px;text-align:center;gap:20px}.np-eyebrow,.np-trust,.np-actions{justify-content:center}.np-hero h1{font-size:42px}.np-visual{height:270px;transform:scale(.7);margin-block:-25px}.np-stats{grid-template-columns:1fr;margin-top:-42px}.np-stat{justify-content:flex-start;padding-left:12%}.np-stat:not(:last-child)::after{height:1px;width:76%;right:12%;bottom:0}.np-games{grid-template-columns:repeat(2,1fr)}.np-game-image{height:170px}.np-partner-row{grid-template-columns:repeat(3,1fr);row-gap:25px}.np-steps{grid-template-columns:1fr;padding:10px}.np-step>.np-step-arrow{display:none}.np-news-grid{grid-template-columns:1fr}.np-news{padding-top:10px}}
@media(max-width:420px){.np-actions{flex-direction:column}.np-primary,.np-secondary{width:100%}.np-hero h1{font-size:36px}.np-games{grid-template-columns:1fr 1fr}.np-game-image{height:125px}.np-stat strong{font-size:22px}.np-partner-row{grid-template-columns:repeat(2,1fr)}}

/* ── Home footer ────────────────────────────────────────── */
.np-footer{background:linear-gradient(180deg,#03102a 0%,#020a1d 100%);color:#7f94b1;border-top:1px solid rgba(80,143,218,.18)}
.np-footer-main{width:min(1380px,calc(100% - 48px));margin:auto;display:grid;grid-template-columns:1.3fr repeat(3,minmax(140px,1fr)) 1.2fr;gap:40px;padding:45px 0 38px}
.np-footer h4{color:#e9f3ff;font-size:14px;font-weight:800;margin:0 0 17px}
.np-footer-brand img{height:45px;width:auto;max-width:245px;object-fit:contain;margin-bottom:12px}.np-footer-brand p,.np-footer-company p{font-size:12px;line-height:1.65;margin:0;color:#7f94b1}
.np-footer-socials{display:flex;gap:10px;margin-top:16px}.np-footer-socials a{width:36px;height:36px;border-radius:50%;display:grid;place-items:center;border:1px solid #365276;color:#b8cce5;background:#061631;transition:.2s}.np-footer-socials a:hover{color:white;border-color:#25c8fa;transform:translateY(-2px);box-shadow:0 0 14px #0a9fd744}.np-footer-socials svg{width:17px;height:17px}
.np-footer-col{display:flex;flex-direction:column;align-items:flex-start;gap:10px}.np-footer-col h4{margin-bottom:5px}.np-footer-col a{font-size:12px;color:#7f94b1;transition:.2s}.np-footer-col a:hover{color:#52d4ff;transform:translateX(3px)}
.np-footer-company{font-size:12px}.np-footer-contact{border-left:1px solid rgba(98,150,211,.18);padding-left:36px}.np-footer-contact>a,.np-footer-contact>div{display:flex;align-items:center;gap:11px;color:#8ca2bd;font-size:12px;margin-bottom:13px;transition:.2s}.np-footer-contact>a:hover{color:#4bd3ff}.np-footer-contact svg{width:17px;height:17px;color:#b2c9e3;stroke-width:2}
.np-footer-bottom{min-height:64px;border-top:1px solid rgba(72,125,190,.16);width:100%;padding:16px max(24px,calc((100% - 1380px)/2));display:grid;grid-template-columns:1.25fr 1fr 1.05fr;align-items:center;gap:25px;font-size:10px;color:#607796}
.np-footer-safe{display:flex;align-items:center;gap:10px}.np-footer-safe svg{width:25px;height:25px;color:#91c7f6}.np-footer-safe strong{color:#8fa9c8;font-size:11px;white-space:nowrap}.np-footer-safe span,.np-footer-legal span{width:1px;height:21px;background:#254267}.np-footer-safe p{margin:0}
.np-footer-copy{text-align:center;margin:0}.np-footer-legal{display:flex;align-items:center;justify-content:flex-end;gap:14px}.np-footer-legal a{color:#607796}.np-footer-legal a:hover{color:#45cdfb}
@media(max-width:1050px){.np-footer-main{grid-template-columns:1.25fr repeat(2,1fr);gap:38px}.np-footer-company{grid-column:2}.np-footer-contact{grid-column:3}.np-footer-bottom{grid-template-columns:1fr;text-align:center}.np-footer-safe,.np-footer-legal{justify-content:center}}
@media(max-width:767px){.np-footer-main{width:calc(100% - 36px);grid-template-columns:1fr 1fr;gap:34px 25px;padding:38px 0}.np-footer-brand{grid-column:1/3}.np-footer-company{grid-column:1/3}.np-footer-contact{grid-column:1/3;padding:25px 0 0;border-left:0;border-top:1px solid rgba(98,150,211,.18)}.np-footer-bottom{padding:22px 18px}.np-footer-safe{flex-wrap:wrap}.np-footer-safe p{width:100%}.np-footer-safe span{display:none}.np-footer-legal{flex-wrap:wrap}}

/* ── Global Midnight UI theme ───────────────────────────── */
body.site-shell{--ui-bg:#020a1d;--ui-bg-2:#04112a;--ui-panel:#071832;--ui-panel-2:#0a2042;--ui-border:rgba(86,151,224,.19);--ui-text:#eaf4ff;--ui-muted:#8298b4;--ui-cyan:#22c8f7;background:var(--ui-bg)!important;color:var(--ui-text)!important}
body.site-shell main{position:relative;background:radial-gradient(circle at 82% 7%,rgba(10,86,165,.18),transparent 30%),radial-gradient(circle at 5% 52%,rgba(0,164,224,.07),transparent 28%),var(--ui-bg);min-height:55vh}
body.site-shell main:before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.12;background-image:linear-gradient(rgba(54,135,220,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(54,135,220,.12) 1px,transparent 1px);background-size:52px 52px;mask-image:linear-gradient(to bottom,black,transparent 38%)}
body.site-shell main>*{position:relative}

/* Shared surfaces */
body.site-shell .bg-white{background-color:var(--ui-panel)!important}
body.site-shell .bg-white\/95{background-color:rgba(3,13,34,.94)!important}
body.site-shell .bg-zinc-50,body.site-shell .bg-zinc-50\/50,body.site-shell .bg-zinc-50\/60{background-color:#041127!important}
body.site-shell .bg-zinc-100{background-color:#0a2142!important}
body.site-shell .bg-zinc-200{background-color:#153256!important}
body.site-shell .hover\:bg-zinc-50:hover,body.site-shell .hover\:bg-zinc-100:hover{background-color:#0b2448!important}
body.site-shell .shadow-sm,body.site-shell .shadow-md,body.site-shell .shadow-lg,body.site-shell .shadow-xl{box-shadow:0 12px 35px rgba(0,0,0,.22)!important}
body.site-shell .border-zinc-50,body.site-shell .border-zinc-100,body.site-shell .border-zinc-200,body.site-shell .border-zinc-300{border-color:var(--ui-border)!important}
body.site-shell .divide-zinc-100>:not([hidden])~:not([hidden]),body.site-shell .divide-zinc-200>:not([hidden])~:not([hidden]){border-color:var(--ui-border)!important}

/* Typography */
body.site-shell .text-zinc-950,body.site-shell .text-zinc-900,body.site-shell .text-zinc-800{color:var(--ui-text)!important}
body.site-shell .text-zinc-700,body.site-shell .text-zinc-600{color:#afc1d8!important}
body.site-shell .text-zinc-500{color:var(--ui-muted)!important}
body.site-shell .text-zinc-400{color:#627c9d!important}
body.site-shell .text-zinc-300{color:#4e6d91!important}
body.site-shell .text-red-600,body.site-shell .text-red-500{color:#2bcdf8!important}
body.site-shell .from-red-500,body.site-shell .from-red-600{--tw-gradient-from:#1cccf7 var(--tw-gradient-from-position)!important;--tw-gradient-to:rgb(28 204 247 / 0) var(--tw-gradient-to-position)!important}
body.site-shell .to-red-500,body.site-shell .to-red-600,body.site-shell .to-rose-400{--tw-gradient-to:#087ed7 var(--tw-gradient-to-position)!important}

/* Cards, forms and interactive controls */
body.site-shell input:not([type="checkbox"]):not([type="radio"]),body.site-shell textarea,body.site-shell select{background:#04132c!important;color:#e9f4ff!important;border-color:#1a3d67!important;box-shadow:none!important}
body.site-shell input::placeholder,body.site-shell textarea::placeholder{color:#526e91!important}
body.site-shell input:focus,body.site-shell textarea:focus,body.site-shell select:focus{background:#071b38!important;border-color:#22c7f5!important;box-shadow:0 0 0 3px rgba(34,199,245,.1)!important}
body.site-shell input:disabled,body.site-shell textarea:disabled{background:#071327!important;color:#637b99!important}
body.site-shell button,body.site-shell a{outline-color:#2acdf7}
body.site-shell .bg-red-600,body.site-shell .bg-red-500{background:linear-gradient(135deg,#20cef7,#087fd8)!important}
body.site-shell .hover\:bg-red-500:hover,body.site-shell .hover\:bg-red-600:hover,body.site-shell .hover\:bg-red-700:hover{background:linear-gradient(135deg,#54ddfa,#0b91e9)!important}
body.site-shell .bg-red-50,body.site-shell .bg-red-100{background-color:rgba(22,169,225,.1)!important}
body.site-shell .border-red-100,body.site-shell .border-red-200,body.site-shell .border-red-300,body.site-shell .border-red-500,body.site-shell .border-red-600{border-color:rgba(37,198,242,.42)!important}
body.site-shell .ring-red-500,body.site-shell .ring-red-600{--tw-ring-color:#22c7f5!important}
body.site-shell .method-card,body.site-shell .g-card>div{border-color:var(--ui-border)!important;background-color:#081a36!important}
body.site-shell .method-card:hover{border-color:#27c9f5!important;box-shadow:0 13px 32px rgba(0,154,224,.13)!important}

/* Navbar on every inner page */
body.site-shell>div.sticky header{background:rgba(2,10,29,.95)!important;border-color:rgba(75,143,222,.2)!important;box-shadow:0 8px 30px rgba(0,0,0,.18)!important}
body.site-shell>div.sticky>div:first-child{background:#072351!important;color:#d8efff!important}
body.site-shell>div.sticky header nav a:not(.text-red-600){color:#92a7c2!important}
body.site-shell>div.sticky header nav a:hover{color:#e8f8ff!important}
body.site-shell #nav-search-open{background:#071a36!important;border:1px solid rgba(83,148,221,.18)}
body.site-shell #nav-profile-menu{background:#071832!important;border-color:var(--ui-border)!important}

/* Standard mobile drawer and search */
body.site-shell .drawer-overlay{background:rgba(0,5,18,.72);backdrop-filter:blur(7px)}
body.site-shell .drawer-panel:not(.np-mobile-drawer){background:linear-gradient(180deg,#071934,#030b20);color:var(--ui-text)}
body.site-shell .drawer-panel:not(.np-mobile-drawer) .drawer-handle{background:#35567c}
body.site-shell #nav-search-backdrop{background:rgba(0,5,18,.75)!important}
body.site-shell #nav-search-panel{background:#071832!important;border-color:var(--ui-border)!important}
body.site-shell .nav-search-row:hover,body.site-shell .nav-search-row.active{background:#0b2447!important}

/* Modals and feedback */
body.site-shell .modal-overlay{background:rgba(0,5,18,.82);backdrop-filter:blur(8px)}
body.site-shell .modal-overlay>div{background:#071832!important;border:1px solid var(--ui-border)!important}
body.site-shell main>.modal-overlay{position:fixed!important;inset:0!important;z-index:1000!important}
body.site-shell main>#promotion-modal,body.site-shell>#promotion-modal{position:fixed!important;inset:0!important;z-index:1000!important}
body.site-shell #promotion-modal-dialog{position:relative;width:max-content;max-width:min(1080px,calc(100vw - 40px));max-height:calc(100vh - 40px);max-height:calc(100dvh - 40px)}
body.site-shell #promotion-modal-image{display:block;width:auto;height:auto;max-width:100%;max-height:calc(100vh - 40px);max-height:calc(100dvh - 40px);margin:auto}
body.site-shell .modal-overlay.open{display:flex;align-items:center;justify-content:center}
body.site-shell #success-modal>div{max-height:calc(100vh - 32px);overflow-y:auto}
body.site-shell #success-modal.open>div{animation:checkout-dialog-in .2s ease-out}
@keyframes checkout-dialog-in{from{opacity:0;transform:translateY(14px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}
@media(prefers-reduced-motion:reduce){body.site-shell #success-modal.open>div{animation:none}}
body.site-shell .swal2-popup{background:#071832;color:#eaf4ff;border:1px solid var(--ui-border)}
body.site-shell .swal2-title,body.site-shell .swal2-html-container{color:#eaf4ff}

/* Article/legal content — use !important to override any inline styles from DB content */
body.site-shell .prose-article,
body.site-shell .prose-article *{color:#a9bdd4!important}
body.site-shell .prose-article h1,
body.site-shell .prose-article h2,
body.site-shell .prose-article h3,
body.site-shell .prose-article h4,
body.site-shell .prose-article h5,
body.site-shell .prose-article h6{color:#edf7ff!important}
body.site-shell .prose-article strong,
body.site-shell .prose-article b{color:#dce9ff!important}
/* Reset dark card/box backgrounds that may come from DB-stored HTML */
body.site-shell .prose-article div,
body.site-shell .prose-article section,
body.site-shell .prose-article [style*="background"]{background-color:rgba(8,28,56,.65)!important;border-color:rgba(76,142,216,.22)!important}
body.site-shell .prose-article blockquote{background:#081d3b!important;color:#b9cbe0!important;border-left-color:#21c5f4!important}
body.site-shell .prose-article code{background:#0b2346!important;color:#42d2fa!important}
body.site-shell .article-content,
body.site-shell .article-content p,
body.site-shell .article-content li,
body.site-shell .article-content strong,
body.site-shell .article-content b,
body.site-shell .article-content em,
body.site-shell .article-content i,
body.site-shell .article-content u,
body.site-shell .article-content blockquote,
body.site-shell .article-content h1,
body.site-shell .article-content h2,
body.site-shell .article-content h3,
body.site-shell .article-content h4{color:#fff!important}

/* Tables, tabs and separators */
body.site-shell table{color:#afc2d9}
body.site-shell thead,body.site-shell tbody tr:hover{background:#091d3b!important}
body.site-shell th,body.site-shell td{border-color:var(--ui-border)!important}
body.site-shell hr{border-color:var(--ui-border)!important}

/* Inner-page footer */
body.site-shell>footer:not(.np-footer){background:#020817!important;color:#748aa7!important;border-color:#102447!important;margin-top:0!important}
body.site-shell>footer:not(.np-footer) h3,body.site-shell>footer:not(.np-footer) h4{color:#e6f1ff!important}

/* Auth pages */
body.site-shell main [class*="max-w-md"].bg-white,body.site-shell main [class*="max-w-lg"].bg-white{background:linear-gradient(150deg,#091d3b,#05132b)!important;border:1px solid rgba(73,151,226,.22)!important;box-shadow:0 28px 70px rgba(0,0,0,.36),0 0 55px rgba(0,127,207,.06)!important}

@media(max-width:767px){
  body.site-shell main{background:radial-gradient(circle at 90% 4%,rgba(10,86,165,.18),transparent 26%),var(--ui-bg)}
  body.site-shell .container{max-width:100%}
}

/* ── Route-based layout system ──────────────────────────── */
.route-inner main,.route-games main,.route-game-detail main,.route-payments main,.route-articles main,.route-article-detail main,.route-contact main,.route-profile main,.route-auth main,.route-legal main{isolation:isolate}
.route-games main>section:first-child,.route-articles main>section:first-child{background:linear-gradient(110deg,#03102a,#061c3f)!important;border-bottom:1px solid var(--ui-border)}
.route-games main>section:first-child:after,.route-articles main>section:first-child:after{content:"";position:absolute;inset:0;background:linear-gradient(115deg,transparent 52%,rgba(21,180,239,.07) 52.2%,transparent 71%),radial-gradient(circle at 85% 40%,rgba(18,145,218,.2),transparent 25%);pointer-events:none}

/* Games catalogue: full-width discovery workspace */
.route-games .games-catalogue{position:relative;min-height:100vh;padding:62px 0 92px;background:radial-gradient(circle at 85% 5%,rgba(20,133,211,.2),transparent 26%),linear-gradient(145deg,#03102a,#020a1d 56%)!important}
.route-games .games-catalogue:before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.2;background-image:linear-gradient(rgba(58,139,218,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(58,139,218,.12) 1px,transparent 1px);background-size:56px 56px;mask-image:linear-gradient(to bottom,black,transparent 42%)}
.route-games .games-catalogue-wrap{position:relative;z-index:1;width:min(1380px,calc(100% - 48px));margin:auto}
.route-games .games-catalogue-hero{display:flex;align-items:end;justify-content:space-between;gap:40px;margin-bottom:36px}
.route-games .games-catalogue-eyebrow{margin-bottom:10px;color:#39d2fb;font-size:10px;font-weight:900;letter-spacing:.2em}
.route-games .games-catalogue-hero h1{color:#f1f8ff;font-size:clamp(38px,5vw,66px);line-height:1.08;font-weight:900;letter-spacing:-.045em}
.route-games .games-catalogue-hero>div:first-child>p:last-child{max-width:680px;margin-top:13px;color:#8299b7;font-size:14px;line-height:1.7}
.route-games .games-catalogue-total{min-width:165px;padding:17px 20px;border-left:2px solid #29cdf8;background:linear-gradient(90deg,rgba(14,97,160,.14),transparent)}
.route-games .games-catalogue-total strong{display:block;color:#edf8ff;font-size:31px;line-height:1;font-weight:900}
.route-games .games-catalogue-total span{display:block;margin-top:7px;color:#7790af;font-size:10px;font-weight:700}
.route-games .games-toolbar{position:sticky;top:88px;z-index:20;display:grid;grid-template-columns:minmax(260px,1fr) auto auto;gap:14px;align-items:center;padding:13px;margin-bottom:22px;border:1px solid rgba(71,147,221,.24);border-radius:15px;background:rgba(5,20,45,.9);backdrop-filter:blur(16px);box-shadow:0 16px 38px rgba(0,0,0,.25)}
.route-games .games-search{height:48px;display:flex;align-items:center;gap:11px;padding:0 15px;border:1px solid rgba(76,145,215,.22);border-radius:11px;background:#04132c;transition:border-color .2s,box-shadow .2s}
.route-games .games-search:focus-within{border-color:#27c9f5;box-shadow:0 0 0 3px rgba(39,201,245,.09)}
.route-games .games-search svg{width:18px;height:18px;flex:0 0 auto;color:#5d7d9f}
.route-games .games-search input{width:100%;height:100%;padding:0!important;border:0!important;background:transparent!important;color:#eaf4ff!important;font-size:12px;outline:0;box-shadow:none!important}
.route-games .games-filter-actions{display:flex;align-items:center;gap:8px}
.route-games .games-filter-chip{min-height:42px;padding:0 15px;border:1px solid rgba(77,143,211,.22);border-radius:10px;background:#071a35;color:#839ab7;font-size:10px;font-weight:800;transition:.2s}
.route-games .games-filter-chip:hover{color:#e8f6ff;border-color:rgba(40,199,244,.45)}
.route-games .games-filter-chip.is-active{color:#031326;border-color:#32d0f6;background:#2bcdf8;box-shadow:0 8px 20px rgba(35,193,238,.18)}
.route-games .games-result-count{padding:0 9px;color:#718aa9;font-size:10px;font-weight:700;white-space:nowrap}
.route-games .games-result-count strong{color:#eaf5ff;font-size:15px;font-weight:900}
.route-games .games-results{min-height:520px}
.route-games #g-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:16px}
.route-games #g-grid>.g-card{min-width:0;padding:7px 7px 13px;border:1px solid rgba(70,137,207,.15);border-radius:15px;background:rgba(5,19,43,.78);overflow:hidden;transition:transform .22s,border-color .22s,background-color .22s,box-shadow .22s}
.route-games #g-grid>.g-card:hover{transform:translateY(-5px);border-color:rgba(39,199,243,.48);background:#081d3b;box-shadow:0 18px 36px rgba(0,0,0,.25)}
.route-games .game-card-cover{position:relative;aspect-ratio:1;overflow:hidden;border-radius:11px!important;background:#081a36!important}
.route-games .game-card-cover img{width:100%;height:100%;object-fit:cover;transition:transform .35s}
.route-games .g-card:hover .game-card-cover img{transform:scale(1.055)}
.route-games .game-card-badges{position:absolute;top:8px;left:8px;right:8px;display:flex;align-items:center;gap:5px;background:transparent!important}
.route-games .game-card-badges span{padding:4px 7px;border-radius:6px;color:white;font-size:8px;line-height:1;font-weight:900;letter-spacing:.04em;box-shadow:0 4px 12px rgba(0,0,0,.28)}
.route-games .game-card-badges .is-new{background:#168fd7}
.route-games .game-card-badges .is-hot{margin-left:auto;background:#e23445}
.route-games .game-card-body{padding:12px 5px 0;background:transparent!important}
.route-games .game-card-body h2{min-height:36px;color:#dce9f8;font-size:12px;line-height:1.45;font-weight:800;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.route-games .game-card-body span{display:flex;align-items:center;gap:6px;margin-top:8px;color:#31c9f3;font-size:9px;font-weight:800}
.route-games .game-card-body b{font-size:13px;transition:transform .2s}
.route-games .g-card:hover .game-card-body b{transform:translateX(3px)}
.route-games .games-empty{padding:100px 20px;text-align:center;color:#6f87a5;border:1px dashed rgba(70,140,210,.22);border-radius:16px;background:rgba(5,19,43,.55)}
.route-games .games-empty strong{display:block;color:#dbe9f8;font-size:16px}
.route-games .games-empty p{margin-top:5px;font-size:11px}

/* Game detail: product workspace + sticky checkout */
.route-game-detail main>div:first-child>section:first-child{height:390px!important}
.route-game-detail main>div:first-child>section:first-child>div:nth-child(2){background:linear-gradient(to top,#020a1d 0%,rgba(2,10,29,.62) 45%,rgba(0,0,0,.35))!important}
.route-game-detail main>div:first-child>.container{max-width:1280px}
.route-game-detail main>div:first-child>.container>.max-w-4xl.space-y-6{max-width:none!important;display:grid;grid-template-columns:minmax(0,1fr) 385px;gap:20px;align-items:start}
.route-game-detail main>div:first-child>.container>.max-w-4xl.space-y-6>section{margin:0!important;border-radius:17px!important}
.route-game-detail main>div:first-child>.container>.max-w-4xl.space-y-6>section:nth-child(1){grid-column:1;grid-row:1}
.route-game-detail main>div:first-child>.container>.max-w-4xl.space-y-6>section:nth-child(2){grid-column:1;grid-row:2}
.route-game-detail main>div:first-child>.container>.max-w-4xl.space-y-6>section:nth-child(3){grid-column:2;grid-row:1/span 2;position:sticky;top:105px}
.route-game-detail #pkg-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.route-game-detail .checkout-summary{padding:24px!important}
.route-game-detail .checkout-summary-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:14px}
.route-game-detail .checkout-order-card,.route-game-detail .checkout-payment-card{min-width:0;border:1px solid rgba(70,132,206,.2);border-radius:15px;background:#060f2b;padding:18px}
.route-game-detail .checkout-product-line{display:grid;grid-template-columns:52px minmax(0,1fr) auto;gap:13px;align-items:start;min-width:0;padding-bottom:20px}
.route-game-detail .checkout-product-thumb{width:52px;height:52px;border-radius:11px;object-fit:cover;border:1px solid rgba(114,174,238,.24);background:#0a1d3d}
.route-game-detail .checkout-product-info{min-width:0;padding-top:1px}
.route-game-detail .checkout-product-info h3{color:#f0f5ff;font-size:15px;line-height:1.35;font-weight:900;overflow-wrap:anywhere}
.route-game-detail .checkout-product-info p{margin-top:4px;color:#8ea0bb;font-size:11px;line-height:1.35;font-weight:700;overflow-wrap:anywhere}
.route-game-detail .checkout-product-info span{display:block;margin-top:4px;color:#637996;font-size:10px;line-height:1.35;overflow-wrap:anywhere}
.route-game-detail .checkout-line-price{padding-top:2px;text-align:right;white-space:nowrap}
.route-game-detail .checkout-line-price small{display:block;color:#607794;font-size:9px;font-weight:700}
.route-game-detail .checkout-line-price strong{display:block;margin-top:3px;color:#dfeaff;font-size:13px;font-weight:900}
.route-game-detail .checkout-total{display:flex;justify-content:space-between;align-items:end;gap:16px;padding-top:17px;border-top:1px solid rgba(75,132,201,.18);color:#dbe7f8;font-size:18px;font-weight:900}
.route-game-detail .checkout-total strong{color:#f4f8ff;font-size:25px;line-height:1;font-weight:900;white-space:nowrap}
.route-game-detail .checkout-payment-card{display:grid;gap:14px;background:#061630}
.route-game-detail .checkout-balance p{font-size:10px;font-weight:700;color:#718aa9;margin-bottom:4px}
.route-game-detail .checkout-balance{display:flex;align-items:center;justify-content:space-between;gap:14px;min-width:0}
.route-game-detail .checkout-balance strong{display:block;color:#eaf4ff;font-size:18px;line-height:1.2;font-weight:900;white-space:nowrap}
.route-game-detail .checkout-balance-status{display:inline-flex;align-items:center;justify-content:center;max-width:150px;padding:6px 9px;border:1px solid transparent;border-radius:999px;font-size:9px;line-height:1.25;font-weight:800;text-align:center}
.route-game-detail .checkout-balance-status.is-idle{color:#7890ad;background:#071b37;border-color:rgba(89,149,216,.18)}
.route-game-detail .checkout-balance-status.is-ok{color:#64e7b2;background:rgba(21,174,116,.11);border-color:rgba(62,218,157,.24)}
.route-game-detail .checkout-balance-status.is-low{color:#ff8f9a;background:rgba(238,67,85,.1);border-color:rgba(255,111,124,.22)}
.route-game-detail .checkout-payment-card #btn-pay{min-height:50px}

/* Payments: method selection dashboard */
.route-payments main>div:first-child{padding:65px 24px 100px!important}
.route-payments main>div:first-child>.max-w-4xl{max-width:1120px!important}
.route-payments main>div:first-child>.max-w-4xl>.text-center{text-align:left;display:grid;grid-template-columns:82px 1fr;column-gap:18px;align-items:center;margin-bottom:36px}
.route-payments main>div:first-child>.max-w-4xl>.text-center>div:first-child{grid-row:1/3;margin:0!important}
.route-payments main>div:first-child>.max-w-4xl>.text-center h1{align-self:end}
.route-payments main>div:first-child>.max-w-4xl>.text-center p{grid-column:2;margin:0!important}
.route-payments .method-card{min-height:132px;border-radius:17px!important;padding:24px!important}
.route-payments .method-card>div:first-child{width:70px;height:70px;border-radius:14px!important}

/* Articles: editorial layout */
.route-articles main>section:first-child{padding:70px 0 82px!important}
.route-articles main>section:first-child .container{text-align:left!important;max-width:1280px}
.route-articles main>section:first-child h1{font-size:clamp(42px,5.2vw,68px);max-width:800px}
.route-articles main>section:first-child p{margin-left:0!important}
.route-articles main>section:first-child+div.container{max-width:1280px;padding-top:0!important;margin-top:-24px}
.route-articles #blog-featured>a{border-radius:18px!important}
.route-articles #blog-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.route-articles .blog-card{border-radius:16px!important}

/* Article reading layout */
.route-article-detail main>div:first-child>section:first-child{min-height:430px;display:flex;align-items:end}
.route-article-detail main>div:first-child>section:first-child h1{max-width:1050px}
.route-article-detail main article{background:linear-gradient(155deg,rgba(8,28,58,.86),rgba(4,16,36,.9));border:1px solid var(--ui-border);border-radius:18px;padding:clamp(24px,4vw,52px)}
.route-article-detail main aside>div{border-radius:16px!important}

/* Contact: one full-width row per channel */
.route-contact main>div:first-child>.container{max-width:1180px!important;padding-top:70px!important}
.route-contact main>div:first-child>.container>.text-center{text-align:left!important;margin-bottom:35px!important;max-width:720px}
.route-contact .contact-channels{padding:25px;border:1px solid rgba(76,147,219,.2);border-radius:18px;background:linear-gradient(145deg,rgba(8,29,59,.92),rgba(4,17,39,.9));box-shadow:0 24px 55px rgba(0,0,0,.2)}
.route-contact .contact-channels-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:20px}
.route-contact .contact-channels-head p{color:#31caf5;font-size:9px;font-weight:900;letter-spacing:.17em;margin-bottom:5px}
.route-contact .contact-channels-head h2{color:#edf7ff;font-size:22px;line-height:1.25;font-weight:900}
.route-contact .contact-online{display:inline-flex;align-items:center;gap:7px;padding:7px 10px;border:1px solid rgba(55,218,157,.22);border-radius:999px;background:rgba(26,169,115,.09);color:#72e4b9;font-size:9px;font-weight:800;white-space:nowrap}
.route-contact .contact-online i{width:7px;height:7px;border-radius:50%;background:#33d798;box-shadow:0 0 0 4px rgba(51,215,152,.1)}
.route-contact .contact-channel-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:12px}
.route-contact .contact-channel-card{position:relative;min-width:0;min-height:100px;padding:18px 20px;display:grid;grid-template-columns:58px minmax(0,1fr);gap:17px;align-items:center;border:1px solid rgba(76,142,216,.2);border-radius:14px;background:#061630;overflow:hidden;transition:transform .2s,border-color .2s,background-color .2s,box-shadow .2s}
.route-contact .contact-channel-card:after{content:"";position:absolute;width:130px;height:130px;right:-72px;bottom:-76px;border-radius:50%;background:rgba(34,199,245,.06);transition:transform .25s,background-color .25s}
.route-contact .contact-channel-card:hover{transform:translateY(-3px);border-color:rgba(45,204,247,.55);background:#081d3b;box-shadow:0 16px 35px rgba(0,0,0,.2)}
.route-contact .contact-channel-card:hover:after{transform:scale(1.25);background:rgba(34,199,245,.1)}
.route-contact .contact-channel-icon{width:58px;height:58px;border-radius:13px;display:grid;place-items:center;color:#29cdf8;background:rgba(20,163,222,.12);border:1px solid rgba(46,196,241,.14)}
.route-contact .contact-channel-copy{min-width:0;display:grid;grid-template-columns:minmax(0,1fr) auto;grid-template-rows:auto auto;column-gap:24px;align-items:center}
.route-contact .contact-channel-copy h3{color:#edf7ff;font-size:16px;font-weight:900;line-height:1.35}
.route-contact .contact-channel-copy p{grid-column:1;margin-top:4px;color:#7f96b4;font-size:11px;line-height:1.55}
.route-contact .contact-channel-copy span{grid-column:2;grid-row:1/span 2;display:inline-flex;align-items:center;justify-content:center;gap:8px;min-width:112px;padding:10px 13px;border:1px solid rgba(43,199,242,.22);border-radius:10px;background:rgba(19,155,215,.08);color:#37cdf6;font-size:10px;font-weight:800}
.route-contact .contact-channel-copy b{font-size:15px;line-height:1;transition:transform .2s}
.route-contact .contact-channel-card:hover .contact-channel-copy b{transform:translateX(4px)}
.route-contact .contact-channels-empty{padding:35px;text-align:center;color:#7189a8;border:1px dashed rgba(76,142,216,.25);border-radius:16px;background:rgba(5,20,45,.7)}
.route-contact .contact-faq{margin-top:58px;padding-top:40px;border-top:1px solid rgba(76,142,216,.16)}
.route-contact .contact-faq-heading{display:flex;align-items:center;gap:15px;margin-bottom:24px}
.route-contact .contact-faq-heading-icon{flex:0 0 auto;width:50px;height:50px;display:grid;place-items:center;border:1px solid rgba(43,199,242,.26);border-radius:14px;color:#35cef7;background:linear-gradient(145deg,rgba(22,153,210,.18),rgba(8,44,85,.25));box-shadow:0 10px 28px rgba(0,0,0,.16)}
.route-contact .contact-faq-heading-icon svg{width:24px;height:24px}
.route-contact .contact-faq-eyebrow{margin-bottom:3px;color:#32caf5;font-size:9px;font-weight:900;letter-spacing:.18em}
.route-contact .contact-faq-heading h2{color:#edf7ff;font-size:24px;line-height:1.3;font-weight:900;letter-spacing:-.02em}
.route-contact .contact-faq-subtitle{margin-top:3px;color:#738ba9;font-size:11px;line-height:1.55}
.route-contact .contact-faq-list{display:grid;gap:10px}
.route-contact .faq-item{overflow:hidden;border:1px solid rgba(76,142,216,.2);border-radius:14px;background:linear-gradient(135deg,rgba(7,27,57,.94),rgba(4,18,40,.96));transition:border-color .22s,background-color .22s,box-shadow .22s}
.route-contact .faq-item:hover{border-color:rgba(53,183,231,.35)}
.route-contact .faq-item.is-open{border-color:rgba(45,204,247,.5);background:linear-gradient(135deg,rgba(8,39,78,.98),rgba(5,24,51,.98));box-shadow:0 14px 35px rgba(0,0,0,.17)}
.route-contact .faq-head{width:100%;min-height:72px;padding:14px 17px;display:grid;grid-template-columns:38px minmax(0,1fr) 36px;align-items:center;gap:14px;color:#dceaff;text-align:left;cursor:pointer}
.route-contact .faq-number{width:38px;height:38px;display:grid;place-items:center;border-radius:10px;color:#39cef6;background:rgba(23,159,217,.1);font-size:10px;font-weight:900;letter-spacing:.06em}
.route-contact .faq-question{font-size:14px;font-weight:800;line-height:1.55}
.route-contact .faq-icon{width:34px;height:34px;display:grid;place-items:center;border:1px solid rgba(85,151,216,.18);border-radius:10px;color:#6f8bab;background:rgba(4,18,40,.55);transition:transform .25s,color .25s,border-color .25s,background-color .25s}
.route-contact .faq-icon svg{width:16px;height:16px}
.route-contact .faq-item.is-open .faq-number{color:#04182a;background:#31caf5}
.route-contact .faq-item.is-open .faq-question{color:#fff}
.route-contact .faq-item.is-open .faq-icon{transform:rotate(180deg);color:#3bd3fa;border-color:rgba(47,202,244,.3);background:rgba(21,151,207,.12)}
.route-contact .faq-answer-inner{padding:0 67px 21px;color:#8ea5c1;font-size:12px;line-height:1.85}
.route-contact .faq-answer-inner:before{content:"";display:block;height:1px;margin-bottom:17px;background:linear-gradient(90deg,rgba(60,139,212,.28),transparent)}

/* Profile: full-width account dashboard */
.route-profile main>div:first-child>main>div.container{max-width:1280px!important;padding-top:54px!important}
.route-profile .profile-tab-btn{min-height:48px}
.route-profile #tab-profile>.grid{grid-template-columns:330px minmax(0,1fr);gap:20px}
.route-profile #tab-profile>.grid>div{grid-column:auto!important}
.route-profile #tab-profile .rounded-3xl{border-radius:16px!important}

/* Auth: split-screen onboarding */
.route-auth>main>div:first-child{min-height:calc(100vh - 82px);display:grid!important;grid-template-columns:minmax(380px,560px) 460px;gap:80px;padding:70px max(28px,calc((100% - 1180px)/2))!important;align-items:center!important}
.auth-showcase{display:block;max-width:520px}
.auth-showcase-badge{display:inline-flex;align-items:center;gap:8px;color:#44d7ff;font-size:10px;font-weight:800;letter-spacing:.17em;padding:8px 12px;border-radius:999px;border:1px solid rgba(49,200,244,.25);background:rgba(6,51,93,.35)}.auth-showcase-badge svg{width:15px;height:15px}
.auth-showcase h2{font-size:clamp(45px,5vw,70px);font-weight:900;line-height:1.04;letter-spacing:-.045em;color:#f4f9ff;margin:25px 0 20px}.auth-showcase h2 strong{color:#29cdf8;font-weight:900}.auth-showcase>p{font-size:16px;line-height:1.8;color:#8299b7;max-width:470px}
.auth-showcase-points{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}.auth-showcase-points span{display:flex;align-items:center;gap:7px;padding:10px 13px;border-radius:10px;background:#071a35;border:1px solid var(--ui-border);color:#9eb4cf;font-size:11px;font-weight:700}.auth-showcase-points svg{width:16px;height:16px;color:#34cdf7}
.route-auth .auth-form-panel{max-width:460px!important}.route-auth .auth-form-panel>div{border-radius:18px!important;padding:34px!important}

/* Legal documents: index rail + reading panel */
.route-legal main>div:first-child>.container{max-width:1120px!important;display:grid;grid-template-columns:260px minmax(0,1fr);gap:34px;align-items:start}
.route-legal main>div:first-child>.container>.text-center{text-align:left!important;position:sticky;top:110px;margin:0!important;padding:20px 0}
.route-legal main>div:first-child>.container>.text-center h1{line-height:1.25}.route-legal main>div:first-child>.container>.text-center>div{margin-left:0!important}
.route-legal main>div:first-child>.container>.bg-white{border-radius:17px!important;padding:clamp(25px,4vw,48px)!important}

@media(max-width:1024px){
  .route-games #g-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .route-game-detail main>div:first-child>.container>.max-w-4xl.space-y-6{grid-template-columns:1fr}
  .route-game-detail main>div:first-child>.container>.max-w-4xl.space-y-6>section{grid-column:1!important;grid-row:auto!important;position:relative!important;top:auto!important}
  .route-game-detail .checkout-summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .route-auth>main>div:first-child{grid-template-columns:1fr 430px;gap:40px}
}
@media(max-width:767px){
  .route-games .games-catalogue{padding:42px 0 70px}.route-games .games-catalogue-wrap{width:calc(100% - 28px)}.route-games .games-catalogue-hero{align-items:flex-start;flex-direction:column;gap:20px;margin-bottom:27px}.route-games .games-catalogue-hero h1{font-size:39px}.route-games .games-catalogue-total{width:100%;min-width:0;padding:13px 16px;display:flex;align-items:center;gap:11px}.route-games .games-catalogue-total strong{font-size:25px}.route-games .games-catalogue-total span{margin:0}.route-games .games-toolbar{top:72px;grid-template-columns:minmax(0,1fr) auto;gap:10px;padding:10px}.route-games .games-search{grid-column:1/3}.route-games .games-result-count{grid-column:2;grid-row:2;text-align:right}.route-games #g-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.route-games #g-grid>.g-card{padding:6px 6px 11px}.route-games .game-card-body{padding-top:10px}.route-games .game-card-body h2{font-size:11px}
  .route-game-detail main>div:first-child>section:first-child{height:300px!important}.route-game-detail #pkg-grid,.route-game-detail .checkout-summary-grid{grid-template-columns:1fr}
  .route-payments main>div:first-child{padding:42px 14px 75px!important}.route-payments main>div:first-child>.max-w-4xl>.text-center{grid-template-columns:62px 1fr}.route-payments main>div:first-child>.max-w-4xl>.text-center>div:first-child{width:58px;height:58px}
  .route-articles main>section:first-child{padding:48px 0 65px!important}.route-articles main>section:first-child .container{padding:0 20px}.route-articles #blog-grid{grid-template-columns:1fr}
  .route-article-detail main article{border-radius:14px;padding:22px}
  .route-contact main>div:first-child>.container{padding-top:45px!important}.route-contact .contact-channels{padding:18px}.route-contact .contact-channels-head{align-items:flex-start;flex-direction:column;gap:12px}.route-contact .contact-channel-card{min-height:96px;padding:16px}.route-contact .contact-faq{margin-top:42px;padding-top:32px}.route-contact .faq-answer-inner{padding-right:18px}
  .route-profile main>div:first-child>main>div.container{padding-top:36px!important}.route-profile #tab-profile>.grid{display:block}.route-profile #tab-profile>.grid>div+div{margin-top:20px}
  .route-auth>main>div:first-child{display:flex!important;min-height:auto;flex-direction:column;gap:35px;padding:50px 16px 70px!important}.auth-showcase{text-align:center}.auth-showcase h2{font-size:42px}.auth-showcase>p{font-size:14px}.auth-showcase-points{justify-content:center}.auth-form-panel{width:100%}
  .route-legal main>div:first-child>.container{display:block}.route-legal main>div:first-child>.container>.text-center{position:relative;top:auto;padding-top:4px;margin-bottom:25px!important}
}
@media(max-width:520px){
  .route-contact .contact-channel-card{grid-template-columns:50px minmax(0,1fr);gap:13px}.route-contact .contact-channel-icon{width:50px;height:50px}.route-contact .contact-channel-copy{column-gap:10px}.route-contact .contact-channel-copy span{min-width:38px;width:38px;height:38px;padding:0;font-size:0}.route-contact .contact-channel-copy b{font-size:17px}
  .route-contact .contact-faq-heading{align-items:flex-start}.route-contact .contact-faq-heading-icon{width:44px;height:44px;border-radius:12px}.route-contact .contact-faq-heading h2{font-size:21px}.route-contact .faq-head{min-height:66px;padding:12px;grid-template-columns:34px minmax(0,1fr) 32px;gap:10px}.route-contact .faq-number{width:34px;height:34px}.route-contact .faq-icon{width:32px;height:32px}.route-contact .faq-question{font-size:13px}.route-contact .faq-answer-inner{padding:0 15px 18px 56px;font-size:11px}
}

/* ── Dedicated authentication shell ─────────────────────── */
.route-auth>div.sticky,.route-auth>footer,.route-auth>#contact-bubble{display:none!important}
.route-auth main{min-height:100vh;background:radial-gradient(circle at 18% 28%,rgba(11,119,210,.23),transparent 29%),radial-gradient(circle at 84% 82%,rgba(0,187,232,.09),transparent 25%),linear-gradient(125deg,#020817,#04132c 55%,#02091b)!important}
.route-auth main:after{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;background:linear-gradient(115deg,transparent 0 46%,rgba(44,174,235,.08) 46.1%,transparent 46.35%),linear-gradient(115deg,transparent 0 70%,rgba(44,174,235,.05) 70.1%,transparent 70.35%)}
.route-auth>main>div:first-child{min-height:100vh!important;position:relative}
.route-auth>main>div:first-child:before{content:"";position:absolute;width:520px;height:520px;left:9%;top:50%;transform:translateY(-50%);border:1px solid rgba(43,173,235,.13);border-radius:50%;box-shadow:0 0 80px rgba(0,143,226,.08),inset 0 0 80px rgba(0,143,226,.04)}
.auth-back{position:absolute;top:25px;left:30px;z-index:50;min-height:40px;padding:0 14px;display:inline-flex;align-items:center;gap:8px;color:#8099b8;border:1px solid rgba(80,151,220,.2);background:rgba(4,20,45,.7);backdrop-filter:blur(10px);border-radius:10px;font-size:11px;font-weight:700;transition:.2s}.auth-back:hover{color:#eaf7ff;border-color:#29c9f6;background:#09244a;transform:translateX(-2px)}.auth-back svg{width:15px;height:15px}
.auth-logo{display:flex;align-items:center;justify-content:center;margin-bottom:18px}.auth-logo img{height:48px;width:auto;max-width:230px;object-fit:contain}
.route-auth .auth-card{position:relative;overflow:hidden;padding:34px!important;border:1px solid rgba(82,157,226,.25)!important;background:linear-gradient(155deg,rgba(9,30,61,.96),rgba(4,16,36,.98))!important;box-shadow:0 30px 80px rgba(0,0,0,.42),0 0 45px rgba(0,145,218,.08)!important}
.route-auth .auth-card:before{content:"";position:absolute;left:0;right:0;top:0;height:2px;background:linear-gradient(90deg,transparent,#28caf5,transparent)}
.route-auth .auth-card h1{font-size:27px!important;letter-spacing:-.025em}.route-auth .auth-card label{font-size:12px!important;color:#9db2ca!important}
.route-auth .auth-card input:not([type=checkbox]){height:50px;border-radius:10px!important;padding-left:15px!important}
.route-auth .auth-card button[type=submit]{height:52px!important;border-radius:10px!important;box-shadow:0 12px 30px rgba(0,168,228,.2)!important}
.route-auth .auth-card button[type=submit]:hover{transform:translateY(-2px)!important}
.route-auth .auth-card input[type=checkbox]{width:17px;height:17px;accent-color:#18bce9}
.route-auth .auth-card .relative.my-6 span.bg-white{background:#06162f!important}
.route-auth .auth-social-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px!important}
.route-auth .auth-social-grid>a{width:auto!important;height:48px!important;border-radius:10px!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:7px!important;background:#071a35!important;border:1px solid rgba(87,151,218,.22)!important;color:#91a8c4;box-shadow:none!important;transition:.2s}
.route-auth .auth-social-grid>a:hover{background:#0a2448!important;border-color:#28c8f5!important;transform:translateY(-2px)!important;color:#eaf7ff}
.route-auth .auth-social-grid>a:after{font-size:10px;font-weight:800}.route-auth .auth-social-grid>a:nth-child(1):after{content:"Google"}.route-auth .auth-social-grid>a:nth-child(2):after{content:"Discord"}.route-auth .auth-social-grid>a:nth-child(3):after{content:"LINE"}
.route-auth .auth-social-grid img,.route-auth .auth-social-grid svg{width:18px!important;height:18px!important}
.route-auth .auth-form-panel>p:last-child{font-size:12px}

@media(max-width:767px){
  .route-auth>main>div:first-child{padding-top:76px!important}
  .route-auth>main>div:first-child:before{width:300px;height:300px;left:50%;top:20%;transform:translate(-50%,-50%)}
  .route-auth .auth-showcase{display:none}
  .route-auth .auth-form-panel{max-width:470px!important;margin:auto}
  .route-auth .auth-card{padding:25px 20px!important}
  .auth-back{top:18px;left:16px}
  .auth-logo img{height:42px}
}
@media(max-width:380px){
  .route-auth .auth-social-grid>a:after{display:none}
  .route-auth .auth-card{padding-left:17px!important;padding-right:17px!important}
}
