/* ============================================================
   NeonPlay v80 — PREMIUM EDITION
   Visual evolution: dark-futuristic · glass · depth · cinematic
   ============================================================ */

:root {
  --bg:          #060610;
  --bg-2:        #0a0a1a;
  --bg-card:     #0e0e1e;
  --bg-card-h:   #151528;
  --bg-header:   rgba(6,6,16,0.82);
  --bg-sidebar:  #0a0a1c;

  --cyan:        #00d4ff;
  --cyan-dim:    #0099bb;
  --purple:      #9333ea;
  --pink:        #e8196b;
  --green:       #00e87a;
  --orange:      #ff7a00;
  --yellow:      #f5c518;
  --blue:        #3b7eff;

  --accent:        var(--cyan);
  --accent-glow:   rgba(0,212,255,.18);
  --accent-glow-s: rgba(0,212,255,.07);
  --grad:          linear-gradient(135deg, #00d4ff 0%, #9333ea 100%);
  --grad-warm:     linear-gradient(135deg, #e8196b 0%, #9333ea 100%);
  --grad-subtle:   linear-gradient(135deg, rgba(0,212,255,.1) 0%, rgba(147,51,234,.1) 100%);

  --text:   #f0f0ff;
  --text-1: #ffffff;
  --text-2: #7878a0;
  --text-3: #3a3a58;

  --surface-1: rgba(255,255,255,.04);
  --surface-2: rgba(255,255,255,.02);
  --border:    rgba(255,255,255,.07);
  --border-a:  rgba(0,212,255,.22);
  --border-b:  rgba(147,51,234,.2);

  --shadow-card:  0 2px 20px rgba(0,0,0,.6);
  --shadow-hover: 0 14px 44px rgba(0,0,0,.7), 0 0 0 1px rgba(0,212,255,.1);
  --shadow-neon:  0 0 24px var(--cyan), 0 0 60px rgba(0,212,255,.08);

  --glass-bg:     rgba(12,12,26,.75);
  --glass-border: rgba(255,255,255,.08);
  --glass-blur:   blur(24px) saturate(160%);
  --glass-blur-s: blur(14px) saturate(140%);

  --font-d: 'Syne', 'Exo 2', system-ui, sans-serif;
  --font-b: 'DM Sans', 'Rajdhani', system-ui, sans-serif;

  --hh:   66px;
  --cmax: 1200px;
  --r:    12px;
  --rsm:  8px;
  --rlg:  18px;

  --ease:   cubic-bezier(.4,0,.2,1);
  --ease-o: cubic-bezier(.22,.61,.36,1);
  --t:      0.2s var(--ease);
  --ts:     0.38s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--purple), var(--cyan)); border-radius: 4px; }
a { color: inherit; text-decoration: none; transition: var(--t); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select { font-family: inherit; }
::selection { background: rgba(0,212,255,.2); color: var(--cyan); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.container { max-width: var(--cmax); margin: 0 auto; padding: 0 1.25rem; }
h1,h2,h3,h4,h5 { font-family: var(--font-d); font-weight: 800; line-height: 1.12; }

/* ===== GLASS ===== */
.glass { background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); }
.glass-panel { background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--rlg); box-shadow: 0 4px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.05); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--hh);
  background: var(--bg-header);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 var(--border), 0 4px 40px rgba(0,0,0,.4);
  transition: background var(--ts), box-shadow var(--ts);
}
.header.scrolled { background: rgba(6,6,16,.97); box-shadow: 0 1px 0 var(--border-a), 0 8px 40px rgba(0,0,0,.65); }
.header-inner { display: flex; align-items: center; height: 100%; gap: 1rem; min-width: 0; }

.logo { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }
.logo-icon { font-size: 1.6rem; filter: drop-shadow(0 0 10px var(--cyan)) drop-shadow(0 0 22px rgba(0,212,255,.3)); }
.logo-text { font-family: var(--font-d); font-size: 1.5rem; font-weight: 900; letter-spacing: -.5px; }
.logo-accent { color: var(--cyan); text-shadow: 0 0 16px var(--cyan), 0 0 32px rgba(0,212,255,.25); }

.search-wrap { flex: 1; max-width: 420px; position: relative; }
.search-input { width: 100%; padding: .5rem 2.8rem .5rem 1rem; background: var(--surface-1); border: 1px solid var(--border); border-radius: 50px; color: var(--text); font-size: .87rem; outline: none; transition: var(--t); }
.search-input:focus { border-color: rgba(0,212,255,.35); background: rgba(0,212,255,.03); box-shadow: 0 0 0 3px var(--accent-glow-s), 0 0 20px rgba(0,212,255,.08); }
.search-input::placeholder { color: var(--text-3); }
.search-btn { position: absolute; right: .85rem; top: 50%; transform: translateY(-50%); color: var(--text-3); font-size: 1rem; transition: var(--t); }
.search-btn:hover { color: var(--cyan); }

.search-drop { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--border-a); border-radius: var(--r); max-height: 380px; overflow-y: auto; z-index: 200; box-shadow: 0 16px 48px rgba(0,0,0,.7); }
.search-drop[hidden] { display: none; }
.sdrop-item { display: flex; align-items: center; gap: .7rem; padding: .62rem 1rem; border-bottom: 1px solid var(--border); transition: var(--t); }
.sdrop-item:last-child { border-bottom: none; }
.sdrop-item:hover { background: rgba(0,212,255,.05); }
.sdrop-emoji { font-size: 1.25rem; }
.sdrop-name { flex: 1; font-weight: 700; font-size: .87rem; }
.sdrop-cat { font-size: .7rem; color: var(--text-3); }

.nav { display: flex; gap: .15rem; }
.nav-link { padding: .38rem .72rem; border-radius: 50px; font-size: .84rem; font-weight: 600; font-family: var(--font-d); color: var(--text-2); transition: var(--t); letter-spacing: .02em; }
.nav-link:hover { color: var(--text-1); background: var(--surface-1); }
.nav-link.active { color: var(--cyan); background: var(--surface-1); }

.fav-btn { display: flex; align-items: center; gap: .4rem; padding: .4rem .9rem; background: rgba(232,25,107,.07); border: 1px solid rgba(232,25,107,.18); border-radius: 50px; font-size: .82rem; font-weight: 700; font-family: var(--font-d); color: var(--pink); white-space: nowrap; transition: var(--t); flex-shrink: 0; }
.fav-btn:hover { background: rgba(232,25,107,.15); border-color: rgba(232,25,107,.35); box-shadow: 0 0 18px rgba(232,25,107,.12); }

.hbg { display: none; flex-direction: column; gap: 5px; width: 34px; padding: 4px; }
.hbg span { display: block; height: 2px; background: var(--text-2); border-radius: 2px; transition: var(--t); }

.mobile-nav { position: fixed; top: var(--hh); left: 0; right: 0; background: rgba(6,6,16,.97); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--border); z-index: 90; padding: .75rem; display: flex; flex-direction: column; gap: .2rem; box-shadow: 0 16px 40px rgba(0,0,0,.6); }
.mobile-nav[hidden] { display: none; }
.mnav-link { display: block; padding: .6rem .9rem; border-radius: var(--rsm); font-weight: 600; font-size: .93rem; transition: var(--t); }
.mnav-link:hover, .mnav-link.active { background: var(--surface-1); color: var(--cyan); }

/* ===== ADS ===== */
.ad-wrap { display: flex; justify-content: center; align-items: center; padding: .5rem 0; }
.ad-block { position: relative; overflow: hidden; border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; border: 1px dashed rgba(255,255,255,.06); background: rgba(255,255,255,.015); color: var(--text-3); font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; }
.ad-block::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,212,255,.015), rgba(147,51,234,.015)); pointer-events: none; }
.ad-leaderboard { width: 728px; height: 90px; max-width: 100%; }
.ad-rectangle   { width: 300px; height: 250px; max-width: 100%; }

/* ===== TICKER ===== */
.live-ticker { background: linear-gradient(90deg, rgba(0,212,255,.03), rgba(147,51,234,.03)); border-bottom: 1px solid rgba(0,212,255,.07); padding: .4rem 0; overflow: hidden; white-space: nowrap; contain: layout paint; }
.live-ticker .container { overflow: hidden; }
.ticker-track { display: inline-flex; align-items: center; gap: 2.5rem; animation: tickerScroll 40s linear infinite; white-space: nowrap; will-change: transform; }
.ticker-item { display: inline-flex; align-items: center; gap: .45rem; font-size: .75rem; color: var(--text-2); flex-shrink: 0; }
.ticker-item strong { color: var(--text); font-weight: 600; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; display: inline-block; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; min-height: 500px; display: flex; align-items: center; background: var(--bg); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 80% 60% at 72% 50%, rgba(147,51,234,.11) 0%, transparent 60%), radial-gradient(ellipse 55% 75% at 18% 80%, rgba(0,212,255,.07) 0%, transparent 55%), radial-gradient(ellipse 40% 40% at 88% 12%, rgba(232,25,107,.05) 0%, transparent 50%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,212,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,.022) 1px, transparent 1px); background-size: 52px 52px; will-change: transform; animation: gridScroll 30s linear infinite; mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 80%); z-index: 0; /* HERO-FIX: explicit z-index:0 — below np91-hero-overlay */ }
@keyframes gridScroll { 0% { transform: translate(0, 0); } 100% { transform: translate(52px, 52px); } }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); z-index: 0; /* HERO-FIX: explicit 0 — filter blur contained, below overlay */ }
.hg1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(147,51,234,.16) 0%, transparent 70%); top: -150px; right: 5%; }
.hg2 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(0,212,255,.1) 0%, transparent 70%); bottom: -120px; left: 0%; }
#heroParticles { position: absolute; inset: 0; pointer-events: none; z-index: 0; /* HERO-FIX: explicit 0 — particles stay behind content */ }
.hparticle { position: absolute; border-radius: 50%; background: var(--cyan); animation: floatP linear infinite; will-change: transform, opacity; }
@keyframes floatP { 0% { transform: translateY(110vh); opacity: 0; } 10% { opacity: .35; } 90% { opacity: .35; } 100% { transform: translateY(-5vh) translateX(30px); opacity: 0; } }
.hero::after { content: ''; position: absolute; z-index: 0; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,212,255,.18), rgba(147,51,234,.18), transparent); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; padding: 3rem 0; position: relative; z-index: 2; width: 100%; }

.h-badge { display: inline-flex; align-items: center; gap: .45rem; padding: .3rem .88rem; background: rgba(0,212,255,.07); border: 1px solid rgba(0,212,255,.2); border-radius: 50px; font-size: .76rem; font-weight: 700; color: var(--cyan); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.3rem; }
.hero-h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.06; margin-bottom: 1rem; letter-spacing: -.025em; }
.hero-h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.03rem; color: var(--text-2); max-width: 480px; margin-bottom: 2.2rem; line-height: 1.7; font-weight: 400; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid var(--border); }
.stat-item { display: flex; flex-direction: column; }
.stat-item strong { font-family: var(--font-d); font-size: 1.55rem; font-weight: 900; color: var(--cyan); text-shadow: 0 0 16px rgba(0,212,255,.35); line-height: 1; }
.stat-item span { font-size: .68rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hv-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; width: 100%; max-width: 430px; }
.hv-thumb { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid rgba(255,255,255,.07); cursor: pointer; display: block; transition: transform .22s var(--ease-o), box-shadow .22s var(--ease-o), border-color .22s; box-shadow: var(--shadow-card); }
.hv-thumb-main { grid-column: 1 / 3; aspect-ratio: 16/7; }
.hv-thumb:hover { transform: scale(1.03) translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(0,212,255,.18); border-color: rgba(0,212,255,.22); }
.hv-thumb-bg { position: absolute; inset: 0; z-index: 0; }
.hv-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s; z-index: 1; }
.hv-thumb-info { position: absolute; bottom: 0; left: 0; right: 0; padding: .5rem .65rem .45rem; background: linear-gradient(transparent, rgba(0,0,0,.9)); display: flex; align-items: flex-end; justify-content: space-between; gap: .3rem; z-index: 3; }
.hv-cat-tag { font-size: .57rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .1rem; }
.hv-thumb-name { font-size: .74rem; font-weight: 700; font-family: var(--font-d); color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hv-thumb-main .hv-thumb-name { font-size: .87rem; }
.hv-thumb-rating { font-size: .64rem; color: rgba(255,255,255,.72); white-space: nowrap; }
.hv-thumb-badge { position: absolute; top: .45rem; left: .45rem; background: var(--cyan); color: #000; font-size: .55rem; font-weight: 900; padding: .1rem .4rem; border-radius: 4px; font-family: var(--font-d); text-transform: uppercase; letter-spacing: .5px; z-index: 3; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .74rem 1.8rem; border-radius: 50px; font-family: var(--font-d); font-size: .92rem; font-weight: 700; transition: var(--t); cursor: pointer; white-space: nowrap; border: none; letter-spacing: .02em; }
.btn-primary { background: var(--grad); color: #000; box-shadow: 0 4px 24px rgba(0,212,255,.22), 0 2px 8px rgba(0,0,0,.3); position: relative; overflow: hidden; }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.14), transparent); opacity: 0; transition: opacity .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,212,255,.38), 0 4px 12px rgba(0,0,0,.4); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: var(--surface-1); color: var(--text-2); border: 1px solid var(--border); }
.btn-outline:hover { border-color: rgba(0,212,255,.3); color: var(--cyan); background: rgba(0,212,255,.04); }
.btn-lg { padding: .88rem 2.2rem; font-size: 1rem; }

/* ===== TRUST BAR ===== */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; padding: .72rem 0; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.trust-item { display: flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--text-2); white-space: nowrap; }
.trust-icon { font-size: .95rem; }

/* ===== CAT BAR ===== */
.cat-bar { padding: .78rem 0; border-bottom: 1px solid var(--border); background: rgba(6,6,16,.88); backdrop-filter: var(--glass-blur-s); -webkit-backdrop-filter: var(--glass-blur-s); position: sticky; top: var(--hh); z-index: 80; }
.cat-scroll { display: flex; gap: .4rem; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-chip { display: inline-flex; align-items: center; gap: .32rem; padding: .38rem .9rem; border-radius: 50px; font-size: .79rem; font-weight: 700; font-family: var(--font-d); white-space: nowrap; border: 1px solid transparent; transition: var(--t); cursor: pointer; scroll-snap-align: start; letter-spacing: .02em; }
.cat-chip:hover { transform: translateY(-1px); }
.cc-acao      { background: rgba(255,60,60,.07);   border-color: rgba(255,60,60,.18);   color: #ff6868; }
.cc-corrida   { background: rgba(255,122,0,.07);   border-color: rgba(255,122,0,.18);   color: var(--orange); }
.cc-puzzle    { background: rgba(0,212,255,.07);   border-color: rgba(0,212,255,.18);   color: var(--cyan); }
.cc-arcade    { background: rgba(147,51,234,.07);  border-color: rgba(147,51,234,.18);  color: var(--purple); }
.cc-esporte   { background: rgba(0,232,122,.07);   border-color: rgba(0,232,122,.18);   color: var(--green); }
.cc-aventura  { background: rgba(245,197,24,.07);  border-color: rgba(245,197,24,.18);  color: var(--yellow); }
.cc-tiro      { background: rgba(232,25,107,.07);  border-color: rgba(232,25,107,.18);  color: var(--pink); }
.cc-estrategia{ background: rgba(59,126,255,.07);  border-color: rgba(59,126,255,.18);  color: var(--blue); }
.cc-meninas   { background: rgba(232,25,107,.07);  border-color: rgba(232,25,107,.18);  color: var(--pink); }
.cc-casual    { background: rgba(245,197,24,.07);  border-color: rgba(245,197,24,.18);  color: var(--yellow); }
.cc-2jogadores{ background: rgba(0,232,122,.07);   border-color: rgba(0,232,122,.18);   color: var(--green); }
.cat-chip.active { background: rgba(0,212,255,.1); border-color: rgba(0,212,255,.35); color: var(--cyan); box-shadow: 0 0 14px rgba(0,212,255,.1); }

/* ===== RECENTLY PLAYED ===== */
.recent-bar { padding: .62rem 0; border-bottom: 1px solid var(--border); background: rgba(147,51,234,.03); }
.recent-bar > .container { display: flex; align-items: center; gap: 1rem; }
.recent-label { font-size: .74rem; font-weight: 700; font-family: var(--font-d); color: var(--purple); white-space: nowrap; flex-shrink: 0; letter-spacing: .05em; text-transform: uppercase; }
.recent-chips { display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none; }
.recent-chips::-webkit-scrollbar { display: none; }
.recent-chip { display: flex; align-items: center; gap: .3rem; padding: .26rem .68rem; background: rgba(147,51,234,.07); border: 1px solid rgba(147,51,234,.16); border-radius: 50px; font-size: .74rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; color: var(--text-2); transition: var(--t); }
.recent-chip:hover { border-color: var(--purple); color: var(--purple); }

/* ===== LAYOUT ===== */
.main-layout { display: grid; grid-template-columns: minmax(0,1fr) 285px; gap: 2rem; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 1.2rem; }

/* ===== SECTIONS ===== */
.section { padding: 10px 0; margin-bottom: 2rem; overflow: visible; }
.section-hd { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .9rem; gap: 1rem; }
.section-title { display: flex; align-items: center; gap: .45rem; font-size: 1.08rem; font-weight: 800; letter-spacing: -.01em; font-family: var(--font-d); }
.section-title::before { content: ''; display: inline-block; width: 3px; height: 1em; background: var(--grad); border-radius: 3px; flex-shrink: 0; }
.sec-icon { font-size: 1.2rem; }
.see-all { font-size: .78rem; font-weight: 700; font-family: var(--font-d); color: var(--text-3); transition: var(--t); white-space: nowrap; padding-top: .15rem; letter-spacing: .02em; }
.see-all:hover { color: var(--cyan); }

/* ===== CAROUSEL ===== */
.carousel-scroll { display: flex; gap: 16px; overflow-x: auto; overflow-y: visible; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding: 8px 0 14px; -webkit-overflow-scrolling: touch; width: 100%; box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.09) transparent; }
.carousel-scroll::-webkit-scrollbar { height: 4px; }
.carousel-scroll.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; overflow-x: hidden; overflow-y: visible; scroll-snap-type: none; }
.carousel-scroll .game-card, .carousel-scroll .cat-card { flex: 0 0 auto; scroll-snap-align: start; animation: none; }
.carousel-nav { display: none; }
.carousel-wrap { position: relative; width: 100%; min-width: 0; overflow-x: hidden; overflow-y: visible; isolation: isolate; }
.carousel-wrap::after { content: ''; position: absolute; top: 0; right: 0; bottom: 14px; width: 80px; background: linear-gradient(to right, transparent, var(--bg) 80%); pointer-events: none; z-index: 3; transition: opacity .25s; }
.carousel-wrap.at-end::after { opacity: 0; }
.cnav-btn { position: absolute; top: 0; bottom: 0; width: 44px; display: flex; align-items: center; justify-content: center; z-index: 4; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .18s, background .18s; background: var(--glass-bg); backdrop-filter: var(--glass-blur-s); -webkit-backdrop-filter: var(--glass-blur-s); border: 1px solid var(--glass-border); color: var(--text); font-size: 1rem; font-weight: 900; box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.cnav-prev { left: 0; border-radius: 0 10px 10px 0; }
.cnav-next { right: 0; border-radius: 10px 0 0 10px; }
.carousel-wrap:hover .cnav-btn:not(.cnav-hidden) { opacity: 1; pointer-events: auto; }
.cnav-btn.cnav-hidden { opacity: 0 !important; pointer-events: none !important; }
.cnav-btn:hover { background: rgba(0,212,255,.14); border-color: rgba(0,212,255,.28); color: var(--cyan); }
.cnav-btn:active { background: rgba(0,212,255,.24); }

/* ===== GAMES GRID ===== */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr)); gap: 1rem; overflow: visible; }

/* ===== FEATURED GRID ===== */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; overflow: visible; }
.featured-grid .game-card:first-child { grid-column: span 2; grid-row: span 2; }
.featured-grid .game-card:first-child .card-thumb { aspect-ratio: 16/9; }
.featured-grid .game-card:first-child .card-name { font-size: 1.05rem; }

/* ===== GAME CARD 2.0 ===== */
.game-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; transition: transform .28s var(--ease-o), box-shadow .28s var(--ease-o), border-color .28s; animation: fadeInUp .35s ease both; display: flex; flex-direction: column; height: 220px; user-select: none; backface-visibility: hidden; scroll-snap-align: start; flex: 0 0 auto; }
.game-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent); opacity: 0; transition: opacity .28s; pointer-events: none; z-index: 2; }
.game-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-hover); border-color: rgba(0,212,255,.14); z-index: 10; }
.game-card:hover::before { opacity: 1; }
.game-card:active { transform: scale(0.98); }
.game-card:focus { outline: 2px solid rgba(0,212,255,.3); outline-offset: 2px; }
.game-card:nth-child(1)  { animation-delay:.00s }
.game-card:nth-child(2)  { animation-delay:.04s }
.game-card:nth-child(3)  { animation-delay:.08s }
.game-card:nth-child(4)  { animation-delay:.12s }
.game-card:nth-child(5)  { animation-delay:.16s }
.game-card:nth-child(6)  { animation-delay:.20s }
.game-card:nth-child(7)  { animation-delay:.24s }
.game-card:nth-child(8)  { animation-delay:.28s }
.game-card:nth-child(n+9){ animation-delay:.32s }

.card-thumb { position: relative; height: 135px; overflow: hidden; background: var(--bg-2); flex-shrink: 0; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease-o); display: block; will-change: auto; /* v102: gerenciado por NP.layers.promote() durante hover */ }
.game-card:hover .card-thumb img { transform: scale(1.06); }
.ce { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }

.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 45%, transparent 100%); opacity: 0; transition: opacity .22s; display: flex; align-items: flex-end; justify-content: center; padding-bottom: .9rem; }
.game-card:hover .card-overlay { opacity: 1; }
.card-play { width: auto !important; padding: .36rem 1rem; border-radius: 50px !important; font-size: .78rem !important; letter-spacing: .03em; background: var(--grad); color: #000; font-weight: 800; font-family: var(--font-d); transform: translateY(8px); transition: transform var(--t); box-shadow: 0 4px 16px rgba(0,212,255,.38); }
.game-card:hover .card-play { transform: translateY(0); }

.card-badge { position: absolute; top: 8px; left: 8px; padding: .15rem .48rem; border-radius: 5px; font-size: .59rem; font-weight: 900; font-family: var(--font-d); text-transform: uppercase; letter-spacing: .5px; line-height: 1.4; z-index: 1; }
.cb-hot { background: var(--pink);   color: #fff; box-shadow: 0 2px 8px rgba(232,25,107,.4); }
.cb-new { background: var(--green);  color: #000; box-shadow: 0 2px 8px rgba(0,232,122,.3); }
.cb-top { background: var(--yellow); color: #000; box-shadow: 0 2px 8px rgba(245,197,24,.3); }

.card-fav { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; background: rgba(0,0,0,.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .86rem; opacity: 0; transition: var(--t); backdrop-filter: blur(4px); z-index: 1; cursor: pointer; }
.game-card:hover .card-fav { opacity: 1; }
.card-fav.cf-active { opacity: 1; }

.card-body { padding: 8px 9px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card-body h3 { font-size: 13px; line-height: 1.3; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.card-body span { font-size: 12px; opacity: .65; }
.card-name { font-family: var(--font-d); font-size: .87rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: .25rem; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: .2rem; }
.card-cat  { font-size: .64rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; }
.card-rating { font-size: .7rem; color: var(--yellow); font-weight: 700; }
.card-plays { font-size: .64rem; color: var(--text-3); margin-bottom: .35rem; }
.card-bar { width: 100%; height: 2px; background: rgba(255,255,255,.05); border-radius: 2px; overflow: hidden; }
.card-bar-fill { height: 100%; border-radius: 2px; background: var(--grad); transition: width 1.2s var(--ease); }
.gc-featured { border-color: rgba(0,212,255,.09); }
.gc-featured:hover { border-color: rgba(0,212,255,.28); }

/* ===== CATEGORIES ===== */
.cats-scroll { display: flex; flex-direction: row; gap: .72rem; overflow-x: auto; overflow-y: visible; scrollbar-width: none; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; flex: 1; padding-bottom: 4px; }
.cats-scroll::-webkit-scrollbar { display: none; }
.cat-card { position: relative; padding: 1.3rem .9rem 1.1rem; border-radius: var(--r); border: 1px solid var(--border); background: var(--bg-card); overflow: hidden; cursor: pointer; transition: var(--t); display: flex; flex-direction: column; align-items: center; text-align: center; gap: .3rem; min-width: 145px; max-width: 155px; flex-shrink: 0; scroll-snap-align: start; }
.cat-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-subtle); opacity: 0; transition: opacity .22s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.4); border-color: rgba(0,212,255,.18); }
.cat-card:hover::before { opacity: 1; }
.cat-card-icon { font-size: 2.6rem; transition: var(--t); line-height: 1; position: relative; }
.cat-card:hover .cat-card-icon { transform: scale(1.15); }
.cat-card-name { font-family: var(--font-d); font-size: .93rem; font-weight: 800; position: relative; }
.cat-card-count { font-size: .7rem; color: var(--text-3); position: relative; }

/* ===== WIDGET ===== */
.widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 1rem; transition: border-color .2s; }
.widget:hover { border-color: rgba(255,255,255,.1); }
.widget-title { font-family: var(--font-d); font-size: .88rem; font-weight: 800; margin-bottom: .8rem; padding-bottom: .55rem; letter-spacing: .02em; }
.widget-title::after { content: ''; display: block; height: 1px; margin-top: .55rem; background: linear-gradient(90deg, var(--border-a), transparent); }
.top5-item { display: flex; align-items: center; gap: .6rem; padding: .46rem .48rem; border-radius: var(--rsm); transition: var(--t); }
.top5-item:hover { background: var(--bg-card-h); }
.top5-rank { width: 20px; height: 20px; border-radius: 50%; background: var(--grad); color: #000; font-size: .64rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.top5-emoji { font-size: 1.2rem; flex-shrink: 0; }
.top5-info { flex: 1; min-width: 0; }
.top5-name { font-weight: 700; font-size: .79rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top5-plays { font-size: .67rem; color: var(--text-3); }
.scats { display: flex; flex-direction: column; gap: .18rem; }
.scat { display: flex; align-items: center; gap: .42rem; padding: .42rem .62rem; border-radius: var(--rsm); font-size: .82rem; font-weight: 500; color: var(--text-2); transition: var(--t); }
.scat:hover { background: var(--bg-card-h); color: var(--text-1); }
.scat--priority { color: var(--cyan); font-weight: 700; }
.scat--priority:hover { background: rgba(0,212,255,.05); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--text-3); margin: 1.25rem 0; }
.breadcrumb a { color: var(--text-2); transition: var(--t); }
.breadcrumb a:hover { color: var(--cyan); }
.bc-sep { color: var(--text-3); }

/* ===== CATEGORY HERO ===== */
.cat-hero { display: flex; align-items: center; gap: 1.5rem; padding: 1.75rem 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rlg); margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.cat-hero::before { content: ''; position: absolute; inset: 0; background: var(--grad-subtle); pointer-events: none; }
.cat-hero-icon { font-size: 4rem; line-height: 1; position: relative; }
.cat-hero-info { position: relative; }
.cat-hero-title { font-size: 2rem; font-weight: 900; }
.cat-hero-count { color: var(--text-2); font-size: .92rem; margin-top: .2rem; }
.cat-hero-desc { color: var(--text-3); font-size: .82rem; margin-top: .35rem; max-width: 500px; }

/* ===== FILTERS ===== */
.filters-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding: .62rem .88rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); }
.filters-left { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.filter-label { font-size: .78rem; color: var(--text-3); font-weight: 600; }
.filter-chips { display: flex; gap: .3rem; flex-wrap: wrap; }
.filter-chip { padding: .24rem .68rem; border-radius: 50px; font-size: .75rem; font-weight: 700; font-family: var(--font-d); border: 1px solid var(--border); color: var(--text-2); background: transparent; transition: var(--t); cursor: pointer; }
.filter-chip:hover, .filter-chip.active { border-color: rgba(0,212,255,.3); color: var(--cyan); background: rgba(0,212,255,.05); }
.sort-select { padding: .34rem .72rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--rsm); color: var(--text); font-size: .8rem; cursor: pointer; outline: none; transition: var(--t); }
.sort-select:focus { border-color: var(--cyan); }

/* ===== GAME PAGE ===== */
.gp-layout { display: grid; grid-template-columns: 1fr 285px; gap: 2rem; align-items: start; }
.game-splash { display: flex; gap: 1.75rem; align-items: flex-start; flex-wrap: wrap; padding: 1.6rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rlg); margin-bottom: 1rem; position: relative; overflow: hidden; }
.game-splash::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 0% 50%, rgba(0,212,255,.03), transparent 60%); pointer-events: none; }
.splash-poster { width: clamp(160px, 28%, 250px); aspect-ratio: 4/3; flex-shrink: 0; border-radius: var(--r); overflow: hidden; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; }
.splash-poster img { width: 100%; height: 100%; object-fit: cover; }
.splash-info { flex: 1; min-width: 0; position: relative; }
.gp-title { font-size: 1.85rem; font-weight: 900; margin-bottom: .65rem; letter-spacing: -.025em; }
.gp-meta { display: flex; gap: .42rem; flex-wrap: wrap; margin-bottom: .82rem; }
.gp-tag { padding: .18rem .58rem; background: var(--surface-1); border-radius: 50px; border: 1px solid var(--border); color: var(--text-2); font-size: .74rem; }
.gp-tag.cat { color: var(--cyan); border-color: rgba(0,212,255,.18); }
.gp-desc { color: var(--text-2); font-size: .92rem; line-height: 1.7; margin-bottom: 1.3rem; }
.gp-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

.btn-play { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 2.2rem; background: var(--grad); color: #000; border: none; border-radius: 50px; font-family: var(--font-d); font-size: 1rem; font-weight: 900; cursor: pointer; transition: var(--t); box-shadow: 0 4px 24px rgba(0,212,255,.28); letter-spacing: .02em; }
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,212,255,.48); }
.btn-fav { display: inline-flex; align-items: center; gap: .42rem; padding: .8rem 1.5rem; background: rgba(232,25,107,.07); border: 1px solid rgba(232,25,107,.22); border-radius: 50px; font-family: var(--font-d); font-size: .92rem; font-weight: 700; color: var(--pink); cursor: pointer; transition: var(--t); }
.btn-fav:hover, .btn-fav.faved { background: rgba(232,25,107,.16); border-color: var(--pink); }

.game-frame-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rlg); overflow: hidden; margin-bottom: 1rem; }
.gframe-bar { display: flex; align-items: center; justify-content: space-between; padding: .52rem .88rem; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.gframe-title { font-weight: 700; font-size: .87rem; }
.gframe-btns { display: flex; gap: .32rem; }
.gframe-btn { width: 32px; height: 32px; border-radius: var(--rsm); background: var(--surface-1); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .93rem; transition: var(--t); cursor: pointer; }
.gframe-btn:hover { background: rgba(0,212,255,.07); border-color: rgba(0,212,255,.22); }
.iframe-outer { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.iframe-loader { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; background: #000; color: var(--text-2); }
.spin { width: 44px; height: 44px; border: 2px solid rgba(255,255,255,.07); border-top-color: var(--cyan); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.game-iframe { width: 100%; height: 100%; border: none; display: block; }

.ginfo-card { padding: 1.3rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 1rem; }
.ginfo-card h2 { font-size: .98rem; margin-bottom: .55rem; }
.ginfo-card p { color: var(--text-2); font-size: .87rem; line-height: 1.7; }
.gtags { display: flex; gap: .32rem; flex-wrap: wrap; margin-top: .75rem; }
.gtag { padding: .14rem .52rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 50px; font-size: .68rem; color: var(--text-3); }

/* ===== SEO BLOCK ===== */
.seo-block { padding: 1.6rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); margin-top: 1.5rem; }
.seo-block h1 { font-size: 1.3rem; margin-bottom: .8rem; }
.seo-block h2 { font-size: 1.03rem; margin-bottom: .68rem; }
.seo-block h3 { font-size: .9rem; margin: .88rem 0 .42rem; color: var(--text-2); }
.seo-block p  { font-size: .85rem; color: var(--text-2); line-height: 1.75; margin-bottom: .5rem; }
.seo-block ul { padding-left: 1.2rem; }
.seo-block li { font-size: .85rem; color: var(--text-2); line-height: 1.8; }
.seo-block a  { color: var(--cyan); border-bottom: 1px solid rgba(0,212,255,.14); transition: border-color .2s; }
.seo-block a:hover { border-color: var(--cyan); }

/* ===== LOAD MORE ===== */
.lm-wrap { display: flex; justify-content: center; padding: 2rem 0 .5rem; }
.btn-load { display: flex; align-items: center; gap: .5rem; padding: .72rem 2.5rem; background: rgba(147,51,234,.07); border: 1px solid rgba(147,51,234,.22); border-radius: 50px; color: var(--purple); font-family: var(--font-d); font-size: .9rem; font-weight: 700; cursor: pointer; transition: var(--t); letter-spacing: .02em; }
.btn-load:hover { background: rgba(147,51,234,.16); box-shadow: 0 0 24px rgba(147,51,234,.18); transform: translateY(-2px); }

/* ===== FAV PANEL ===== */
.fav-panel { position: fixed; top: 0; right: -420px; width: 380px; height: 100vh; background: rgba(8,8,22,.97); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border-left: 1px solid var(--border); z-index: 300; transition: right var(--ts); display: flex; flex-direction: column; box-shadow: -16px 0 60px rgba(0,0,0,.6); }
.fav-panel.open { right: 0; }
.fav-ph { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--border); }
.fav-ph h3 { font-size: 1rem; }
.fav-close { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-1); display: flex; align-items: center; justify-content: center; font-size: .93rem; transition: var(--t); cursor: pointer; }
.fav-close:hover { color: var(--pink); }
.fav-body { flex: 1; overflow-y: auto; padding: .9rem; display: flex; flex-direction: column; gap: .62rem; }
.fav-empty { text-align: center; color: var(--text-3); padding: 3rem 1rem; }
.fav-empty span { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.fav-item { display: flex; align-items: center; gap: .6rem; padding: .62rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); color: inherit; transition: var(--t); }
.fav-item:hover { border-color: var(--border-a); }
.fav-thumb { width: 50px; height: 40px; border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; overflow: hidden; }
.fav-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fav-info { flex: 1; min-width: 0; }
.fav-name { font-weight: 700; font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fav-cat  { font-size: .67rem; color: var(--text-3); }
.fav-rm { width: 24px; height: 24px; border-radius: 50%; background: rgba(232,25,107,.07); color: var(--pink); font-size: .7rem; display: flex; align-items: center; justify-content: center; transition: var(--t); cursor: pointer; flex-shrink: 0; border: none; }
.fav-rm:hover { background: rgba(232,25,107,.2); }

/* ===== OVERLAY ===== */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 250; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.overlay.show { opacity: 1; pointer-events: all; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--glass-bg); backdrop-filter: var(--glass-blur-s); -webkit-backdrop-filter: var(--glass-blur-s); border: 1px solid var(--border-a); color: var(--text); padding: .62rem 1.4rem; border-radius: 50px; font-size: .85rem; font-weight: 600; z-index: 400; transition: transform var(--ts); box-shadow: var(--shadow-neon); white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== FOOTER ===== */
.footer { background: #040410; border-top: 1px solid var(--border); padding-top: 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand .f-tagline { color: var(--text-3); font-size: .83rem; margin-top: .6rem; max-width: 280px; font-weight: 400; }
.footer-col h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: .82rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .38rem; }
.footer-col a { font-size: .83rem; color: var(--text-2); transition: var(--t); }
.footer-col a:hover { color: var(--text-1); }
.footer-bot { border-top: 1px solid var(--border); padding: 1.2rem 0; text-align: center; }
.footer-bot p { font-size: .75rem; color: var(--text-3); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SKELETON ===== */
.skeleton { background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-h) 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--rsm); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gp-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --hh: 58px; --r: 10px; --rlg: 14px; }
  .nav { display: none; }
  .hbg { display: flex; }
  .search-wrap { max-width: 200px; }
  .hero { min-height: 380px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-stats { gap: 1.25rem; padding-top: 1.5rem; }
  .stat-item strong { font-size: 1.3rem; }
  .sidebar { grid-template-columns: 1fr; }
  .game-splash { flex-direction: column; padding: 1.1rem; }
  .splash-poster { width: 100%; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; }
  .fav-panel { width: 100%; right: -100%; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(min(155px, 100%), 1fr)); }
  .filters-bar { flex-direction: column; align-items: flex-start; }
  .cat-hero { flex-direction: column; text-align: center; padding: 1.2rem; }
  .trust-bar { padding: .62rem; }
  .gp-title { font-size: 1.5rem; }
  .widget, .ginfo-card { padding: .85rem; }
  .seo-block { padding: 1.2rem; }
  .section { margin-bottom: 1.5rem; }
  .game-card { min-height: 0; }
  .card-thumb { height: 140px; }
  .card-play { opacity: 1 !important; transform: translateY(0) !important; }
  .card-overlay { opacity: 1 !important; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%); }
  .card-fav { opacity: 1 !important; }
  .gp-layout { grid-template-columns: 1fr; }
  .gframe-btns { gap: .25rem; }
  .gframe-btn { font-size: .8rem; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .search-wrap { max-width: 150px; }
  .fav-btn span { display: none; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr)); gap: .72rem; }
  .cat-bar { position: static; }
  .recent-bar > .container { flex-direction: column; align-items: flex-start; }
}

/* ===== GROWTH & PREMIUM ADDITIONS ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }
.reveal:nth-child(5) { transition-delay: .28s; }
.reveal:nth-child(6) { transition-delay: .35s; }

.dopamine-toast { position: fixed; bottom: 5.5rem; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--grad); color: #000; font-weight: 900; font-family: var(--font-d); padding: .68rem 1.8rem; border-radius: 50px; font-size: .88rem; z-index: 500; transition: transform var(--ts); box-shadow: 0 6px 28px rgba(147,51,234,.38); white-space: nowrap; pointer-events: none; }
.dopamine-toast.show { transform: translateX(-50%) translateY(0); }

.pulse-badge { position: relative; }
.pulse-badge::after { content: ''; position: absolute; inset: -2px; border-radius: 4px; border: 1.5px solid var(--pink); animation: badgePulse 1.8s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 0; transform: scale(1.25); } }

.card-social { font-size: .59rem; font-weight: 800; font-family: var(--font-d); text-transform: uppercase; letter-spacing: .6px; color: var(--orange); margin-bottom: .14rem; }

.top10-list { display: flex; flex-direction: column; gap: .42rem; max-width: 100%; }
.top10-item { display: flex; align-items: center; gap: .68rem; padding: .52rem .72rem; border-radius: var(--r); border: 1px solid var(--border); background: var(--bg-card); transition: var(--t); width: 100%; box-sizing: border-box; overflow: hidden; }
.top10-item:hover { border-color: rgba(0,212,255,.18); background: var(--bg-card-h); box-shadow: inset 3px 0 0 var(--cyan); }
.t10-rank { font-size: .98rem; min-width: 28px; text-align: center; font-weight: 900; font-family: var(--font-d); }
.t10-thumb { width: 42px; height: 34px; border-radius: var(--rsm); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.t10-thumb img { width: 100%; height: 100%; object-fit: cover; }
.t10-info { flex: 1; min-width: 0; overflow: hidden; }
.t10-name { font-weight: 700; font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t10-plays { font-size: .67rem; color: var(--text-3); }
.t10-arrow { color: var(--text-3); font-size: 1.05rem; transition: var(--t); }
.top10-item:hover .t10-arrow { color: var(--cyan); }

.section-label { font-size: .74rem; color: var(--text-3); font-weight: 500; margin-top: .12rem; margin-bottom: .85rem; }
.section-label em { font-style: normal; color: var(--cyan); }

.next-game-card { display: flex; align-items: stretch; border-radius: var(--rlg); overflow: hidden; border: 1px solid rgba(0,212,255,.14); position: relative; min-height: 120px; transition: var(--t); margin-bottom: 1.5rem; box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.next-game-card:hover { border-color: rgba(0,212,255,.28); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,212,255,.13); }
.ngc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.3) blur(1px); transition: filter var(--t); }
.next-game-card:hover .ngc-bg { filter: brightness(.44) blur(0); }
.ngc-content { position: relative; z-index: 1; display: flex; align-items: center; gap: 1.2rem; padding: 1.1rem 1.5rem; width: 100%; }
.ngc-label { font-size: .68rem; font-weight: 800; font-family: var(--font-d); text-transform: uppercase; letter-spacing: .1em; color: var(--cyan); flex-shrink: 0; writing-mode: vertical-rl; transform: rotate(180deg); }
.ngc-info { flex: 1; }
.ngc-name { font-family: var(--font-d); font-size: 1.3rem; font-weight: 900; margin-bottom: .2rem; }
.ngc-meta { font-size: .74rem; color: var(--text-2); }
.ngc-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .6rem 1.5rem; background: var(--grad); color: #000; border-radius: 50px; font-family: var(--font-d); font-size: .9rem; font-weight: 900; flex-shrink: 0; transition: var(--t); box-shadow: 0 4px 16px rgba(0,212,255,.28); }
.next-game-card:hover .ngc-btn { transform: scale(1.04); box-shadow: 0 8px 28px rgba(0,212,255,.48); }

.also-section { margin-top: 2rem; }
.also-label { font-size: .72rem; color: var(--text-3); margin-top: -.6rem; margin-bottom: 1rem; font-weight: 500; }
.section-title.glow-title { color: var(--cyan); text-shadow: 0 0 18px rgba(0,212,255,.28); }
#top10Grid { display: flex; flex-direction: column; gap: .32rem; }

@media (max-width: 768px) {
  .ngc-label { display: none; }
  .ngc-name { font-size: 1.08rem; }
  .ngc-btn { padding: .5rem 1rem; font-size: .78rem; }
  .top10-item { padding: .46rem .58rem; }
  .dopamine-toast { font-size: .78rem; padding: .6rem 1.3rem; bottom: 4.5rem; }
}
@media (max-width: 480px) {
  .next-game-card { min-height: 100px; }
  .ngc-content { padding: .85rem .9rem; gap: .72rem; }
  .card-thumb { height: 120px; }
}

.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: .5rem 0; }
.ad-mobile-only { display: none; }
@media (max-width: 768px) { .ad-mobile-only { display: block; } }

#continueSection.recent-bar { background: linear-gradient(135deg, rgba(0,212,255,.04), rgba(147,51,234,.04)); border-top: 1px solid rgba(0,212,255,.09); border-bottom: 1px solid rgba(0,212,255,.09); padding: .75rem 0 1rem; }
#continueSection.recent-bar > .container { flex-direction: column; align-items: flex-start; }
#continueSection .recent-chips { width: 100%; }
#continueSection #continueGrid { width: 100%; margin-top: .8rem !important; }
#continueSection .recent-label { font-size: .8rem; font-weight: 700; color: var(--cyan); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; margin-right: 0; margin-bottom: .4rem; }

@media (max-width: 600px) {
  .carousel-scroll { gap: .52rem; padding-bottom: .9rem; }
  .game-card .card-thumb { height: 110px; }
  .game-card .card-name { font-size: .77rem; }
  .cat-scroll { gap: .32rem; }
  .cat-chip { padding: .36rem .62rem; font-size: .73rem; }
  .hero-h1 { font-size: clamp(1.7rem, 6vw, 2.8rem); }
  .hero-sub { font-size: .88rem; }
  .trust-bar { gap: .38rem; }
  .trust-item { font-size: .73rem; }
  .section-title { font-size: .98rem; }
  .ad-block.ad-leaderboard { min-height: 60px; }
}

#bombandoGrid .game-card, #continueGrid .game-card, #userTopGrid .game-card { animation: fadeInUp .3s ease both; }
.f-tagline { font-size: .86rem; color: var(--text-2); margin-top: .4rem; font-weight: 400; }

.game-description { margin-top: 1.5rem; }
.game-description h2 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 1.4rem 0 .5rem; padding-bottom: .28rem; border-bottom: 1px solid var(--border); }
.game-description h2:first-child { margin-top: 0; }
.game-description p  { font-size: .875rem; color: var(--text-2); line-height: 1.75; margin-bottom: .5rem; }
.game-description ul { padding-left: 1.25rem; margin-bottom: .5rem; }
.game-description li { font-size: .875rem; color: var(--text-2); line-height: 1.8; }
.game-description a  { color: var(--cyan); }
.game-description a:hover { text-decoration: underline; }
.related-links-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .38rem; margin-bottom: .72rem; }
.related-links-list li a { display: inline-block; padding: .18rem .58rem; background: rgba(0,212,255,.05); border: 1px solid rgba(0,212,255,.14); border-radius: 20px; font-size: .77rem; color: var(--cyan); transition: background .2s, border-color .2s; }
.related-links-list li a:hover { background: rgba(0,212,255,.13); border-color: var(--cyan); }

.ad-label { position: absolute; top: 4px; right: 8px; font-size: .57rem; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; opacity: .4; }
.ad-block:not([data-ad-loaded]) { border: none !important; background: transparent !important; height: 0 !important; min-height: 0 !important; padding: 0 !important; margin: 0 !important; overflow: hidden !important; }
.ad-block:not([data-ad-loaded]) .ad-label { display: none !important; }
.ad-wrap:has(.ad-block:not([data-ad-loaded])) { padding: 0 !important; }

.carousel-scroll::-webkit-scrollbar-track { background: transparent; }
.carousel-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.09); border-radius: 3px; }

#surpriseGame .fav-item { display: flex; align-items: center; gap: .6rem; padding: .6rem; background: var(--bg-card-h); border-radius: var(--r); border: 1px solid var(--border); transition: var(--t); }
#surpriseGame .fav-item:hover { border-color: var(--border-a); }

.jdd-wrap { width: 100%; }
.jdd-inner { display: grid; grid-template-columns: auto 1fr 2fr; gap: 1.5rem; align-items: center; background: linear-gradient(135deg, rgba(0,212,255,.04), rgba(147,51,234,.06)); border: 1px solid rgba(0,212,255,.16); border-radius: 16px; padding: 1.5rem; position: relative; overflow: hidden; }
.jdd-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 10% 50%, rgba(0,212,255,.05), transparent 60%); pointer-events: none; }
.jdd-badge { display: flex; flex-direction: column; align-items: center; gap: .3rem; min-width: 70px; }
.jdd-crown { font-size: 2.2rem; line-height: 1; }
.jdd-label-top { font-size: .57rem; font-weight: 900; letter-spacing: .1em; color: var(--cyan); text-transform: uppercase; background: rgba(0,212,255,.09); padding: .18rem .44rem; border-radius: 4px; }
.jdd-date { font-size: .68rem; color: var(--text-3); text-align: center; }
.jdd-thumb-wrap { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; max-width: 200px; width: 100%; }
.jdd-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.jdd-play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.48); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #fff; opacity: 0; transition: opacity .2s; }
.jdd-thumb-wrap:hover .jdd-play-overlay { opacity: 1; }
.jdd-info { display: flex; flex-direction: column; gap: .6rem; }
.jdd-name { font-size: 1.3rem; font-weight: 900; font-family: var(--font-d); color: var(--text-1); margin: 0; line-height: 1.2; }
.jdd-meta { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; }
.jdd-rating { color: var(--yellow); font-weight: 700; font-size: .88rem; }
.jdd-cat { color: var(--text-3); font-size: .82rem; }
.jdd-desc { color: var(--text-2); font-size: .87rem; margin: 0; line-height: 1.55; }
.jdd-footer { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.jdd-btn { display: inline-flex; align-items: center; gap: .4rem; background: var(--grad); color: #000; font-weight: 800; padding: .6rem 1.22rem; border-radius: 10px; font-family: var(--font-d); font-size: .91rem; transition: opacity .2s, transform .15s; }
.jdd-btn:hover { opacity: .9; transform: translateY(-1px); }
.jdd-timer { color: var(--text-3); font-size: .76rem; }
@media (max-width: 768px) {
  .jdd-inner { grid-template-columns: 1fr; }
  .jdd-badge { flex-direction: row; justify-content: flex-start; }
  .jdd-thumb-wrap { max-width: 100%; }
  .jdd-play-overlay { opacity: 1; }
}

.gframe-btn--share { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.22) !important; }
.gframe-btn--share:hover { background: rgba(37,211,102,.22); }

.playtime-bar { display: flex; align-items: center; gap: .6rem; background: rgba(0,212,255,.05); border: 1px solid rgba(0,212,255,.1); border-top: none; border-radius: 0 0 10px 10px; padding: .4rem .88rem; font-size: .78rem; color: var(--text-3); }
.playtime-icon { font-size: .92rem; }
.playtime-best { margin-left: auto; color: var(--cyan); font-weight: 700; font-size: .74rem; }

.seo-intro { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1.5rem; margin-top: 1.2rem; color: var(--text-2); font-size: .9rem; line-height: 1.7; }
.seo-intro strong { color: var(--text); }

.explore-block { background: var(--surface-2); border-top: 1px solid var(--border); padding: 2rem 0 1.8rem; margin-top: 2.5rem; }
.explore-title { font-family: var(--font-d); font-size: 1.08rem; font-weight: 700; color: var(--text); margin: 0 0 .9rem; }
.explore-block .scats { display: flex; flex-wrap: wrap; gap: .38rem; }

#userTopSection .section-title { color: var(--pink); }
#userTopSection .sec-icon { filter: drop-shadow(0 0 8px var(--pink)); }

.cat-scroll::-webkit-scrollbar { display: none; }
.cat-scroll { scrollbar-width: none; -ms-overflow-style: none; }

:focus-visible { outline: 2px solid rgba(0,212,255,.45); outline-offset: 3px; border-radius: 4px; }
.btn-load { transition: var(--t), box-shadow var(--t); }

/* ===== COMBO / TAG / COLLECTION / INTENT / BUSCAR ===== */
.combo-hero, .tag-hero, .collection-hero { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rlg); padding: 1.75rem 2rem; margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.combo-hero::before, .tag-hero::before, .collection-hero::before { content: ''; position: absolute; inset: 0; background: var(--grad-subtle); pointer-events: none; }
.combo-title, .tag-title, .collection-title { font-size: 1.8rem; font-weight: 900; position: relative; }
.combo-desc, .tag-desc, .collection-desc { color: var(--text-2); font-size: .9rem; margin-top: .4rem; position: relative; }

.buscar-wrap { max-width: 680px; margin: 2rem auto; }
.buscar-input { width: 100%; padding: .85rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50px; color: var(--text); font-size: 1.1rem; outline: none; transition: var(--t); }
.buscar-input:focus { border-color: var(--border-a); box-shadow: 0 0 0 3px var(--accent-glow-s); }
.buscar-results { margin-top: 1.5rem; }
.buscar-count { font-size: .82rem; color: var(--text-3); margin-bottom: 1rem; }

.novidades-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(220px,100%), 1fr)); gap: 1rem; }

/* ===== INTENT PAGE ===== */
.intent-hero { text-align: center; padding: 3rem 1rem 2rem; }
.intent-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .8rem; }
.intent-hero p { color: var(--text-2); max-width: 500px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════
   NeonPlay v82 — ENGAGEMENT ENGINE CSS
   ══════════════════════════════════════════════════════ */

/* ── TRENDING SECTION ─────────────────────────────── */
#trendingSection {
  background: linear-gradient(135deg, rgba(232,25,107,.04), rgba(147,51,234,.04));
  border: 1px solid rgba(232,25,107,.1);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
#trendingSection .section-title { color: var(--pink); }
#trendingSection .section-title::before { background: linear-gradient(var(--pink), var(--purple)); }
#trendingTimer {
  font-size: .67rem; color: var(--text-3); font-weight: 500;
  margin-left: auto; white-space: nowrap; flex-shrink: 0;
}

/* ── CARD ENHANCEMENTS ────────────────────────────── */
/* Botão Jogar mais proeminente */
.card-play {
  padding: .4rem 1.1rem !important;
  font-size: .8rem !important;
  box-shadow: 0 4px 20px rgba(0,212,255,.45) !important;
}

/* Overlay mais leve e elegante */
.card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.28) 48%,
    transparent 100%
  ) !important;
}

/* Scale mais suave no hover */
.game-card:hover {
  transform: translateY(-6px) scale(1.018) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.7), 0 0 0 1px rgba(0,212,255,.16) !important;
}

/* Active press feedback */
.game-card:active {
  transform: scale(0.96) translateY(0) !important;
  transition: transform .1s !important;
}

/* Hover shimmer no card-thumb */
.card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,212,255,.06) 100%);
  opacity: 0; transition: opacity .28s; pointer-events: none; z-index: 2;
}
.game-card:hover .card-thumb::after { opacity: 1; }

/* ── CAROUSEL AUTO-SCROLL INDICATOR ──────────────── */
.carousel-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 14px; width: 60px;
  background: linear-gradient(to left, transparent, var(--bg) 80%);
  pointer-events: none; z-index: 3; opacity: 0;
  transition: opacity .25s;
}

/* ── CTA CARD NO CARROSSEL ───────────────────────── */
.carousel-cta-card {
  flex: 0 0 auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .7rem;
  min-width: 150px; max-width: 190px; height: 220px;
  border: 1px dashed rgba(0,212,255,.2);
  border-radius: 12px;
  background: rgba(0,212,255,.03);
  cursor: pointer;
  transition: all .22s var(--ease);
  color: var(--cyan); font-family: var(--font-d);
  font-weight: 700; font-size: .85rem;
  text-decoration: none; text-align: center;
  padding: 1rem; scroll-snap-align: start;
}
.carousel-cta-card:hover {
  background: rgba(0,212,255,.08);
  border-color: rgba(0,212,255,.38);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,212,255,.12);
}
.carousel-cta-icon { font-size: 2rem; }
.carousel-cta-label { font-size: .75rem; color: var(--text-2); font-weight: 400; }

/* ── LIVE COUNT NOS CARDS ────────────────────────── */
.card-live {
  display: flex; align-items: center; gap: 3px;
  font-size: .58rem; color: var(--green);
  font-weight: 700; font-family: var(--font-d);
  margin-top: .1rem; letter-spacing: .02em;
}
.card-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: livePulse 1.8s ease-in-out infinite; flex-shrink: 0;
}
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── IN-VIEW SECTION HIGHLIGHT ───────────────────── */
.np82-in-view .section-title { animation: sectionFadeIn .4s ease; }
@keyframes sectionFadeIn { from { opacity: .6; } to { opacity: 1; } }

/* ── RIPPLE FEEDBACK ─────────────────────────────── */
.np-ripple {
  position: absolute; border-radius: 50%;
  transform: scale(0);
  animation: npRipple .5s linear;
  background: rgba(0,212,255,.2);
  pointer-events: none; z-index: 20;
}
@keyframes npRipple { to { transform: scale(4); opacity: 0; } }

/* ── SKELETON ─────────────────────────────────────── */
.np82-skeleton-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; height: 220px; overflow: hidden; flex: 0 0 180px;
}
.np82-skeleton-thumb {
  height: 135px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-h) 50%, var(--bg-card) 75%);
  background-size: 200% 100%; animation: npShimmer 1.4s infinite;
}
.np82-skeleton-body { padding: 8px 9px; display: flex; flex-direction: column; gap: 6px; }
.np82-skeleton-line {
  height: 10px; border-radius: 6px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-h) 50%, var(--bg-card) 75%);
  background-size: 200% 100%; animation: npShimmer 1.4s infinite;
}
.np82-skeleton-line:nth-child(1) { width: 75%; animation-delay: .1s; }
.np82-skeleton-line:nth-child(2) { width: 50%; animation-delay: .2s; }
.np82-skeleton-line:nth-child(3) { width: 88%; animation-delay: .3s; }
@keyframes npShimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── MOBILE v82 ───────────────────────────────────── */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(170px, 100%), 1fr));
    gap: 12px;
  }
  .game-card { min-height: 200px; }
  .card-thumb { height: 128px !important; }
  .card-play {
    opacity: 1 !important;
    transform: translateY(0) !important;
    font-size: .72rem !important;
    padding: .3rem .8rem !important;
  }
  .card-overlay { opacity: 1 !important; }
  .card-fav { opacity: 1 !important; }
  .card-live { display: none !important; }
  #trendingSection { padding: .9rem 1rem; }
  .carousel-cta-card { min-width: 140px; height: 200px; }
}
@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .card-thumb { height: 112px !important; }
  .card-name  { font-size: .76rem !important; }
  .card-plays { font-size: .59rem !important; }
  .card-play  { font-size: .65rem !important; padding: .25rem .6rem !important; }
}

/* ── FEATURED GRID v82 (destaque melhorado) ──────── */
.featured-grid .game-card:first-child {
  box-shadow: 0 0 0 2px rgba(0,212,255,.18), var(--shadow-hover);
}
.featured-grid .game-card:first-child:hover {
  box-shadow: 0 0 0 2px rgba(0,212,255,.4), 0 20px 56px rgba(0,0,0,.7) !important;
}

/* ── HERO CTA PULSE ───────────────────────────────── */
.btn-primary {
  animation: heroCTAPulse 3.5s ease-in-out infinite;
}
@keyframes heroCTAPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(0,212,255,.22), 0 2px 8px rgba(0,0,0,.3); }
  50%     { box-shadow: 0 4px 38px rgba(0,212,255,.42), 0 2px 8px rgba(0,0,0,.3); }
}
.btn-primary:hover {
  animation: none !important;
}

/* ── CAT BAR HOVER REFINEMENT ─────────────────────── */
.cat-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.3); }

/* ── TOP 10 v82 GLOW ──────────────────────────────── */
.top10-item:nth-child(1) { border-color: rgba(245,197,24,.25); }
.top10-item:nth-child(2) { border-color: rgba(180,180,180,.18); }
.top10-item:nth-child(3) { border-color: rgba(196,131,75,.2);  }

/* ── JOGO DO DIA v82 ──────────────────────────────── */
.jdd-btn { animation: jddPulse 2.8s ease-in-out infinite; }
@keyframes jddPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(0,212,255,.22); }
  50%     { box-shadow: 0 4px 28px rgba(0,212,255,.48); }
}
.jdd-btn:hover { animation: none !important; opacity: .9; transform: translateY(-2px); }


/* ══════════════════════════════════════════════════════════════════════════
   NeonPlay v83 — Infinite Loop Engine  ·  CSS
   Todas as regras isoladas no final — não afeta v82
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Auto-Next Overlay ──────────────────────────────────────────────────── */
.np83-autonext {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 9100;
  width: min(350px, calc(100vw - 2.4rem));
  background: linear-gradient(150deg, #12122a 0%, #1a1a3e 55%, #0f2d50 100%);
  border: 1px solid rgba(147,51,234,.4);
  border-radius: 18px;
  padding: 1.2rem 1.1rem 1rem;
  box-shadow:
    0 12px 50px rgba(0,0,0,.65),
    0 0 0 1px rgba(147,51,234,.1),
    inset 0 1px 0 rgba(255,255,255,.04);
  opacity: 0;
  transform: translateY(18px) scale(.97);
  transition: opacity .32s cubic-bezier(.4,0,.2,1), transform .32s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.np83-autonext.np83-autonext-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.np83-an-close {
  position: absolute; top: .75rem; right: .8rem;
  background: rgba(255,255,255,.08); border: none; border-radius: 50%;
  width: 28px; height: 28px; color: #fff; cursor: pointer;
  font-size: .75rem; display: flex; align-items: center; justify-content: center;
  transition: background .18s, transform .18s;
}
.np83-an-close:hover { background: rgba(255,255,255,.18); transform: scale(1.1); }
.np83-an-header {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: .9rem; padding-right: 1.8rem;
}
.np83-an-icon { font-size: 1.7rem; flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(147,51,234,.5)); }
.np83-an-title { font-weight: 800; font-size: .92rem; color: #e9eaf0; line-height: 1.2; }
.np83-an-sub   { font-size: .72rem; color: rgba(226,232,240,.45); margin-top: .2rem; }
.np83-an-sub span { color: #a78bfa; font-weight: 700; }
.np83-an-card  { margin-bottom: .9rem; }
.np83-an-actions { display: flex; gap: .55rem; }
.np83-btn-play {
  flex: 1.2; background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: #fff; border: none; border-radius: 10px;
  padding: .6rem .9rem; font-weight: 800; font-size: .84rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(147,51,234,.35);
  transition: opacity .18s, transform .12s;
}
.np83-btn-play:hover { opacity: .9; transform: translateY(-1px); }
.np83-btn-play:active { transform: scale(.97); }
.np83-btn-more {
  flex: 1; background: rgba(255,255,255,.07); color: #c4c9db;
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  padding: .6rem .9rem; font-size: .84rem; cursor: pointer;
  transition: background .18s;
}
.np83-btn-more:hover { background: rgba(255,255,255,.13); }
.np83-an-bar {
  height: 3px; background: rgba(255,255,255,.07); border-radius: 2px;
  margin-top: .85rem; overflow: hidden;
}
.np83-an-progress {
  height: 100%; width: 100%; border-radius: 2px;
  background: linear-gradient(90deg, #9333ea, #ec4899, #3b82f6);
}

/* ── Continue Explorando ────────────────────────────────────────────────── */
.np83-continue-section {
  padding: 1.4rem 0 1.6rem;
  background: rgba(255,255,255,.018);
  border-top: 1px solid rgba(255,255,255,.055);
  margin-top: 1.6rem;
}
.np83-cf-carousel {
  scrollbar-width: thin;
  scrollbar-color: rgba(147,51,234,.35) transparent;
}
.np83-cf-carousel::-webkit-scrollbar { height: 4px; }
.np83-cf-carousel::-webkit-scrollbar-thumb { background: rgba(147,51,234,.35); border-radius: 2px; }

/* ── Fast Nav Bar ───────────────────────────────────────────────────────── */
.np83-fastnav {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; padding: .45rem .6rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; margin-bottom: .5rem;
}
.np83-fnav-btn {
  background: rgba(147,51,234,.18); border: 1px solid rgba(147,51,234,.25);
  color: #c4b5fd; border-radius: 7px; padding: .3rem .7rem;
  font-size: .74rem; font-weight: 700; cursor: pointer; white-space: nowrap;
  max-width: 38%; overflow: hidden; text-overflow: ellipsis;
  transition: background .18s, color .18s;
}
.np83-fnav-btn:hover { background: rgba(147,51,234,.32); color: #ede9fe; }
.np83-fnav-next { background: rgba(236,72,153,.18); border-color: rgba(236,72,153,.25); color: #f9a8d4; }
.np83-fnav-next:hover { background: rgba(236,72,153,.32); color: #fce7f3; }
.np83-fnav-label {
  flex: 1; text-align: center; font-size: .75rem; font-weight: 700; color: #94a3b8;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  padding: 0 .3rem;
}

/* ── Streak Badge ───────────────────────────────────────────────────────── */
.np83-streak {
  position: fixed;
  top: 5.2rem; left: 50%;
  transform: translateX(-50%) translateY(-16px);
  z-index: 9600;
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
  border-radius: 32px;
  padding: .65rem 1.4rem;
  box-shadow: 0 6px 28px rgba(147,51,234,.45), 0 0 0 2px rgba(255,255,255,.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  white-space: nowrap;
}
.np83-streak.np83-streak-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.np83-streak-inner {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
}
.np83-streak-inner b   { font-size: .92rem; font-weight: 800; color: #fff; }
.np83-streak-inner span { font-size: .72rem; color: rgba(255,255,255,.8); }

/* ── Session Recs Panel ─────────────────────────────────────────────────── */
.np83-srecs {
  position: fixed;
  bottom: 1.6rem; left: 1.6rem;
  z-index: 8900;
  width: min(380px, calc(100vw - 2.4rem));
  background: linear-gradient(150deg, #12122a 0%, #1a1a3e 100%);
  border: 1px solid rgba(147,51,234,.3);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(147,51,234,.08);
  opacity: 0;
  transform: translateY(22px) scale(.97);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.np83-srecs.np83-srecs-in {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}
.np83-srecs-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .85rem;
  font-weight: 800; font-size: .9rem; color: #e2e8f0;
}
.np83-srecs-close {
  background: rgba(255,255,255,.08); border: none; border-radius: 50%;
  width: 26px; height: 26px; color: #fff; cursor: pointer; font-size: .72rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.np83-srecs-close:hover { background: rgba(255,255,255,.18); }
.np83-srecs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .5rem; }

/* ── Swipe Hint ─────────────────────────────────────────────────────────── */
.np83-swipe-hint {
  position: absolute; bottom: .9rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.72);
  color: rgba(255,255,255,.9);
  font-size: .72rem; border-radius: 20px; padding: .32rem 1rem;
  pointer-events: none; opacity: 0;
  transition: opacity .4s ease; z-index: 10; white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ── Ripple 2.0 ─────────────────────────────────────────────────────────── */
/* (CSS injetado via JS inline para evitar duplicação com v82) */

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .np83-autonext { bottom: .8rem; right: .8rem; left: .8rem; width: auto; }
  .np83-srecs    { bottom: .8rem; left: .8rem; right: .8rem; width: auto; }
  .np83-streak   { top: 4.5rem; max-width: calc(100vw - 2rem); }
  .np83-fastnav  { font-size: .7rem; }
  .np83-fnav-btn { padding: .28rem .5rem; font-size: .7rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   NeonPlay v84 — ADDICTION & GAMIFICATION ENGINE CSS
   Isolado no final — não interfere com nada do v83
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Variáveis v84 ── */
:root {
  --np84-xp:     #a78bfa;  /* roxo suave */
  --np84-xp2:    #7c3aed;
  --np84-gold:   #fbbf24;
  --np84-green:  #34d399;
  --np84-fire:   #f97316;
  --np84-bg:     rgba(15,15,30,.97);
  --np84-card:   rgba(255,255,255,.05);
  --np84-border: rgba(255,255,255,.09);
  --np84-r:      10px;
  --np84-tr:     .22s ease;
}

/* ── XP BAR (strip abaixo do header) ── */
.np84-xpbar-wrap {
  background: rgba(0,0,0,.45);
  border-bottom: 1px solid var(--np84-border);
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(8px);
}
.np84-xpbar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.np84-profile-btn {
  background: transparent;
  border: 1px solid var(--np84-border);
  border-radius: 20px;
  color: var(--np84-xp);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--np84-tr), border-color var(--np84-tr);
}
.np84-profile-btn:hover {
  background: rgba(167,139,250,.12);
  border-color: var(--np84-xp);
}
.np84-lv-label {
  font-size: .72rem;
  font-weight: 800;
  color: var(--np84-gold);
}
.np84-xpbar {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
  min-width: 60px;
}
.np84-xpbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--np84-xp), var(--np84-xp2));
  border-radius: 4px;
  transition: width .6s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 0 8px var(--np84-xp);
}
.np84-xp-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

/* ── Gamification Strip ── */
.np84-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 6px 0 4px;
  border-bottom: 1px solid var(--np84-border);
}
.np84-strip-item {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 4px;
}
.np84-streak-days { color: var(--np84-fire); font-weight: 700; }
.np84-time-today  { color: rgba(255,255,255,.5); }

/* ── Level Badge ── */
.np84-level-badge {
  background: linear-gradient(135deg, var(--np84-xp2), var(--np84-xp));
  border-radius: 20px;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 2px 10px;
  letter-spacing: .02em;
}

/* ── Continue Banner ── */
.np84-continue-banner {
  background: linear-gradient(90deg, rgba(124,58,237,.18), rgba(167,139,250,.08));
  border-bottom: 1px solid rgba(167,139,250,.18);
  padding: 8px 0;
}
.np84-cb-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.np84-cb-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--np84-xp);
  white-space: nowrap;
}
.np84-cb-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--np84-border);
  border-radius: 8px;
  padding: 5px 12px 5px 7px;
  text-decoration: none;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  transition: background var(--np84-tr), transform var(--np84-tr);
}
.np84-cb-card:hover { background: rgba(167,139,250,.18); transform: translateX(3px); }
.np84-cb-thumb { width: 42px; height: 34px; border-radius: 6px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.07); }
.np84-cb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.np84-cb-emoji { font-size: 1.3rem; }
.np84-cb-name  { flex: 1; }
.np84-cb-arrow { color: var(--np84-xp); font-size: .9rem; }

/* ── Daily Missions Block ── */
.np84-missions-block {
  background: var(--np84-card);
  border: 1px solid var(--np84-border);
  border-radius: var(--np84-r);
  padding: 14px 16px;
  margin: 12px 0;
}
.np84-missions-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.np84-missions-title { font-size: .9rem; font-weight: 800; color: var(--np84-gold); }
.np84-missions-count { font-size: .78rem; color: rgba(255,255,255,.5); }
.np84-mission {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--np84-border);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 7px;
  transition: border-color var(--np84-tr), background var(--np84-tr);
}
.np84-mission--done {
  border-color: rgba(52,211,153,.3);
  background: rgba(52,211,153,.04);
}
.np84-mission-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 6px;
}
.np84-mission-xp  { font-size: .75rem; font-weight: 700; color: var(--np84-xp); }
.np84-mission-prog { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 4px; }
.np84-missions-all { font-size: .82rem; color: var(--np84-green); font-weight: 700; text-align: center; padding-top: 8px; }

/* ── Progress Bars ── */
.np84-bar-wrap {
  height: 5px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  overflow: hidden;
}
.np84-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--np84-xp), var(--np84-xp2));
  border-radius: 3px;
  transition: width .5s cubic-bezier(.22,1,.36,1);
}
.np84-bar-sm { height: 4px; }
.np84-bar-m  { background: linear-gradient(90deg, var(--np84-gold), var(--np84-fire)); }

/* ── Reward Popup ── */
.np84-reward {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  opacity: 0;
  background: rgba(15,15,30,.95);
  border: 1px solid rgba(167,139,250,.35);
  border-radius: 30px;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  padding: 9px 22px;
  pointer-events: none;
  z-index: 9999;
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(124,58,237,.3);
}
.np84-reward--in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.np84-reward--xp       { border-color: rgba(167,139,250,.45); }
.np84-reward--levelup  { border-color: rgba(251,191,36,.55); background: rgba(40,20,5,.95); }
.np84-reward--mission  { border-color: rgba(52,211,153,.45); }
.np84-reward--streak   { border-color: rgba(249,115,22,.45); }

/* ── Level Up Popup ── */
.np84-levelup-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  pointer-events: none;
}
.np84-lu-inner {
  background: radial-gradient(circle at 50% 30%, rgba(251,191,36,.15), rgba(15,15,30,.98));
  border: 2px solid rgba(251,191,36,.4);
  border-radius: 20px;
  text-align: center;
  padding: 32px 44px;
  transform: scale(.7);
  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  box-shadow: 0 0 60px rgba(251,191,36,.2);
}
.np84-lu-show .np84-lu-inner {
  transform: scale(1);
  opacity: 1;
}
.np84-lu-emoji { font-size: 2.8rem; }
.np84-lu-level { font-size: 1.5rem; font-weight: 900; color: var(--np84-gold); margin: 6px 0 2px; }
.np84-lu-name  { font-size: 1rem; color: rgba(255,255,255,.75); }
.np84-lu-msg   { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: 6px; }

/* ── Mini Profile Panel ── */
.np84-profile-panel {
  position: fixed;
  top: 56px;
  right: 12px;
  width: 280px;
  background: var(--np84-bg);
  border: 1px solid rgba(167,139,250,.2);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  z-index: 8000;
  padding: 16px;
  transform: translateY(-12px) scale(.96);
  opacity: 0;
  transition: transform var(--np84-tr), opacity var(--np84-tr);
}
.np84-panel-in {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.np84-profile-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.np84-profile-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--np84-xp2), var(--np84-xp));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.np84-profile-name  { font-size: .85rem; font-weight: 700; }
.np84-profile-level { font-size: .75rem; color: var(--np84-xp); }
.np84-profile-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color var(--np84-tr);
}
.np84-profile-close:hover { color: #fff; }
.np84-profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.np84-stat { text-align: center; }
.np84-stat-v { display: block; font-size: 1rem; font-weight: 800; color: var(--np84-xp); }
.np84-stat-l { font-size: .66rem; color: rgba(255,255,255,.4); }
.np84-profile-xp-row {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 5px;
}
.np84-profile-extra {
  font-size: .77rem;
  color: rgba(255,255,255,.5);
  margin-top: 7px;
}

/* ── Discovery Badge ── */
.np84-new-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(124,58,237,.85);
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(4px);
  line-height: 1.4;
}

/* ── Micro Game Loop Panel ── */
.np84-micro-loop {
  background: var(--np84-card);
  border: 1px solid var(--np84-border);
  border-radius: var(--np84-r);
  padding: 14px 16px;
  margin: 16px auto;
  max-width: 520px;
}
.np84-loop-hd {
  font-size: .85rem;
  font-weight: 800;
  color: var(--np84-xp);
  margin-bottom: 10px;
}
.np84-loop-xp-row {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 5px;
}
.np84-loop-xp-row .np84-bar-wrap { margin-top: 5px; }
.np84-loop-mission {
  margin: 10px 0 8px;
  font-size: .8rem;
}
.np84-loop-m-text  { display: block; margin-bottom: 5px; color: rgba(255,255,255,.8); }
.np84-loop-m-prog  { font-size: .72rem; color: rgba(255,255,255,.4); display: block; margin-top: 4px; }
.np84-loop-next    { margin-top: 10px; }
.np84-loop-next-lbl { font-size: .75rem; color: rgba(255,255,255,.4); display: block; margin-bottom: 5px; }
.np84-loop-next-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(167,139,250,.12);
  border: 1px solid rgba(167,139,250,.25);
  border-radius: 8px;
  padding: 7px 12px;
  text-decoration: none;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  transition: background var(--np84-tr), transform var(--np84-tr);
}
.np84-loop-next-btn img { width: 30px; height: 24px; object-fit: cover; border-radius: 4px; }
.np84-loop-next-btn:hover { background: rgba(167,139,250,.22); transform: translateX(4px); }
.np84-loop-arrow { margin-left: auto; color: var(--np84-xp); }
.np84-loop-time  { margin-top: 8px; font-size: .74rem; color: rgba(255,255,255,.35); }

/* ── Mobile tweaks ── */
@media (max-width: 600px) {
  .np84-xp-label { display: none; }
  .np84-profile-panel { right: 0; left: 0; width: auto; border-radius: 0 0 14px 14px; top: 50px; }
  .np84-reward { font-size: .82rem; padding: 8px 18px; }
  .np84-missions-block { margin: 8px 0; }
  .np84-strip { gap: 8px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   NeonPlay v86 — Social Presence Engine — CSS
   Adicionado ao final de style.css (não modifica nada acima)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Variáveis v86 ── */
:root {
  --np86-green: #00e676;
  --np86-green2: #00c853;
  --np86-chat-bg: rgba(10,10,20,.92);
  --np86-tr: .25s ease;
}

/* ── S03 — Players Badge ── */
.np86-players-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,230,118,.1);
  border: 1px solid rgba(0,230,118,.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--np86-green);
  margin: .6rem 0 .8rem;
}
.np86-players-badge strong { color: #fff; font-size: .9rem; }

/* ── S09 — Online Dot (cards) ── */
.np86-online-dot {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 9px;
  height: 9px;
  background: var(--np86-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,230,118,.6);
  animation: np86pulse 2s infinite;
  z-index: 3;
}
@keyframes np86pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,230,118,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(0,230,118,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,230,118,0); }
}

/* ── Generic dot (reutilizado em chat hd + badge) ── */
.np86-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--np86-green);
  border-radius: 50%;
  animation: np86pulse 2s infinite;
  flex-shrink: 0;
}
.np86-dot--sm { width: 6px; height: 6px; }

/* ── S04 — Ghost Chat ── */
.np86-chat {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 240px;
  background: var(--np86-chat-bg);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 9000;
  overflow: hidden;
  transform: translateY(20px) scale(.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--np86-tr), transform var(--np86-tr);
}
.np86-chat--visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.np86-chat--hidden { display: none; }
.np86-chat-hd {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px 7px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}
.np86-chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  transition: color var(--np86-tr);
}
.np86-chat-close:hover { color: #fff; }
.np86-chat-body {
  max-height: 180px;
  overflow-y: auto;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}
.np86-chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .35s, transform .35s;
}
.np86-chat-msg--in { opacity: 1; transform: none; }
.np86-chat-msg--out { opacity: 0; transform: translateX(-10px); }
.np86-chat-avatar { font-size: 1.1rem; flex-shrink: 0; line-height: 1.2; }
.np86-chat-name {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--np86-green);
  margin-bottom: 2px;
}
.np86-chat-text { font-size: .75rem; color: rgba(255,255,255,.8); line-height: 1.3; }
.np86-chat-hint {
  padding: 5px 12px 8px;
  font-size: .65rem;
  color: rgba(255,255,255,.25);
  text-align: center;
}

/* ── S05 — Activity Toasts ── */
.np86-toast-container {
  position: fixed;
  bottom: 24px;
  left: 16px;
  z-index: 8800;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: 280px;
}
.np86-toast {
  background: rgba(14,14,28,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--np86-green);
  border-radius: 9px;
  padding: 9px 14px;
  font-size: .79rem;
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transform: translateX(-110%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s;
}
.np86-toast--in {
  transform: none;
  opacity: 1;
}
.np86-toast--out {
  transform: translateX(-110%);
  opacity: 0;
}

/* ── S06 — Friends Block ── */
.np86-friends-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 1rem 0;
}
.np86-friends-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.np86-friends-avatars { display: flex; gap: -4px; }
.np86-friend-av {
  font-size: 1.2rem;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0,0,0,.3);
  margin-right: -6px;
}
.np86-friends-text { font-size: .8rem; color: rgba(255,255,255,.7); }
.np86-friends-text strong { color: #fff; }

/* ── S06 — Social Recs ── */
.np86-social-recs { margin: 2rem 0; }
.np86-sr-grid { margin-top: .8rem; }

/* ── S07 — Demand Badge ── */
.np86-demand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,87,34,.12);
  border: 1px solid rgba(255,87,34,.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 700;
  color: #ff7043;
  margin: .5rem 0 .8rem;
  animation: np86demandpulse 3s ease-in-out infinite;
}
@keyframes np86demandpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,87,34,.3); }
  50% { box-shadow: 0 0 0 6px rgba(255,87,34,0); }
}
.np86-demand-count {
  font-size: .72rem;
  background: rgba(255,87,34,.15);
  border-radius: 10px;
  padding: 2px 8px;
  color: #ffab91;
}

/* ── S07 — Card demand badge ── */
.np86-card-demand {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  background: rgba(255,64,0,.85);
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  text-align: center;
  padding: 3px 6px;
  pointer-events: none;
  letter-spacing: .02em;
}

/* ── S08 — Match Feeling Overlay ── */
.np86-match-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5,5,15,.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.np86-match-overlay.np86-match--visible {
  opacity: 1;
  pointer-events: auto;
}
.np86-match-inner {
  text-align: center;
  padding: 2rem;
}
.np86-match-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(0,230,118,.2);
  border-top-color: var(--np86-green);
  border-radius: 50%;
  animation: np86spin 0.7s linear infinite;
  margin: 0 auto 1.2rem;
}
@keyframes np86spin {
  to { transform: rotate(360deg); }
}
.np86-match-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .4rem;
}
.np86-match-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .6rem;
  min-height: 1.2em;
  transition: opacity .2s;
}
.np86-match-count {
  font-size: .9rem;
  font-weight: 700;
  color: var(--np86-green);
  min-height: 1.3em;
}

/* ── S02 — Ticker item ── */
.np86-ticker-item {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .np86-chat { right: 8px; width: 210px; bottom: 70px; }
  .np86-toast-container { left: 8px; right: 8px; max-width: none; }
  .np86-toast { font-size: .74rem; padding: 8px 12px; }
  .np86-players-badge { font-size: .76rem; padding: 5px 11px; }
  .np86-match-inner { padding: 1.5rem 1rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   NeonPlay v87 — Adaptive AI Experience Engine — CSS
   ══════════════════════════════════════════════════════════════════════════ */

/* ── A09 — Contextual Banner ── */
.np87-context-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(167,139,250,.1);
  border: 1px solid rgba(167,139,250,.25);
  border-left: 3px solid #a78bfa;
  border-radius: 10px;
  padding: 10px 16px;
  margin: 1rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  animation: np87bannerIn .4s cubic-bezier(.22,1,.36,1);
}
@keyframes np87bannerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.np87-cb-msg { flex: 1; }
.np87-cb-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  font-size: .9rem;
  padding: 0 4px;
  transition: color .2s;
  flex-shrink: 0;
}
.np87-cb-close:hover { color: #fff; }

/* ── A07 — Game Rec Block ── */
.np87-game-rec {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px;
  margin: 1rem 0;
}
.np87-gr-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  font-weight: 600;
}
.np87-gr-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border-radius: 9px;
  padding: 8px;
  text-decoration: none;
  color: #fff;
  transition: background .2s, transform .2s;
  border: 1px solid rgba(255,255,255,.07);
}
.np87-gr-card:hover { background: rgba(255,255,255,.08); transform: translateX(4px); }
.np87-gr-card .gc-thumb {
  width: 60px;
  height: 46px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.np87-gr-card .gc-no-thumb {
  width: 60px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,.05);
  border-radius: 6px;
  flex-shrink: 0;
}
.np87-gr-card .gc-name { font-weight: 700; font-size: .88rem; margin-bottom: 3px; }
.np87-gr-card .gc-meta { font-size: .73rem; color: rgba(255,255,255,.4); display: flex; gap: 8px; }

/* ── A10 — UI Energy Modes ── */
.np87-calm .hero-glow,
.np87-calm .ticker-dot { animation-duration: 3s !important; }
.np87-calm .np84-reward { transition-duration: .6s !important; }

.np87-intense .hero-glow  { animation-duration: 1.5s !important; opacity: .9 !important; }
.np87-intense .np86-online-dot { animation-duration: 1s !important; }
.np87-intense .np86-demand-badge { animation-duration: 1.5s !important; }

/* ── Smooth hero copy transition (A09) ── */
.hero-sub { transition: opacity .4s ease; }

/* ══════════════════════════════════════════════════════════════
   NeonPlay v88 — Monetization & Optimization Engine styles
   ══════════════════════════════════════════════════════════════ */

/* ── Exit Intent Panel ── */
.np88-exit-panel {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.np88-exit-panel.np88-exit--visible {
  opacity: 1;
  pointer-events: auto;
}
.np88-exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}
.np88-exit-inner {
  position: relative;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px 28px 24px;
  max-width: 360px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  transform: translateY(0);
  transition: transform .35s ease;
}
.np88-exit-panel:not(.np88-exit--visible) .np88-exit-inner {
  transform: translateY(20px);
}
.np88-exit-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  color: rgba(255,255,255,.4);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.np88-exit-close:hover { color: #fff; }
.np88-exit-fire { font-size: 2.4rem; margin-bottom: 8px; }
.np88-exit-title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.np88-exit-sub {
  margin: 0 0 18px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.np88-exit-game {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: #fff;
  transition: background .2s, transform .2s;
}
.np88-exit-game:hover {
  background: rgba(255,255,255,.1);
  transform: translateX(2px);
}
.np88-exit-game img {
  width: 48px; height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.np88-exit-emoji-game {
  width: 48px; height: 48px;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  flex-shrink: 0;
}
.np88-exit-game-info { flex: 1; text-align: left; }
.np88-exit-game-info strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.np88-exit-game-info small { font-size: .75rem; color: rgba(255,255,255,.45); }
.np88-exit-arrow {
  font-size: 1.2rem;
  color: rgba(255,255,255,.35);
  transition: color .2s, transform .2s;
}
.np88-exit-game:hover .np88-exit-arrow {
  color: #fff;
  transform: translateX(3px);
}

/* ── Re-engagement Hook ── */
.np88-reeng-hook {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9990;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  max-width: 480px;
  width: calc(100% - 32px);
}
.np88-reeng-hook.np88-rh--visible {
  transform: translateX(-50%) translateY(0);
}
.np88-rh-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.np88-rh-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  flex-shrink: 0;
}
.np88-rh-btn {
  flex: 1;
  background: linear-gradient(135deg,#6c63ff,#f72585);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np88-rh-btn:hover { opacity: .88; transform: scale(1.02); }
.np88-rh-close {
  background: none; border: none;
  color: rgba(255,255,255,.35);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: color .2s;
}
.np88-rh-close:hover { color: #fff; }

/* ── Debug Dashboard ── */
.np88-debug {
  position: fixed;
  top: 12px; right: 12px;
  width: min(480px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  background: #0d0d1a;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  z-index: 99999;
  font-size: .75rem;
  color: #ccc;
  box-shadow: 0 8px 40px rgba(0,0,0,.7);
}
.np88-debug-hd {
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: #fff;
}
.np88-debug-body {
  padding: 10px 14px;
}
.np88-debug-body pre {
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  padding: 8px;
  font-size: .7rem;
  overflow-x: auto;
  color: #a0f0a0;
  margin: 6px 0 0;
}
.np88-debug-body details { margin-bottom: 8px; }
.np88-debug-body summary {
  cursor: pointer;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 4px 0;
  user-select: none;
}
.np88-debug-body summary:hover { color: #fff; }

/* ── A/B Card variant B ── */
.np88-card-b .game-card .card-meta .card-plays::before { content: '⭐ '; }
.np88-card-b .game-card .card-rating { display: none; }

/* ══════════════════════════════════════════════════════════════
   NeonPlay v90 — Auto Preview Engine styles
   GPU-only: apenas transform + opacity (zero reflow)
   ══════════════════════════════════════════════════════════════ */

/* ── P02 — Card Expansion ── */
.game-card {
  will-change: transform; /* v102: box-shadow removido — não é propriedade compositable */
}
.game-card.np90-card-active {
  transform: translateY(-8px) scale(1.07) !important;
  box-shadow:
    0 12px 40px rgba(0,0,0,.55),
    0 0 0 1px rgba(0,212,255,.25),
    0 0 28px rgba(0,212,255,.15) !important;
  border-color: rgba(0,212,255,.3) !important;
  z-index: 200 !important;
  transition: transform .22s cubic-bezier(.22,1,.36,1),
              box-shadow .22s ease,
              border-color .22s ease !important;
}

/* ── P07 — Focus Dimmer ── */
.game-card.np90-card-dim {
  opacity: .48;
  transform: scale(0.97) !important;
  transition: opacity .2s ease, transform .2s ease !important;
}

/* ── P04 — Intersection Spotlight pulse ── */
@keyframes np90Spotlight {
  0%   { box-shadow: 0 0 0 0 rgba(0,212,255,.0); }
  40%  { box-shadow: 0 0 0 6px rgba(0,212,255,.28); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,255,.0); }
}
.game-card.np90-spotlight {
  animation: np90Spotlight .7s ease forwards !important;
}

/* ── P08 — Enhanced gradient overlay no card-thumb ── */
.card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.18) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: .6;
  transition: opacity .25s ease;
}
.game-card:hover .card-thumb::before,
.game-card.np90-card-active .card-thumb::before {
  opacity: 1;
}

/* ── P01 — Preview Panel ── */
.np90-preview-panel {
  position: absolute;   /* será sobrescrito por JS com left/top */
  z-index: 9800;
  width: 260px;
  background: #12121f;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,.7),
    0 0 0 1px rgba(0,212,255,.1);
  opacity: 0;
  transform: translateY(10px) scale(.97);
  transition:
    opacity .22s ease,
    transform .22s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
  /* Garante que fica sobre tudo */
  isolation: isolate;
}
.np90-preview-panel.np90-pp--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.np90-preview-panel.np90-pp--above {
  transform-origin: bottom center;
}
.np90-preview-panel.np90-pp--above:not(.np90-pp--visible) {
  transform: translateY(-10px) scale(.97);
}

/* Imagem do painel */
.np90-pp-img-wrap {
  position: relative;
  height: 130px;
  overflow: hidden;
  background: #1a1a2e;
}
.np90-pp-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.np90-preview-panel:hover .np90-pp-thumb {
  transform: scale(1.05);
}
.np90-pp-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.np90-pp-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,31,.9) 0%, transparent 55%);
  pointer-events: none;
}
.np90-pp-badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.np90-pp-badge--hot {
  background: linear-gradient(135deg,#f72585,#b5179e);
  color: #fff;
}

/* Corpo do painel */
.np90-pp-body {
  padding: 10px 14px 14px;
}
.np90-pp-title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np90-pp-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.np90-pp-rating { color: #ffd60a; }
.np90-pp-cat    { color: rgba(255,255,255,.55); }
.np90-pp-plays  { color: rgba(255,255,255,.4); }

/* CTA do painel */
.np90-pp-cta {
  display: block;
  width: 100%;
  padding: 8px 0;
  background: linear-gradient(135deg,#6c63ff,#f72585);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  transition: opacity .15s, transform .15s;
  box-sizing: border-box;
}
.np90-pp-cta:hover {
  opacity: .88;
  transform: scale(1.02);
}
.np90-pp-cta:active {
  transform: scale(.98);
}

/* ── Mobile: overlay sempre visível no card ativo ── */
@media (pointer: coarse) {
  .game-card.np90-card-active .card-overlay {
    opacity: 1 !important;
  }
  .game-card.np90-card-active .card-play {
    transform: translateY(0) !important;
  }
  /* No mobile o painel fica fixo na tela, não flutua */
  .np90-preview-panel {
    position: fixed !important;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(20px) scale(.97) !important;
    top: auto !important;
    width: calc(100vw - 32px) !important;
    max-width: 380px;
  }
  .np90-preview-panel.np90-pp--visible {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }
}

/* ── Redução de movimento (acessibilidade) ── */
@media (prefers-reduced-motion: reduce) {
  .np90-preview-panel,
  .game-card.np90-card-active,
  .game-card.np90-card-dim {
    transition: none !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   NeonPlay v91 — CINEMATIC FRANCHISE ENGINE CSS
   ═══════════════════════════════════════════════════════════════════════ */

/* ── CSS Vars ── */
:root {
  --np91-accent-rgb: 108,99,255;
  --np91-transition: 280ms cubic-bezier(.4,0,.2,1);
  --np91-glow: 0 0 32px rgba(var(--np91-accent-rgb),.22);
}

/* ── C08: Scroll Storytelling ── */
.np91-reveal-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 550ms ease, transform 550ms ease;
}
.np91-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── C03/C04: Hero Cinemático ── */
.np91-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1; /* HERO-FIX: elevado de 0 → 1 para ficar acima de ::before mas abaixo de hero-inner (z-index:2) */
  pointer-events: none;
  overflow: hidden;
  isolation: isolate; /* HERO-FIX: cria stacking context próprio — impede que filter/blur filhos vazem para o hero raiz */
}
.np91-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 500ms ease;
  filter: blur(2px) brightness(.38) saturate(1.4);
  transform: scale(1.04);
  will-change: opacity; /* v102: background-image removido — não é compositable */
  /* HERO-FIX: filter cria stacking context — contido dentro do isolation:isolate do pai */
}
.np91-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9,9,18,.96) 0%,
    rgba(9,9,18,.65) 55%,
    rgba(9,9,18,.18) 100%
  );
}
.np91-hero-spotlight {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  padding: 0 2.5rem;
  z-index: 2;
  pointer-events: none;
  width: min(480px, 50%);
}
.np91-hero-franchise {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(var(--np91-accent-rgb),1);
  margin-bottom: .45rem;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
}
.np91-hero-game-label {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .35rem;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
}
.np91-hero-game-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  margin-bottom: .8rem;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
}
.np91-hero-play-btn {
  display: inline-block;
  padding: .42rem 1.1rem;
  border-radius: 6px;
  background: rgba(var(--np91-accent-rgb),.85);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  pointer-events: all;
  transition: opacity 300ms ease, background var(--np91-transition), transform var(--np91-transition);
  opacity: 0;
}
.np91-hero-play-btn:hover {
  background: rgba(var(--np91-accent-rgb),1);
  transform: translateY(-1px);
}
.np91-hero-dots {
  display: flex;
  gap: .38rem;
  margin-top: .75rem;
  pointer-events: all;
}
.np91-hero-dot {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.28);
  border: none;
  cursor: pointer;
  transition: background var(--np91-transition), width var(--np91-transition);
  padding: 0;
}
.np91-hero-dot--active {
  background: rgba(var(--np91-accent-rgb),1);
  width: 40px;
}

/* ── C02: Universos Section ── */
.np91-universos-section {
  margin: 2.5rem 0 0;
}
.np91-universe-row {
  margin-bottom: 2.2rem;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 32px rgba(0,0,0,.28);
}
.np91-universe-header {
  padding: 1.4rem 1.6rem 1.2rem;
  position: relative;
  overflow: hidden;
}
.np91-universe-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}
.np91-universe-header-inner {
  position: relative;
  z-index: 1;
}
.np91-universe-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .3rem;
  line-height: 1.2;
}
.np91-universe-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin: 0 0 .75rem;
  line-height: 1.5;
}
.np91-universe-cta {
  display: inline-block;
  padding: .32rem .9rem;
  border-radius: 20px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background var(--np91-transition);
}
.np91-universe-cta:hover {
  background: rgba(255,255,255,.3);
}
.np91-universe-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.np91-universe-scroll-wrap::-webkit-scrollbar { display: none; }
.np91-universe-scroll {
  display: flex;
  gap: .6rem;
  padding: .9rem 1rem 1rem;
  min-width: max-content;
}

/* Universe cards */
.np91-universe-card {
  flex: 0 0 150px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3,#1a1a2e);
  transition: transform var(--np91-transition), box-shadow var(--np91-transition);
  will-change: transform;
}
.np91-universe-card:hover,
.np91-universe-card:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--np91-glow);
  outline: none;
}
.np91-uc-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.np91-uc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.np91-universe-card:hover .np91-uc-thumb img {
  transform: scale(1.08);
}
.np91-uc-fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 2rem;
  background: rgba(var(--np91-accent-rgb),.08);
}
.np91-uc-grad {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
}
.np91-uc-overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--np91-transition);
  background: rgba(0,0,0,.4);
}
.np91-universe-card:hover .np91-uc-overlay,
.np91-universe-card:focus-visible .np91-uc-overlay { opacity: 1; }
.np91-uc-play {
  background: rgba(var(--np91-accent-rgb),.9);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
}
.np91-uc-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .45rem .5rem .4rem;
  z-index: 2;
}
.np91-uc-name {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np91-uc-meta {
  font-size: .64rem;
  color: rgba(255,255,255,.6);
  margin-top: .15rem;
}

/* ── C05: Continue Watching Upgrade ── */
.np91-continue-card .card-overlay {
  background: rgba(0,0,0,.5);
}
.np91-continue-btn {
  background: rgba(var(--np91-accent-rgb),.9);
  color: #fff;
  padding: .32rem .9rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.np91-progress-wrap {
  padding: .3rem 0 .4rem;
}
.np91-progress-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
  margin-bottom: .25rem;
}
.np91-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(var(--np91-accent-rgb),1) 0%, rgba(var(--np91-accent-rgb),.6) 100%);
  border-radius: 2px;
  transition: width 600ms ease;
}
.np91-progress-label {
  font-size: .63rem;
  color: rgba(var(--np91-accent-rgb),1);
  font-weight: 600;
}

/* ── C07: "Porque Gostou" ── */
.np91-porque-section {
  margin-top: 1.5rem;
}
.np91-porque-section .section-title em.np91-porque-game {
  font-style: normal;
  background: var(--grad,linear-gradient(135deg,#00eeff,#a855f7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.np91-match-tag {
  display: inline-block;
  font-size: .63rem;
  font-weight: 600;
  color: rgba(var(--np91-accent-rgb),1);
  padding: .15rem .5rem;
  border-radius: 10px;
  background: rgba(var(--np91-accent-rgb),.1);
  margin-top: .3rem;
}
.np91-porque-card {
  flex: 0 0 160px;
}
.np91-pq-fallback {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  font-size: 2.5rem;
}

/* ── C06: Binge Mode ── */
#np91BingeMount {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9990;
}
.np91-binge-panel {
  background: rgba(12,12,22,.96);
  border: 1px solid rgba(var(--np91-accent-rgb),.3);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  width: 300px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6), var(--np91-glow);
  opacity: 0;
  transform: translateY(16px) scale(.97);
  transition: opacity 320ms ease, transform 320ms ease;
  backdrop-filter: blur(16px);
}
.np91-binge--visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}
.np91-binge-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(var(--np91-accent-rgb),1);
  margin-bottom: .65rem;
}
.np91-binge-game {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
}
.np91-binge-thumb {
  width: 68px;
  height: 52px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
}
.np91-binge-emoji {
  width: 68px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  background: rgba(var(--np91-accent-rgb),.08);
  border-radius: 7px;
  flex-shrink: 0;
}
.np91-binge-name {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .2rem;
}
.np91-binge-meta {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
}
.np91-binge-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: .65rem;
}
.np91-binge-cta {
  flex: 1;
  display: block;
  padding: .42rem .6rem;
  border-radius: 8px;
  background: rgba(var(--np91-accent-rgb),.85);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background var(--np91-transition);
}
.np91-binge-cta:hover { background: rgba(var(--np91-accent-rgb),1); }
.np91-binge-cancel {
  background: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  padding: .4rem .6rem;
  cursor: pointer;
  transition: border-color var(--np91-transition), color var(--np91-transition);
}
.np91-binge-cancel:hover {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
}
.np91-binge-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.np91-binge-bar {
  height: 100%;
  width: 0%;
  background: rgba(var(--np91-accent-rgb),1);
  border-radius: 2px;
  transition: width 900ms linear;
}

/* ── Responsivo ── */
@media (max-width: 600px) {
  .np91-hero-spotlight { width: 85%; padding: 0 1rem; }
  .np91-hero-game-label { font-size: 1rem; }
  .np91-hero-play-btn { font-size: .7rem; padding: .35rem .85rem; }
  .np91-universe-card { flex: 0 0 130px; }
  #np91BingeMount { bottom: .8rem; right: .8rem; left: .8rem; }
  .np91-binge-panel { width: 100%; }
}

/* ── Acessibilidade: redução de movimento ── */
@media (prefers-reduced-motion: reduce) {
  .np91-reveal-init,
  .np91-revealed,
  .np91-hero-bg,
  .np91-binge-panel,
  .np91-universe-card,
  .np91-hero-franchise,
  .np91-hero-game-label,
  .np91-hero-game-sub,
  .np91-hero-play-btn {
    transition: none !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NeonPlay v91 — SUPER PREVIEW EXTRAS (P11 / P12)
   Append-only — não quebra nada existente
   ═══════════════════════════════════════════════════════════════════════════ */

/* Franquia label no painel de preview */
.np90-pp-franchise {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgb(var(--np91-accent-rgb, 108,99,255));
  margin-bottom: .28rem;
  opacity: .9;
}

/* Descrição curta no painel de preview */
.np90-pp-desc {
  font-size: .72rem;
  color: rgba(255,255,255,.56);
  line-height: 1.5;
  margin: .32rem 0 .42rem;
}

/* Badge de popularidade inline na meta row */
.np90-pp-pop {
  font-size: .64rem;
  font-weight: 700;
  color: #ffd200;
  margin-left: .25rem;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NeonPlay v92 — VIDEO EXPERIENCE ENGINE
   Append-only — não toca em nada existente
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── P13: Vídeo inline no card (hover) ───────────────────────────────── */
.np92-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: inherit;
  /* fade-in suave ao aparecer */
  opacity: 0;
  animation: np92-vid-fadein 300ms ease forwards;
  will-change: opacity;
  pointer-events: none;
}

@keyframes np92-vid-fadein {
  to { opacity: 1; }
}

/* ── P13: Vídeo no painel flutuante de preview ───────────────────────── */
.np92-pp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
  will-change: opacity;
}

/* Poster (imagem) por baixo do vídeo — visível enquanto vídeo carrega */
.np92-pp-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: inherit;
}

/* Quando há vídeo no painel, garante aspect-ratio adequado */
.np90-pp-img-wrap.np92-has-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

/* ── Intro cinemática overlay ─────────────────────────────────────────── */
.np92-intro {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 350ms ease;
  will-change: opacity;
}

.np92-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Estado oculto — usa opacity+pointer-events (não display:none, para a
   transição funcionar) */
.np92-intro--hidden {
  opacity: 0;
  pointer-events: none;
}

/* Botão pular */
.np92-intro-skip {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 600;
  padding: .38rem .85rem;
  border-radius: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 200ms ease, color 200ms ease;
  z-index: 10;
}
.np92-intro-skip:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* Barra de progresso da intro */
.np92-intro-bar-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 10;
}
.np92-intro-bar {
  height: 100%;
  width: 0%;
  background: rgba(var(--np91-accent-rgb, 108,99,255), 0.85);
  will-change: auto; /* v102: width não é compositable */
}

/* ── Acessibilidade: prefers-reduced-motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .np92-card-video,
  .np92-intro,
  .np92-intro-bar {
    animation: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NeonPlay v93 — SMART VIDEO LOOP ENGINE
   Append-only — não toca em nada existente
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── P18: Barra de progresso no painel de preview ────────────────────── */
.np93-progress-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .55rem;
}
.np93-prog-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.np93-prog-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg,
    rgb(var(--np91-accent-rgb,108,99,255)) 0%,
    rgba(var(--np91-accent-rgb,108,99,255),.5) 100%);
  will-change: auto; /* v102: width não é compositable */
}
.np93-next-lbl {
  font-size: .62rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── P19: Zoom contínuo no vídeo ativo ───────────────────────────────── */
.np93-vid-zoom {
  animation: np93-zoom-in 8s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: center center;
}
@keyframes np93-zoom-in {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* ── P19: Glow animado no wrapper quando há vídeo ────────────────────── */
.np90-pp-img-wrap.np93-glow {
  box-shadow: 0 0 0 0 rgba(var(--np91-accent-rgb,108,99,255), .0);
  animation: np93-glow-pulse 3s ease-in-out infinite;
  will-change: auto; /* v102: box-shadow não é compositable — will-change aqui é inútil */
}
@keyframes np93-glow-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(var(--np91-accent-rgb,108,99,255), .15); }
  50%       { box-shadow: 0 0 28px rgba(var(--np91-accent-rgb,108,99,255), .38); }
}

/* ── P19: Pulse na troca de jogo ─────────────────────────────────────── */
.np93-pulse {
  animation: np93-swap-pulse 500ms ease-out forwards !important;
}
@keyframes np93-swap-pulse {
  0%   { opacity: .0; transform: scale(.97); }
  60%  { opacity: 1;  transform: scale(1.02); }
  100% { opacity: 1;  transform: scale(1); }
}

/* ── P04 (C03): Hero vídeo background ────────────────────────────────── */
.np93-hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0;             /* começa invisível; fica visível só ao tocar */
  filter: blur(2px) brightness(.28) saturate(1.6);
  transform: scale(1.04);
  transition: opacity 480ms ease;
  z-index: 1;             /* acima de np91-hero-bg (z:0), abaixo do vignette */
  pointer-events: none;
  will-change: opacity;
  animation: np93-hero-slow-zoom 14s ease-in-out infinite alternate;
}
@keyframes np93-hero-slow-zoom {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.10); }
}

/* ── Teaser pós-intro (v93) ──────────────────────────────────────────── */
.np93-intro-teaser {
  position: absolute;
  bottom: 3.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: .55rem .85rem;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 320ms ease, transform 320ms ease;
  z-index: 10;
  max-width: 240px;
}
.np93-intro-teaser--on {
  opacity: 1;
  transform: translateX(0);
}
.np93-intro-teaser img {
  width: 44px;
  height: 33px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.np93-teaser-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.np93-teaser-lbl {
  position: absolute;
  top: -1px;
  left: .7rem;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgb(var(--np91-accent-rgb,108,99,255));
  transform: translateY(-100%);
  padding-bottom: .12rem;
}
.np93-teaser-name {
  font-size: .74rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Responsivo ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .np93-intro-teaser {
    right: .7rem;
    bottom: 2.8rem;
    max-width: calc(100vw - 1.4rem);
  }
}

/* ── Acessibilidade: prefers-reduced-motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .np93-vid-zoom,
  .np90-pp-img-wrap.np93-glow,
  .np93-hero-vid,
  .np93-pulse,
  .np93-intro-teaser {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NeonPlay v94 — VIDEO INTEGRATION LAYER
   Append-only — não toca em nada existente
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Indicador visual de card com vídeo disponível ───────────────────── */
.gc-has-video .card-thumb::after {
  content: '▶';
  position: absolute;
  bottom: .38rem;
  right: .42rem;
  font-size: .62rem;
  width: 1.3rem;
  height: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--np91-accent-rgb, 108,99,255), .82);
  color: #fff;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  opacity: .8;
  transition: opacity 200ms ease;
}
.gc-has-video:hover .card-thumb::after,
.gc-has-video:focus-visible .card-thumb::after {
  opacity: 0; /* esconde quando vídeo está tocando */
}

/* ── Card com vídeo de alta qualidade — leve glow extra ──────────────── */
.gc-has-video[data-vq="high"]:hover .card-thumb {
  box-shadow: 0 0 20px rgba(var(--np91-accent-rgb, 108,99,255), .25);
}

/* ── Fallback gracioso: card sem vídeo não muda comportamento ─────────── */
.game-card:not(.gc-has-video) .np92-card-video {
  display: none;
}

/* ===== v95 VIDEO INTELLIGENCE ============================================ */

/* Glow premium — cards com score alto */
.np95-glow-premium .card-thumb {
  box-shadow:
    0 0 0 1.5px rgba(var(--np91-accent-rgb, 108 99 255) / .45),
    0 0 18px rgba(var(--np91-accent-rgb, 108 99 255) / .22);
  transition: box-shadow 400ms ease;
  will-change: auto; /* v102: box-shadow não cria composite layer */
}
.np95-glow-premium:hover .card-thumb {
  box-shadow:
    0 0 0 2px rgba(var(--np91-accent-rgb, 108 99 255) / .7),
    0 0 32px rgba(var(--np91-accent-rgb, 108 99 255) / .4);
}
.np95-glow-premium .card-thumb::before {
  content: '★';
  position: absolute; top: .3rem; left: .35rem;
  font-size: .6rem; line-height: 1;
  padding: .12rem .3rem;
  background: rgba(var(--np91-accent-rgb, 108 99 255) / .85);
  color: #fff; border-radius: 4px;
  z-index: 5; pointer-events: none;
  font-weight: 700;
}

/* Debug dashboard */
.np95-dbg {
  position: fixed; bottom: 1rem; left: 1rem; z-index: 99999;
  background: rgba(8,8,18,.96);
  border: 1px solid rgba(108,99,255,.4);
  border-radius: 10px; padding: .75rem;
  width: min(520px, 96vw); max-height: 80vh; overflow-y: auto;
  font-family: ui-monospace, 'SF Mono', monospace; font-size: .7rem;
  color: rgba(255,255,255,.8);
  box-shadow: 0 8px 48px rgba(0,0,0,.7);
  backdrop-filter: blur(16px);
}
.np95-dbg-hd { display:flex; align-items:center; gap:.5rem; margin-bottom:.5rem; }
.np95-dbg-hd strong { color:#fff; flex:1; }
.np95-dbg-ab { background:rgba(108,99,255,.25); padding:.1rem .4rem; border-radius:4px; }
.np95-dbg-close { background:none; border:none; color:rgba(255,255,255,.4); cursor:pointer; font-size:.8rem; }
.np95-dbg-close:hover { color:#fff; }
.np95-dbg-device { color:rgba(255,255,255,.45); margin-bottom:.5rem; font-size:.65rem; }
.np95-dbg-table { width:100%; border-collapse:collapse; font-size:.65rem; }
.np95-dbg-table th { text-align:left; color:rgba(108,99,255,.9); padding:.2rem .3rem; border-bottom:1px solid rgba(255,255,255,.06); }
.np95-dbg-table td { padding:.18rem .3rem; border-bottom:1px solid rgba(255,255,255,.04); white-space:nowrap; }
.np95-dbg-hi td { color:#7fff80; }
.np95-dbg-foot { display:flex; align-items:center; gap:.5rem; margin-top:.5rem; font-size:.63rem; color:rgba(255,255,255,.3); }
.np95-dbg-foot button { background:rgba(255,0,0,.2); border:1px solid rgba(255,0,0,.3); color:rgba(255,100,100,.8); border-radius:4px; padding:.15rem .5rem; cursor:pointer; font-size:.63rem; }
.np95-dbg-foot button:hover { background:rgba(255,0,0,.35); color:#fff; }

@media (prefers-reduced-motion: reduce) {
  .np95-glow-premium .card-thumb,
  .np95-glow-premium:hover .card-thumb { transition: none !important; }
}
/* ===== /v95 VIDEO INTELLIGENCE ========================================== */

/* ===== v96 CORE STABILITY ============================================== */

/* Low-performance mode — reduz efeitos pesados */
.np-low-performance .np95-glow-premium .card-thumb {
  box-shadow: none !important;
  transition: none !important;
}
.np-low-performance .np95-glow-premium .card-thumb::before {
  display: none;
}
.np-low-performance .np91-hero-vid {
  display: none !important;
}

/* Quiet mode — reduz overlays e animações repetidas */
.np-quiet-mode .np90-preview-panel {
  transition: opacity 150ms ease !important;
}
.np-quiet-mode .np83-streak-banner,
.np-quiet-mode .np88-toast,
.np-quiet-mode .np88-panel {
  opacity: 0.7;
}

/* Debug panel v96 */
.np96-dbg {
  position: fixed; top: 1rem; right: 1rem; z-index: 99999;
  background: rgba(8,8,18,.96);
  border: 1px solid rgba(99,255,180,.35);
  border-radius: 10px; padding: .75rem;
  width: min(260px, 92vw);
  font-family: ui-monospace, 'SF Mono', monospace; font-size: .68rem;
  color: rgba(255,255,255,.8);
  box-shadow: 0 8px 40px rgba(0,0,0,.7);
  backdrop-filter: blur(16px);
}
.np96-dbg-hd {
  display: flex; align-items: center;
  margin-bottom: .5rem; gap: .4rem;
}
.np96-dbg-hd strong { color: #fff; flex: 1; font-size: .72rem; }
.np96-dbg-close {
  background: none; border: none;
  color: rgba(255,255,255,.4); cursor: pointer; font-size: .8rem;
}
.np96-dbg-close:hover { color: #fff; }
.np96-dbg-table { width: 100%; border-collapse: collapse; }
.np96-dbg-table td {
  padding: .15rem .2rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.np96-dbg-table td:first-child { color: rgba(99,255,180,.8); white-space: nowrap; padding-right: .6rem; }
.np96-dbg-table td:last-child  { color: #fff; font-weight: 600; }
.np96-dbg-foot {
  margin-top: .5rem;
  color: rgba(255,255,255,.25);
  font-size: .6rem;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .np-low-performance .card-thumb,
  .np-quiet-mode .np90-preview-panel {
    transition: none !important;
    animation: none !important;
  }
}
/* ===== /v96 CORE STABILITY ============================================= */

/* ===== v97 STABILITY & ORCHESTRATION REFINEMENT ======================== */

/* Quiet mode — desabilita previews e animações pesadas */
.np-quiet-mode .np92-card-video,
.np-low-performance .np92-card-video {
  display: none !important;
}

.np-low-performance .np93-glow,
.np-low-performance [class*="-glow"] {
  filter: none !important;
  box-shadow: none !important;
}

.np-low-performance .np93-particle,
.np-low-performance [class*="particle"] {
  display: none !important;
}

/* Ticker limpo — sem texto excessivo */
.np86-ticker-item {
  font-size: 0.85rem;
  opacity: 0.75;
  letter-spacing: 0.01em;
}

/* Smooth transitions globais sem jank */
.game-card {
  will-change: auto;
  transform: translateZ(0);
}

.game-card:hover {
  will-change: transform;
}

/* Binge panel — não interrompe gameplay */
#np91BingeMount {
  pointer-events: auto;
}

/* ===== /v97 STABILITY & ORCHESTRATION REFINEMENT ======================= */
