/* WoR, World of Rummy. B2B site. */
:root {
  --ink: #07080D; --ink-2: #0B0D14; --panel: #10131C; --panel-2: #151925; --line: rgba(244,241,234,.08); --line-2: rgba(244,241,234,.16);
  --text: #F4F1EA; --muted: #A4A8B4; --dim: #6E7383;
  --mint: #5EE3A6; --gold: #E4B95B; --gold-2: #F6E3A6; --gold-3: #B98A2E; --rose: #FF5D7A;
  --r: 20px; --max: 1180px;
  --display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif; --serif: 'Instrument Serif', Georgia, serif; --body: 'Inter', system-ui, sans-serif; --mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;
  --ease: cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; background: var(--ink); color: var(--text); font: 16px/1.6 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -.025em; line-height: 1.06; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.8vw, 72px); font-weight: 800; }
h2 { font-size: clamp(30px, 3.9vw, 48px); }
h3 { font-size: 20px; letter-spacing: -.01em; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; color: var(--gold-2); }
h1 em { font-style: normal; background: linear-gradient(90deg, var(--gold-2), var(--gold) 55%, var(--gold-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
p { margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 110px 0; position: relative; }
section.alt { background: var(--ink-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font: 600 12px/1 var(--body); letter-spacing: .18em; text-transform: uppercase; color: var(--mint); margin-bottom: 18px; }
.eyebrow::before { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, currentColor); }
.lead { color: var(--muted); font-size: 18px; max-width: 640px; margin-top: 18px; }
.head { margin-bottom: 54px; }
.head.center { text-align: center; } .head.center .lead { margin-left: auto; margin-right: auto; }
.tiny { font-size: 12.5px; color: var(--dim); margin-top: 12px; line-height: 1.5; }
[hidden] { display: none !important; }
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); mix-blend-mode: overlay; }

/* Buttons */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 26px; border-radius: 999px; font: 700 15px/1 var(--body); text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s, background .2s; white-space: nowrap; overflow: hidden; }
.btn-lg { min-height: 58px; padding: 0 30px; font-size: 16px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, #D5A64A); color: #241900; box-shadow: 0 10px 30px rgba(228,185,91,.28), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-gold::after { content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-20deg); transition: left .6s var(--ease); }
.btn-gold:hover::after { left: 130%; }
.btn-gold:hover { box-shadow: 0 16px 40px rgba(228,185,91,.4), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-ghost { border-color: var(--line-2); color: var(--text); background: rgba(244,241,234,.03); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(244,241,234,.08); border-color: rgba(244,241,234,.3); }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* Nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; backdrop-filter: blur(16px) saturate(140%); background: rgba(7,8,13,.62); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.nav.scrolled { border-bottom-color: var(--line); background: rgba(7,8,13,.82); }
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { height: 34px; width: auto; }
.logo small { font: 600 10px/1.2 var(--body); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 999px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: rgba(244,241,234,.06); }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px; background: rgba(244,241,234,.03); cursor: pointer; padding: 0; place-items: center; align-content: center; gap: 5px; }
.menu-btn span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .25s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: grid; padding: 8px 20px 20px; border-top: 1px solid var(--line); background: rgba(7,8,13,.97); max-height: calc(100dvh - 70px); overflow-y: auto; }
.mobile-menu a { padding: 15px 4px; text-decoration: none; font: 600 17px/1 var(--display); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: 0; color: var(--gold); }
@media (min-width: 901px) { .mobile-menu { display: none !important; } }
@media (max-width: 900px) { .nav-links { display: none; } .menu-btn { display: grid; } .nav .wrap { gap: 10px; } .nav .nav-cta { margin-left: auto; } }

/* Aurora backgrounds */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora i { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; animation: drift 22s ease-in-out infinite alternate; }
.aurora i:nth-child(1) { width: 720px; height: 520px; left: 52%; top: -12%; background: radial-gradient(closest-side, rgba(18,163,106,.55), transparent 70%); }
.aurora i:nth-child(2) { width: 560px; height: 420px; left: -12%; top: 6%; background: radial-gradient(closest-side, rgba(228,185,91,.28), transparent 70%); animation-duration: 28s; animation-delay: -8s; }
.aurora i:nth-child(3) { width: 520px; height: 520px; left: 62%; top: 40%; background: radial-gradient(closest-side, rgba(94,60,160,.45), transparent 70%); animation-duration: 32s; animation-delay: -15s; }
.aurora.small i { opacity: .35; }
.aurora.small i:nth-child(1) { left: 60%; top: -20%; } .aurora.small i:nth-child(2) { left: -10%; top: 40%; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(90px, 50px, 0) scale(1.12); } }

/* Hero */
.hero { padding: 160px 0 70px; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 62%); opacity: .55; pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; }
.hero-copy > * { animation: rise .9s var(--ease) both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; } .hero-copy > :nth-child(3) { animation-delay: .16s; } .hero-copy > :nth-child(4) { animation-delay: .24s; } .hero-copy > :nth-child(5) { animation-delay: .32s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 13px; color: var(--muted); margin-bottom: 26px; background: rgba(244,241,234,.03); }
.pill b { background: rgba(94,227,166,.14); color: var(--mint); padding: 4px 10px; border-radius: 999px; font-size: 11px; letter-spacing: .08em; position: relative; }
.pill b::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); margin-right: 7px; vertical-align: 1px; box-shadow: 0 0 0 0 rgba(94,227,166,.6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 7px rgba(94,227,166,0); } 100% { box-shadow: 0 0 0 0 rgba(94,227,166,0); } }
.pill-more { font-style: normal; }
.hero .lead { font-size: 19px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--dim); }
.stage { position: relative; aspect-ratio: 1.42; animation: rise 1.1s var(--ease) .2s both; }
.browser { position: absolute; inset: 2% 0 auto 4%; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2); background: #0a0d16; box-shadow: 0 50px 120px rgba(0,0,0,.65), 0 0 0 1px rgba(244,241,234,.04), 0 0 80px rgba(18,163,106,.12); }
.tilt { transform: perspective(1600px) rotateY(-9deg) rotateX(3deg); transform-origin: left center; transition: transform .6s var(--ease); }
.stage:hover .tilt { transform: perspective(1600px) rotateY(-5deg) rotateX(1.5deg); }
.browser-bar { height: 30px; display: flex; align-items: center; gap: 6px; padding: 0 12px; background: #121827; border-bottom: 1px solid var(--line); }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #2a3145; }
.browser-bar span { margin-left: 10px; flex: 1; max-width: 300px; height: 16px; border-radius: 8px; background: #0a0d16; font: 500 9px/16px var(--body); color: var(--dim); padding: 0 10px; overflow: hidden; }
.hero-video { position: relative; aspect-ratio: 16/9; background: #160a22; }
.hero-video img, .hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video video { opacity: 0; transition: opacity .8s; }
.hero-video video.on { opacity: 1; }
.phone { position: absolute; border-radius: 26px; padding: 8px; background: linear-gradient(145deg, #2b3246, #0c0f18); box-shadow: 0 30px 70px rgba(0,0,0,.65), inset 0 0 0 1px rgba(255,255,255,.12); }
.phone img { border-radius: 19px; width: 100%; }
.phone.land { width: 58%; right: -3%; bottom: -6%; transform: rotate(-3deg); }
.float { animation: bob 7s ease-in-out infinite; } .float-late { animation: bob 8s ease-in-out -3s infinite; }
@keyframes bob { 50% { translate: 0 -10px; } }
.pcard { position: absolute; width: 76px; aspect-ratio: .714; border-radius: 9px; background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(0,0,0,.08); animation: bob 7s ease-in-out infinite; overflow: hidden; }
.pcard img { width: 100%; height: 100%; }
.pcard[data-r]::before { content: attr(data-r); position: absolute; left: 8px; top: 6px; font: 700 22px/1 var(--display); color: #111; }
.pcard[data-r]::after { content: attr(data-s); position: absolute; right: 8px; bottom: 4px; font-size: 36px; line-height: 1; color: #111; }
.pcard.red::before, .pcard.red::after { color: #E0283E; }
.fc1 { left: -4%; bottom: 22%; transform: rotate(-14deg); } .fc2 { left: 6%; bottom: 12%; transform: rotate(4deg); animation-delay: -2s; } .fc3 { right: 6%; top: -4%; transform: rotate(12deg); animation-delay: -4s; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } .stage { max-width: 640px; margin: 10px auto 0; width: 100%; } .hero { padding-top: 124px; } }

.facts { margin-top: 74px; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: var(--r); background: rgba(244,241,234,.02); position: relative; z-index: 2; backdrop-filter: blur(8px); }
.facts div { padding: 22px 24px; border-left: 1px solid var(--line); }
.facts div:first-child { border-left: 0; }
.facts b { display: block; font: 700 30px/1.1 var(--display); color: var(--text); font-variant-numeric: tabular-nums; }
.facts span { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .facts { grid-template-columns: repeat(2, 1fr); } .facts div { border-left: 0; border-top: 1px solid var(--line); } .facts div:nth-child(-n+2) { border-top: 0; } .facts div:last-child { grid-column: span 2; } }

/* Ticker */
.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink-2); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.ticker-track { display: flex; width: max-content; animation: ticker 48s linear infinite; }
.ticker span { padding: 16px 28px; font: 600 12px/1 var(--body); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; position: relative; }
.ticker span::after { content: '◆'; position: absolute; right: -6px; color: var(--gold); font-size: 8px; top: 18px; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* Demo */
.demo { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.tabs-wrap { text-align: center; }
.tabs { display: inline-flex; padding: 5px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--panel); margin-bottom: 30px; max-width: 100%; }
.tabs button { border: 0; background: none; color: var(--muted); font: 600 14px/1 var(--body); padding: 12px 20px; border-radius: 999px; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: background .25s, color .25s; }
.tabs button svg { width: 17px; height: 17px; }
.tabs button[aria-selected="true"] { background: var(--text); color: #0a0d16; }
.demo-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }
.demo-stage { border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(ellipse at 50% 0%, #17203a, #0a0e19 70%); padding: 28px; min-height: 420px; display: grid; place-items: center; position: relative; overflow: hidden; }
.device { width: 100%; position: relative; }
.device.browserframe { border-radius: 12px; overflow: hidden; border: 1px solid var(--line-2); background: #0a0d16; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.device.phoneframe { border-radius: 34px; padding: 10px; background: linear-gradient(145deg, #2b3246, #0c0f18); box-shadow: 0 30px 80px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.12); max-width: 640px; margin: 0 auto; }
.viewport { position: relative; overflow: hidden; background: #000; }
.phoneframe .viewport { border-radius: 25px; }
.viewport img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.viewport iframe { position: absolute; top: 0; left: 0; border: 0; transform-origin: 0 0; background: #160a22; }
.play-overlay { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(7,8,13,.2), rgba(7,8,13,.7)); border: 0; cursor: pointer; color: var(--text); width: 100%; }
.play-overlay span { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; border-radius: 999px; background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #241900; font: 800 16px/1 var(--body); box-shadow: 0 14px 40px rgba(228,185,91,.45); transition: transform .2s var(--ease); }
.play-overlay:hover span { transform: scale(1.06); }
.play-overlay svg { width: 18px; height: 18px; }
.demo-side { display: flex; flex-direction: column; gap: 16px; }
.card { position: relative; border: 1px solid var(--line); border-radius: var(--r); background: linear-gradient(160deg, var(--panel-2), var(--panel)); padding: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.glow::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: radial-gradient(240px circle at var(--mx, -200px) var(--my, -200px), rgba(228,185,91,.65), transparent 60%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0; transition: opacity .3s; }
.glow:hover::before { opacity: 1; }
.demo-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.demo-actions .btn { width: 100%; }
.qr-row { display: flex; gap: 16px; align-items: center; margin-top: 16px; }
.qr { width: 108px; height: 108px; flex: none; background: #fff; border-radius: 12px; padding: 8px; }
.qr svg { width: 100%; height: 100%; display: block; }
.steps-mini { margin: 0; padding-left: 20px; color: var(--muted); font-size: 14px; }
.steps-mini li + li { margin-top: 4px; }
.side-note { margin: 0 4px; }
.phone-only { display: none; }
@media (max-width: 980px) { .demo-grid { grid-template-columns: 1fr; } .demo-stage { padding: 16px; min-height: 0; } }

/* Grids and cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }
.variant { position: relative; overflow: hidden; padding: 28px; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(160deg, var(--panel-2), var(--panel)); transition: transform .3s var(--ease); }
.variant:hover { transform: translateY(-4px); }
.variant .suit { position: absolute; right: -8px; top: -30px; font-size: 150px; line-height: 1; opacity: .06; transition: transform .5s var(--ease), opacity .3s; }
.variant .suit.red { color: #FF6B81; }
.variant:hover .suit { transform: rotate(-12deg) scale(1.08); opacity: .12; }
.variant .tag { font: 600 11px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.variant h3 { margin: 12px 0 8px; font-size: 25px; }
.variant p { color: var(--muted); font-size: 14.5px; }
.ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(94,227,166,.1); color: var(--mint); margin-bottom: 16px; border: 1px solid rgba(94,227,166,.18); }
.ic svg { width: 22px; height: 22px; }
.ic.gold { background: rgba(228,185,91,.12); color: var(--gold); border-color: rgba(228,185,91,.2); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev > :first-child { order: 2; }
.product-split { margin-top: 100px; }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 40px; } .split.rev > :first-child { order: 0; } }
.checks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: var(--muted); font-size: 15.5px; }
.checks li b { color: var(--text); font-weight: 600; }
.checks li::before { content: ''; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: rgba(94,227,166,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235EE3A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/13px no-repeat; }
.shots { position: relative; min-height: 560px; }
.shots .phone.port { width: 44%; left: 6%; top: 0; }
.shots .phone.port2 { width: 40%; right: 6%; top: 12%; transform: rotate(4deg); }
.glow-orb { position: absolute; inset: 10% 10%; background: radial-gradient(closest-side, rgba(18,163,106,.35), transparent); filter: blur(24px); }
@media (max-width: 640px) { .shots { min-height: 0; aspect-ratio: .95; } }

/* Gallery */
.gallery-sec { padding-bottom: 90px; }
.gallery { display: flex; gap: 18px; overflow-x: auto; padding: 8px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 24px; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.gallery::-webkit-scrollbar { display: none; }
.gallery.dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery figure { flex: none; margin: 0; scroll-snap-align: start; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-2); background: #0a0d16; box-shadow: 0 30px 70px rgba(0,0,0,.5); position: relative; height: 420px; transition: transform .4s var(--ease); }
.gallery figure:hover { transform: translateY(-6px); }
.gallery figure img { height: 100%; width: auto; max-width: none; user-select: none; -webkit-user-drag: none; }
.gallery figcaption { position: absolute; left: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(7,8,13,.7); backdrop-filter: blur(8px); font: 600 12px/1 var(--body); letter-spacing: .06em; border: 1px solid var(--line-2); }
@media (max-width: 640px) { .gallery figure { height: 300px; } }

/* Back office mock */
.bo { border: 1px solid var(--line-2); border-radius: 16px; background: #0a0e18; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.5); font-size: 12px; }
.tilt-sm { transform: perspective(1400px) rotateY(6deg); transition: transform .6s var(--ease); }
.tilt-sm:hover { transform: perspective(1400px) rotateY(2deg); }
.bo-top { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: #0e1422; color: var(--muted); }
.bo-top b { color: var(--text); font-family: var(--display); font-size: 14px; }
.bo-top em { margin-left: auto; font-style: normal; color: var(--mint); display: flex; align-items: center; gap: 6px; }
.bo-top em::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(94,227,166,.18); animation: ping 2s infinite; }
.bo-body { display: grid; grid-template-columns: 150px 1fr; min-height: 340px; }
.bo-nav { border-right: 1px solid var(--line); padding: 12px 8px; display: grid; gap: 2px; align-content: start; }
.bo-nav span { padding: 8px 10px; border-radius: 8px; color: var(--muted); }
.bo-nav span.on { background: rgba(94,227,166,.1); color: var(--mint); font-weight: 600; }
.bo-main { padding: 16px; display: grid; gap: 12px; align-content: start; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { border: 1px solid var(--line); border-radius: 10px; padding: 12px; background: var(--panel); }
.kpi small { color: var(--dim); display: block; } .kpi b { font: 700 19px/1.3 var(--display); }
.chart { border: 1px solid var(--line); border-radius: 10px; background: var(--panel); padding: 12px; }
.chart svg { width: 100%; height: 110px; display: block; }
.chart .draw { stroke-dasharray: 600; stroke-dashoffset: 600; }
.in .chart .draw { animation: draw 1.8s var(--ease) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.rows { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.rows div { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; padding: 9px 12px; border-top: 1px solid var(--line); color: var(--muted); }
.rows div:first-child { border-top: 0; background: var(--panel); color: var(--dim); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; }
.rows i { font-style: normal; color: var(--mint); }
.illus { text-align: center; font-size: 12px; color: var(--dim); margin-top: 12px; }
@media (max-width: 560px) { .bo-body { grid-template-columns: 1fr; } .bo-nav { display: none; } .tilt-sm { transform: none; } }

/* Integration flow */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: s; margin-bottom: 28px; }
.flow > div { position: relative; padding: 26px 22px; border: 1px solid var(--line); background: var(--panel); margin-left: -1px; }
.flow > div:first-child { border-radius: var(--r) 0 0 var(--r); margin-left: 0; } .flow > div:last-child { border-radius: 0 var(--r) var(--r) 0; }
.flow > div::before { counter-increment: s; content: '0' counter(s); font: 700 13px/1 var(--mono); color: var(--gold); display: block; margin-bottom: 14px; }
.flow h3 { font-size: 17px; margin-bottom: 6px; } .flow p { font-size: 14px; color: var(--muted); }
@media (max-width: 900px) { .flow { grid-template-columns: 1fr 1fr; } .flow > div { border-radius: 0 !important; } }
@media (max-width: 560px) { .flow { grid-template-columns: 1fr; } }
pre.code { margin: 0; padding: 22px 24px; border-radius: var(--r); background: #080B13; border: 1px solid var(--line); font: 13px/1.7 var(--mono); color: #C8D3E6; overflow-x: auto; }
pre.code .c { color: #5F6C85; } pre.code .k { color: var(--mint); } pre.code .s { color: var(--gold-2); }

/* Theme switcher */
.themer { border: 1px solid var(--line); border-radius: 24px; background: var(--panel); padding: 26px; }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.swatches button { display: flex; align-items: center; gap: 9px; border: 1px solid var(--line-2); background: none; color: var(--muted); font: 600 13px/1 var(--body); padding: 9px 14px 9px 9px; border-radius: 999px; cursor: pointer; transition: border-color .2s, color .2s; }
.swatches button i { width: 20px; height: 20px; border-radius: 50%; }
.swatches button[aria-pressed="true"] { color: var(--text); border-color: var(--gold); }
.mini { --b1: #2A0F3D; --b2: #4A1866; --acc: #F0B840; --feltc: #12A36A; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-2); background: radial-gradient(ellipse at 30% 0%, var(--b2), var(--b1) 70%); transition: background .5s; }
.mini-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mini-top b { font: 700 15px/1 var(--display); letter-spacing: .12em; } .mini-top b span { color: var(--acc); transition: color .5s; }
.mini-top em { font-style: normal; font-size: 12px; padding: 6px 12px; border-radius: 999px; background: rgba(0,0,0,.3); color: var(--acc); }
.mini-table { margin: 22px auto; width: 78%; aspect-ratio: 2.1; border-radius: 999px; background: radial-gradient(ellipse at 50% 40%, color-mix(in srgb, var(--feltc) 100%, #fff 12%), var(--feltc) 60%, color-mix(in srgb, var(--feltc) 60%, #000)); border: 4px solid var(--acc); box-shadow: 0 0 40px color-mix(in srgb, var(--acc) 40%, transparent); display: grid; place-items: center; transition: all .5s; }
.mini-table div { display: flex; gap: 6px; } .mini-table i { width: 26px; height: 36px; border-radius: 4px; background: #fff; display: block; box-shadow: 0 4px 10px rgba(0,0,0,.4); }
.mini-table i:nth-child(2) { background: repeating-linear-gradient(45deg, var(--b2), var(--b2) 3px, var(--acc) 3px, var(--acc) 4px); }
.mini-cta { margin: 0 18px 18px; text-align: center; padding: 12px; border-radius: 999px; background: var(--acc); color: #1b1200; font-weight: 800; font-size: 13px; letter-spacing: .1em; transition: background .5s; }

/* Market */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 22px; }
.stat { position: relative; padding: 26px; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(160deg, var(--panel-2), var(--panel)); }
.stat b { font: 700 clamp(30px, 3.4vw, 42px)/1 var(--display); display: block; background: linear-gradient(90deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.stat p { color: var(--muted); font-size: 14px; margin-top: 10px; }
.stat cite { display: block; font-style: normal; font-size: 11.5px; color: var(--dim); margin-top: 10px; }
@media (max-width: 980px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr; } }
.market-grid { align-items: start; } .market-grid h3 { margin-bottom: 18px; }
.ops { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.ops th { text-align: left; font: 600 11px/1 var(--body); letter-spacing: .12em; text-transform: uppercase; color: var(--dim); padding: 0 12px 12px 0; }
.ops td { padding: 13px 12px 13px 0; border-top: 1px solid var(--line); color: var(--muted); vertical-align: top; }
.ops td:first-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.ops td b { color: var(--gold); font-weight: 600; }
.timeline { list-style: none; margin: 0; padding: 0 0 0 22px; border-left: 1px solid var(--line-2); display: grid; gap: 20px; }
.timeline li { position: relative; font-size: 14.5px; color: var(--muted); }
.timeline li::before { content: ''; position: absolute; left: -27px; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(228,185,91,.16); }
.timeline time { display: block; font: 600 12px/1.4 var(--mono); color: var(--gold); }
.callout { margin-top: 22px; padding: 32px; border-radius: 24px; border: 1px solid rgba(94,227,166,.3); background: linear-gradient(135deg, rgba(18,163,106,.16), rgba(18,163,106,.03)); display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.callout h3 { font-size: 27px; margin-bottom: 12px; } .callout p { color: var(--muted); }
.callout ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; align-content: center; }
.callout li { padding: 14px 16px; border-radius: 12px; background: rgba(7,8,13,.5); border: 1px solid var(--line); font-size: 14.5px; color: var(--muted); } .callout li b { color: var(--text); display: block; }
@media (max-width: 900px) { .callout { grid-template-columns: 1fr; } }
.sources { margin-top: 26px; font-size: 12px; color: var(--dim); line-height: 1.7; } .sources a { color: var(--muted); }

/* Lease */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan { position: relative; padding: 30px; border-radius: 24px; border: 1px solid var(--line); background: linear-gradient(160deg, var(--panel-2), var(--panel)); display: flex; flex-direction: column; transition: transform .3s var(--ease); }
.plan:hover { transform: translateY(-4px); }
.plan.hot { border-color: rgba(228,185,91,.5); background: linear-gradient(170deg, rgba(228,185,91,.12), var(--panel) 40%); }
.plan.hot::after { content: 'For platforms'; position: absolute; top: -12px; left: 28px; background: var(--gold); color: #241900; font: 800 11px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.plan .for { font-size: 13px; color: var(--mint); font-weight: 600; letter-spacing: .04em; }
.plan h3 { font-size: 27px; margin: 8px 0 10px; } .plan > p { color: var(--muted); font-size: 15px; }
.plan .price { margin: 22px 0; padding: 16px 0; border-block: 1px solid var(--line); font: 700 20px/1.2 var(--display); } .plan .price small { display: block; font: 400 13px/1.5 var(--body); color: var(--dim); margin-top: 4px; }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; font-size: 14.5px; color: var(--muted); }
.plan li { padding-left: 24px; position: relative; } .plan li::before { content: '✓'; position: absolute; left: 0; color: var(--mint); font-weight: 700; }
.plan .btn { margin-top: auto; }
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; } }
.vs { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vs div { padding: 26px; border-radius: var(--r); border: 1px solid var(--line); } .vs div:last-child { background: rgba(18,163,106,.08); border-color: rgba(94,227,166,.3); }
.vs h3 { margin-bottom: 12px; } .vs ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 14.5px; display: grid; gap: 6px; }
@media (max-width: 700px) { .vs { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font: 600 17px/1.4 var(--display); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 18px; font-size: 26px; color: var(--gold); font-weight: 400; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 24px; max-width: 700px; }

/* Contact */
.contact { background: var(--ink); overflow: hidden; }
.contact-split { align-items: start; position: relative; z-index: 1; }
.form { border: 1px solid var(--line-2); border-radius: 24px; background: rgba(16,19,28,.85); backdrop-filter: blur(10px); padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; color: var(--muted); }
.form .full { grid-column: 1 / -1; }
.form input, .form select, .form textarea { width: 100%; background: #080B13; border: 1px solid var(--line-2); color: var(--text); border-radius: 12px; padding: 14px; font: 15px/1.4 var(--body); transition: border-color .2s; }
.form textarea { min-height: 110px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--mint); outline-offset: 1px; border-color: transparent; }
.form .hp { position: absolute; left: -9999px; }
.form-msg { grid-column: 1 / -1; font-size: 14px; min-height: 20px; } .form-msg.ok { color: var(--mint); } .form-msg.err { color: var(--rose); }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; padding: 20px; } }
.next { display: grid; gap: 16px; margin-top: 30px; }
.next div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.next i { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; font: 700 14px/1 var(--mono); color: var(--gold); font-style: normal; }
.next b { display: block; } .next span { color: var(--muted); font-size: 14.5px; }

footer { border-top: 1px solid var(--line); padding: 48px 0 60px; color: var(--dim); font-size: 13px; }
footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
footer p + p { margin-top: 10px; }
.foot-brand { color: var(--text); font-family: var(--display); font-size: 16px; }
footer nav { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: flex-end; align-content: start; } footer nav a { color: var(--muted); text-decoration: none; }
@media (max-width: 800px) { footer .wrap { grid-template-columns: 1fr; } footer nav { justify-content: flex-start; } }

/* Sticky action bar (phones) */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(7,8,13,.9); backdrop-filter: blur(14px); border-top: 1px solid var(--line-2); transform: translateY(110%); transition: transform .3s var(--ease); }
.sticky-cta.show { transform: none; }
.sticky-cta .btn { flex: 1; min-height: 48px; padding: 0 12px; }
@media (max-width: 900px) { .sticky-cta { display: flex; } body { padding-bottom: 70px; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.stagger .reveal:nth-child(2) { transition-delay: .08s; } .stagger .reveal:nth-child(3) { transition-delay: .16s; } .stagger .reveal:nth-child(4) { transition-delay: .24s; } .stagger .reveal:nth-child(5) { transition-delay: .32s; } .stagger .reveal:nth-child(6) { transition-delay: .4s; }
#backoffice, #integration, #brand, #trust, #market, #lease, #faq, #contact { content-visibility: auto; contain-intrinsic-size: auto 900px; }

/* Phones */
@media (hover: none) and (pointer: coarse) {
  .phone-only { display: inline-flex; }
  .qr-row .qr, .qr-row > div { display: none; }
  .qr-row { display: block; margin-top: 8px; }
  .btn:hover, .variant:hover, .plan:hover, .gallery figure:hover { transform: none; }
  .glow::before { display: none; }
  .tabs button, .swatches button, .faq summary, .mobile-menu a { min-height: 44px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  section { padding: 68px 0; }
  .hero { padding: 108px 0 40px; }
  .head { margin-bottom: 34px; }
  .lead, .hero .lead { font-size: 16.5px; }
  .pill { font-size: 12px; margin-bottom: 20px; } .pill-more { display: none; }
  .cta-row { gap: 10px; margin-top: 26px; } .cta-row .btn { width: 100%; }
  .stage { margin-top: 26px; }
  .pcard { width: 54px; } .pcard[data-r]::before { font-size: 16px; left: 6px; top: 4px; } .pcard[data-r]::after { font-size: 24px; right: 6px; bottom: 3px; }
  .facts { margin-top: 44px; } .facts div { padding: 16px; } .facts b { font-size: 23px; } .facts span { font-size: 12.5px; line-height: 1.4; display: block; }
  .ticker span { padding: 13px 20px; font-size: 11px; }
  .tabs { display: flex; width: 100%; } .tabs button { flex: 1; justify-content: center; padding: 0 10px; font-size: 13px; } .tabs button svg { display: none; }
  .demo-stage { border-radius: 16px; padding: 12px; } .device.phoneframe { border-radius: 22px; padding: 6px; } .phoneframe .viewport { border-radius: 16px; }
  .play-overlay span { padding: 13px 20px; font-size: 14px; }
  .card, .variant, .stat, .plan, .themer, .vs div { padding: 20px; }
  .variant h3 { font-size: 21px; }
  .split { gap: 30px; } .product-split { margin-top: 64px; }
  .checks { margin-top: 20px; gap: 12px; } .checks li { font-size: 15px; }
  .flow > div { padding: 20px 18px; }
  pre.code { font-size: 11.5px; padding: 16px; }
  .swatches button { padding: 8px 12px 8px 8px; font-size: 12.5px; }
  .ops, .ops tbody, .ops tr, .ops td { display: block; width: 100%; } .ops tr:first-child { display: none; }
  .ops tr { padding: 12px 0; border-top: 1px solid var(--line); } .ops td { border: 0; padding: 0; } .ops td:first-child { margin-bottom: 3px; white-space: normal; }
  .callout { padding: 20px; gap: 20px; border-radius: 16px; } .callout h3 { font-size: 22px; }
  .plan h3 { font-size: 23px; } .plan .price { margin: 16px 0; }
  .faq summary { font-size: 16px; padding: 18px 36px 18px 0; }
  .form { gap: 13px; } .form input, .form select, .form textarea { font-size: 16px; padding: 13px; }
  footer { padding: 36px 0 40px; }
  .aurora i { filter: blur(50px); }
}
@media (max-width: 380px) { h1 { font-size: 34px; } h2 { font-size: 27px; } .logo small { display: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float, .float-late, .pcard, .aurora i, .ticker-track, .pill b::before, .bo-top em::before { animation: none !important; }
  .reveal, .hero-copy > *, .stage { opacity: 1; transform: none; transition: none; animation: none; }
  .tilt, .tilt-sm { transition: none; }
}

/* Phones: the product comes first, then the words; same motion as desktop. */
@media (max-width: 980px) {
  .hero-grid .stage { order: -1; margin: 0 auto 8px; }
  .hero { padding-top: 96px; }
  .hero-copy { text-align: left; }
}
@media (hover: none) and (pointer: coarse) {
  .tilt { transform: perspective(1600px) rotateY(-9deg) rotateX(3deg); }
  .tilt-sm { transform: perspective(1400px) rotateY(6deg); }
  .variant .suit { animation: suitDrift 9s ease-in-out infinite; }
  .glow::before { display: block; opacity: .55; background: radial-gradient(220px circle at var(--mx, 85%) var(--my, 0%), rgba(228,185,91,.55), transparent 60%); }
}
@keyframes suitDrift { 50% { transform: rotate(-10deg) scale(1.06); opacity: .11; } }
@media (prefers-reduced-motion: reduce) { .variant .suit { animation: none; } }

/* Long button labels wrap on narrow phones instead of being cut off. */
@media (max-width: 480px) { .form .btn, .demo-actions .btn, .plan .btn { white-space: normal; text-align: center; line-height: 1.25; padding-top: 12px; padding-bottom: 12px; height: auto; } }

/* Variable-font weights, stated on the axis as well as through font-weight:
   Safari's engine rendered the headline and buttons thin when it had only
   font-weight to go on. Harmless where the mapping already works. */
h1 { font-variation-settings: 'wght' 800; }
h2, h3, .foot-brand, .mobile-menu a, .faq summary, .plan .price, .facts b, .stat b, .kpi b, .bo-top b, .mini-top b { font-variation-settings: 'wght' 700; }
.btn, .play-overlay span, .mini-cta, .plan.hot::after { font-variation-settings: 'wght' 700; }
b, strong, .eyebrow, .tabs button, .nav-links a, .form label, .variant .tag, figcaption, .ticker span, .pill b { font-variation-settings: 'wght' 600; }
.serif { font-variation-settings: normal; }
/* Footer on short landscape phones: the sticky bar must not sit on the form button. */
@media (orientation: landscape) and (max-height: 480px) { .sticky-cta { display: none !important; } body { padding-bottom: 0; } }

/* ============ PvP Universe (23 Sep): brand, games grid, Teen Patti stage, form picks ============ */
.logo .mark { width: 38px; height: 38px; flex: none; }
.wordmark { display: grid; line-height: 1; }
.wordmark b { font: 800 23px/1 var(--display); letter-spacing: -.03em; color: var(--text); }
.wordmark b i { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 26px; color: var(--gold); margin: 0 1px; }
.wordmark small { font: 700 9px/1 var(--body); letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.pill b.beta { background: rgba(228,185,91,.16); color: var(--gold); margin-left: 4px; }
.pill b.beta::before { background: var(--gold); animation: none; box-shadow: none; }
@media (max-width: 640px) { .pill { flex-wrap: wrap; row-gap: 6px; padding-right: 10px; } .pill-more { display: none; } }
.eyebrow.gold { color: var(--gold); }
.tiny.center { text-align: center; margin-top: 22px; }
.games { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .games { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .games { grid-template-columns: 1fr; } }
.game { display: flex; flex-direction: column; text-decoration: none; color: inherit; min-height: 250px; }
.game h3 { margin-top: 14px; }
.game p { flex: 1; }
.game .go { margin-top: 18px; font: 700 13px/1 var(--body); color: var(--gold-2); display: inline-flex; align-items: center; gap: 8px; }
.game .go::after { content: '→'; transition: transform .25s var(--ease); }
a.game:hover .go::after { transform: translateX(4px); }
.game.soon { opacity: .72; } .game.soon .go { color: var(--dim); } .game.soon .go::after { content: ''; }
.status { display: inline-flex; align-items: center; gap: 7px; font: 700 11px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; padding: 7px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--dim); align-self: flex-start; position: relative; z-index: 1; }
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status.live { color: var(--mint); border-color: rgba(94,227,166,.35); background: rgba(94,227,166,.1); } .status.live::before { animation: ping 2s infinite; box-shadow: 0 0 0 0 rgba(94,227,166,.6); }
.status.beta { color: var(--gold); border-color: rgba(228,185,91,.4); background: rgba(228,185,91,.1); }
/* Teen Patti stage: an illustration, not a screenshot */
.tp { position: relative; padding-top: 14px; }
.tp-felt { position: relative; aspect-ratio: 1.25; border-radius: 50% / 42%; background: radial-gradient(ellipse at 50% 35%, #1D8A5A 0%, #12603F 55%, #0B3F2A 100%); border: 8px solid #2b1c0f; box-shadow: 0 30px 70px rgba(0,0,0,.55), inset 0 0 60px rgba(0,0,0,.45), 0 0 0 2px rgba(228,185,91,.35); }
.tp-pot { position: absolute; left: 50%; top: 24%; transform: translateX(-50%); text-align: center; background: rgba(0,0,0,.35); border: 1px solid rgba(228,185,91,.4); border-radius: 999px; padding: 8px 18px; }
.tp-pot small { display: block; font: 700 10px/1 var(--body); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); }
.tp-pot b { font: 800 22px/1.2 var(--display); color: #fff; }
.tp-seat { position: absolute; display: grid; justify-items: center; gap: 4px; }
.tp-seat i { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #3A5FA8, #1d4ed8); border: 2px solid #253048; display: grid; place-items: center; font: 800 13px/1 var(--display); font-style: normal; color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.4); }
.tp-seat span { font: 600 10px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); background: rgba(0,0,0,.35); padding: 4px 8px; border-radius: 999px; }
.tp-seat.on i { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(228,185,91,.35), 0 0 22px rgba(228,185,91,.6); }
.tp-seat.s1 { left: 14%; top: 12%; } .tp-seat.s2 { right: 14%; top: 12%; } .tp-seat.s3 { left: 50%; bottom: 6%; transform: translateX(-50%); }
.tp-hand { position: absolute; left: 50%; top: 46%; width: 210px; height: 110px; transform: translateX(-50%); }
.tp-hand .pcard { width: 70px; animation: none; bottom: 0; }
.tp-hand .pcard:nth-child(1) { left: 6%; transform: rotate(-14deg); }
.tp-hand .pcard:nth-child(2) { left: 33%; transform: translateY(-10px); z-index: 2; }
.tp-hand .pcard:nth-child(3) { left: 60%; transform: rotate(14deg); }
.tp-actions { position: absolute; right: 5%; bottom: 8%; display: grid; gap: 6px; }
.tp-actions span, .tp-actions b { font: 700 11px/1 var(--body); letter-spacing: .08em; text-transform: uppercase; padding: 9px 12px; border-radius: 999px; background: rgba(0,0,0,.4); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.14); text-align: center; }
.tp-actions b { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #241900; border-color: transparent; }
.tp-tag { position: absolute; top: 0; right: 6%; background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #241900; font: 800 12px/1 var(--body); letter-spacing: .2em; text-transform: uppercase; padding: 10px 16px; border-radius: 999px; box-shadow: 0 10px 30px rgba(228,185,91,.35); transform: rotate(6deg); z-index: 3; }
.tp .illus { margin-top: 14px; }
@media (max-width: 480px) { .tp-hand { width: 160px; top: 44%; } .tp-hand .pcard { width: 54px; } .tp-seat i { width: 38px; height: 38px; } .tp-actions { display: none; } .tp-pot b { font-size: 18px; } }
/* Form: games of interest */
.picks-wrap .lbl { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.picks { display: flex; flex-wrap: wrap; gap: 8px; }
.form .pick { display: inline-flex; flex-direction: row; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 13px; color: var(--text); cursor: pointer; background: #080B13; }
.form .pick input { width: auto; padding: 0; margin: 0; accent-color: var(--gold); }
.form .pick:has(input:checked) { border-color: rgba(228,185,91,.6); background: rgba(228,185,91,.1); }
