:root{
  --bg:#0b0b0f;
  --panel:#13131a;
  --panel2:#1a1a22;
  --text:#f2f2f7;
  --muted:#a7a7b3;
  --brand:#ffcc00; /* JogosPlay amarelo */
  --accent:#ffffff;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background: radial-gradient(1200px 600px at 15% 0%, rgba(255,204,0,.12), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.45;
}
a{color:inherit;text-decoration:none}
.jp-container{max-width:1200px;margin:0 auto;padding:0 18px}
.jp-header{
  position:sticky;top:0;z-index:20;
  background: rgba(11,11,15,.76);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.jp-header-inner{display:flex;align-items:center;gap:18px;min-height:72px}
.jp-logo-text{font-weight:900;letter-spacing:.2px}
.jp-nav{display:flex;gap:14px;flex:1;align-items:center}
.jp-nav a{color:var(--muted);font-weight:600;font-size:14px}
.jp-nav a:hover{color:var(--text)}
.jp-search{
  display:flex;align-items:center;gap:10px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  padding:10px 12px;
  min-width:280px;
  position:relative;
}
.jp-search input{
  width:100%;
  background:transparent;border:0;outline:none;
  color:var(--text);
  font-size:14px;
}
.jp-search-results{
  position:absolute;left:0;right:0;top:calc(100% + 10px);
  background: rgba(19,19,26,.98);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  display:none;
}
.jp-search-results.active{display:block}
.jp-search-item{display:flex;align-items:center;gap:12px;padding:10px 12px}
.jp-search-item:hover{background: rgba(255,255,255,.06)}
.jp-search-item img{width:56px;height:32px;object-fit:cover;border-radius:10px}
.jp-search-item .t{font-weight:700;font-size:13px}
.jp-search-item .m{color:var(--muted);font-size:12px}

.jp-hero{
  padding:28px 0 8px;
}
.jp-hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  position:relative;
  min-height:320px;
}
.jp-hero-inner{display:grid;grid-template-columns: 1.2fr .8fr;gap:18px}
.jp-hero-left{padding:22px}
.jp-pill{
  display:inline-flex;align-items:center;gap:8px;
  background: rgba(255,204,0,.14);
  border:1px solid rgba(255,204,0,.22);
  color:var(--text);
  padding:6px 10px;border-radius:999px;
  font-weight:800;font-size:12px;
}
.jp-hero h1{margin:14px 0 8px;font-size:42px;line-height:1.05}
.jp-hero p{margin:0;color:var(--muted);max-width:56ch}
.jp-hero-actions{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap}
.jp-btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:42px;padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color:var(--text);
  font-weight:800;font-size:14px;
}
.jp-btn.primary{background: var(--brand); color:#111; border-color: rgba(0,0,0,.18)}
.jp-btn:hover{transform: translateY(-1px)}
.jp-hero-right{padding:22px;display:flex;align-items:center;justify-content:center}
.jp-hero-right .thumb{width:100%;max-width:420px;aspect-ratio:16/9; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.12)}
.jp-hero-right img{width:100%;height:100%;object-fit:cover;display:block}

.jp-section{padding:18px 0}
.jp-section-head{display:flex;align-items:end;justify-content:space-between;gap:14px;margin-bottom:10px}
.jp-section-title{font-size:18px;font-weight:900}
.jp-section-sub{color:var(--muted);font-size:13px}

.jp-rail{
  position:relative;
}
.jp-rail-track{
  display:flex;gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
}
.jp-rail-track::-webkit-scrollbar{height:10px}
.jp-rail-track::-webkit-scrollbar-thumb{background: rgba(255,255,255,.12);border-radius:999px}
.jp-card{
  flex:0 0 220px;
  scroll-snap-align:start;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:hidden;
  transition: transform .15s ease, background .15s ease;
}
.jp-card:hover{transform: translateY(-2px); background: rgba(255,255,255,.08)}
.jp-card .thumb{aspect-ratio:16/9;background:#111}
.jp-card img{width:100%;height:100%;object-fit:cover;display:block}
.jp-card .meta{padding:10px 10px 12px}
.jp-card .meta .t{font-weight:900;font-size:14px;margin:0 0 4px}
.jp-card .meta .c{color:var(--muted);font-size:12px}
.jp-rail-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:42px;height:42px;border-radius:999px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.14);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.jp-rail-btn:hover{background: rgba(0,0,0,.72)}
.jp-rail-btn.prev{left:-8px}
.jp-rail-btn.next{right:-8px}

.jp-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
}
@media (max-width: 1100px){ .jp-grid{grid-template-columns: repeat(4, 1fr)} }
@media (max-width: 720px){
  .jp-header-inner{flex-wrap:wrap;padding:10px 0}
  .jp-search{min-width:100%}
  .jp-hero-inner{grid-template-columns:1fr}
  .jp-hero h1{font-size:34px}
  .jp-grid{grid-template-columns: repeat(2, 1fr)}
}

.jp-page{
  padding:18px 0 34px;
}
.jp-h1{font-size:34px;font-weight:950;margin:10px 0}
.jp-breadcrumb{color:var(--muted);font-size:12px;margin:10px 0}
.jp-footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}
.jp-footer a{color:var(--text)}

/* ====== 0.1.1: Polimento visual + painel admin ====== */
.jp-page, .jp-hero{ position: relative; }
.jp-hero::before{
  content:"";
  position:absolute;
  inset:-180px -40px auto -40px;
  height:520px;
  background:
    radial-gradient(700px 360px at 18% 25%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(600px 320px at 82% 30%, rgba(255,200,0,.08), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.55));
  pointer-events:none;
  filter: blur(0px);
}

.jp-hero-right{ position:relative; overflow:hidden; }
.jp-hero-thumb{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.85; transform: scale(1.02); }
.jp-hero-right::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.15) 55%, rgba(0,0,0,.55));
  pointer-events:none;
}
.jp-hero-poster{ position:relative; z-index:1; }

/* ====== Player shell (JogosPlay) ====== */
.jp-player{
  --jp-bar-h: 58px;
  max-width:1100px;
  margin:24px auto;
  border-radius:22px;
  overflow:hidden;
  background:#111;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  position:relative;
}

/*
  Fix stacking: alguns iframes acabam "subindo" e cobrindo a barra.
  Mantemos a barra sempre acima do jogo (sem depender de z-index do iframe).
*/
.jp-playerbar{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px 16px;
  background:rgba(20,20,20,.92);
  backdrop-filter: blur(8px);
  border-top:1px solid rgba(255,255,255,.06);
  position:relative;
  z-index:40;
  min-height:var(--jp-bar-h);
}
.jp-brand{font-weight:900;letter-spacing:.2px;opacity:.95}
.jp-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.jp-player .jp-btn{border:0;border-radius:999px;padding:10px 12px;background:rgba(255,255,255,.08);color:#fff;cursor:pointer;line-height:1}
.jp-player .jp-btn:hover{background:rgba(255,255,255,.13)}
.jp-player .jp-btn:focus-visible{outline:2px solid rgba(255,204,0,.9);outline-offset:2px}

/* === Playerbar icons (sem fonte externa) === */
.jp-player .jp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:40px;
  min-height:40px;
}
.jp-player .jp-btn::before{
  content:"";
  width:16px;height:16px;
  display:block;
  background:currentColor;
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-position:center;
  -webkit-mask-size:contain;
  mask-repeat:no-repeat;
  mask-position:center;
  mask-size:contain;
}

/* Ícones via mask SVG */
.jp-player .jp-like::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 10h4v12H2V10zm20 1c0-1.1-.9-2-2-2h-6.3l.9-4.2.03-.32c0-.41-.17-.79-.44-1.06L13 2 6.6 8.4C6.2 8.8 6 9.3 6 9.8V20c0 1.1.9 2 2 2h8c.8 0 1.5-.5 1.8-1.2l3-7c.1-.3.2-.6.2-.8v-2z'/%3E%3C/svg%3E");
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 10h4v12H2V10zm20 1c0-1.1-.9-2-2-2h-6.3l.9-4.2.03-.32c0-.41-.17-.79-.44-1.06L13 2 6.6 8.4C6.2 8.8 6 9.3 6 9.8V20c0 1.1.9 2 2 2h8c.8 0 1.5-.5 1.8-1.2l3-7c.1-.3.2-.6.2-.8v-2z'/%3E%3C/svg%3E");
}
.jp-player .jp-dislike::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 2h4v12H2V2zm20 11c0 1.1-.9 2-2 2h-6.3l.9 4.2.03.32c0 .41-.17.79-.44 1.06L13 22l-6.4-6.4c-.4-.4-.6-.9-.6-1.4V4c0-1.1.9-2 2-2h8c.8 0 1.5.5 1.8 1.2l3 7c.1.3.2.6.2.8v2z'/%3E%3C/svg%3E");
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 2h4v12H2V2zm20 11c0 1.1-.9 2-2 2h-6.3l.9 4.2.03.32c0 .41-.17.79-.44 1.06L13 22l-6.4-6.4c-.4-.4-.6-.9-.6-1.4V4c0-1.1.9-2 2-2h8c.8 0 1.5.5 1.8 1.2l3 7c.1.3.2.6.2.8v2z'/%3E%3C/svg%3E");
}
.jp-player .jp-lights::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 21h6v-1H9v1zm3-20C7.9 1 5 3.9 5 7c0 2.4 1.4 4.5 3.5 5.5V17c0 .6.4 1 1 1h5c.6 0 1-.4 1-1v-4.5C17.6 11.5 19 9.4 19 7c0-3.1-2.9-6-7-6zm2.9 10.2-1.4.8V16H10v-4l-1.4-.8C7.1 10.3 6 8.7 6 7c0-2.5 2.5-5 6-5s6 2.5 6 5c0 1.7-1.1 3.3-3.1 4.2z'/%3E%3C/svg%3E");
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 21h6v-1H9v1zm3-20C7.9 1 5 3.9 5 7c0 2.4 1.4 4.5 3.5 5.5V17c0 .6.4 1 1 1h5c.6 0 1-.4 1-1v-4.5C17.6 11.5 19 9.4 19 7c0-3.1-2.9-6-7-6zm2.9 10.2-1.4.8V16H10v-4l-1.4-.8C7.1 10.3 6 8.7 6 7c0-2.5 2.5-5 6-5s6 2.5 6 5c0 1.7-1.1 3.3-3.1 4.2z'/%3E%3C/svg%3E");
}
.jp-player .jp-fullscreen::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 14H5v5h5v-2H7v-3zm0-4h2V7h3V5H5v5zm10 9h-3v2h5v-5h-2v3zm0-14V7h-3v2h3v3h2V5h-5z'/%3E%3C/svg%3E");
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 14H5v5h5v-2H7v-3zm0-4h2V7h3V5H5v5zm10 9h-3v2h5v-5h-2v3zm0-14V7h-3v2h3v3h2V5h-5z'/%3E%3C/svg%3E");
}
.jp-player .jp-close::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3 1.4 1.4z'/%3E%3C/svg%3E");
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3 1.4 1.4z'/%3E%3C/svg%3E");
}

/* Se quiser texto junto, descomente:
.jp-player .jp-btn{ padding:10px 14px }
.jp-player .jp-btn::after{ content: attr(title); font-weight:800; font-size:13px; }
*/

.jp-player .jp-like[aria-pressed="true"],
.jp-player .jp-dislike[aria-pressed="true"]{background:rgba(255,204,0,.18);border:1px solid rgba(255,204,0,.35)}

.jp-stage{position:relative;background:#000;overflow:hidden;z-index:1;padding-top:0}
/* ====== Player shell (JogosPlay) ====== */
.jp-target{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}
.jp-poster{border:0;background:transparent;padding:0;margin:0;display:block;cursor:pointer;position:relative;width:100%;text-decoration:none;color:inherit}
.jp-poster-img{width:100%;height:auto;display:block}
.jp-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:#f5c400;color:#111;padding:14px 18px;border-radius:999px;font-weight:900;box-shadow:0 18px 40px rgba(0,0,0,.45)}
.jp-player.jp-embed-missing .jp-play{background:rgba(255,80,80,.92);color:#111}
.jp-framewrap{display:none;position:relative;width:100%;aspect-ratio:16/9;background:#000;z-index:1}
.jp-framewrap iframe{
  /* Alguns providers tentam aplicar estilos inline no iframe.
     Forçamos o iframe a ficar preso dentro do container (sem cobrir o menu/tabs). */
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  border:0 !important;
  z-index:1 !important;
}

/* Mostra iframe quando estiver tocando (JS) */
.jp-player.is-playing .jp-framewrap{display:block}

/* CSS-only fallback: hash target ativa o iframe mesmo se JS falhar */
.jp-target:target + .jp-stage .jp-poster{display:none}
.jp-target:target + .jp-stage .jp-framewrap{display:block}

/* Fallback mais robusto: checkbox (não depende de hash nem JS) */
.jp-toggle:checked + .jp-stage .jp-poster{display:none}
.jp-toggle:checked + .jp-stage .jp-framewrap{display:block}

/* Garante clique sempre no poster */
.jp-poster{position:relative;z-index:3;pointer-events:auto}
.jp-play{pointer-events:none}
.jp-poster-img{pointer-events:none}

.jp-lights-overlay{position:fixed;inset:0;background:rgba(0,0,0,.78);z-index:9998}
.jp-player.is-playing{z-index:9999;position:relative}

/* Botão Fechar só faz sentido depois de iniciar */
.jp-player .jp-close{display:none}
.jp-player.is-playing .jp-close{display:inline-flex}
.jp-toggle:checked ~ .jp-playerbar .jp-close{display:inline-flex}
.jp-target:target ~ .jp-playerbar .jp-close{display:inline-flex}

/* Fullscreen: manter barra visível (abaixo) e o jogo ocupando o máximo */
.jp-player{display:flex;flex-direction:column}
:fullscreen .jp-player{max-width:none;width:100%;height:100%;margin:0;border-radius:0;box-shadow:none}
:fullscreen .jp-stage{flex:1;display:flex}
:fullscreen .jp-framewrap{flex:1;aspect-ratio:auto;height:100%}
:fullscreen .jp-playerbar{position:absolute;z-index:9999}

/* Tabs (sem JS): inputs radio controlam a aba ativa */
.jp-tabs{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 8px;position:relative;z-index:40}
.jp-tab-radio{position:absolute;left:-9999px}
.jp-tab{border:0;cursor:pointer;border-radius:999px;padding:10px 14px;background:rgba(255,255,255,.07);color:#fff;font-weight:900;letter-spacing:.2px;user-select:none}
.jp-tab:hover{background:rgba(255,255,255,.11)}
.jp-tab-radio:checked + .jp-tab{background:rgba(255,204,0,.18);border:1px solid rgba(255,204,0,.35)}
.jp-tabpanes{margin-top:6px;width:100%}
.jp-tabpane{display:none}
.jp-tab-radio[id$='-desc']:checked ~ .jp-tabpanes [data-pane="desc"]{display:block}
.jp-tab-radio[id$='-walk']:checked ~ .jp-tabpanes [data-pane="walk"]{display:block}

.jp-walkthrough{margin:18px 0 0;padding:14px 14px 10px;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}
.jp-walkthrough-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:10px}
.jp-walkthrough-title{font-weight:900;letter-spacing:.2px}
.jp-walkthrough-sub{color:var(--muted);font-size:13px}
.jp-walkthrough-frame{position:relative;width:100%;aspect-ratio:16/9;background:#000;border-radius:14px;overflow:hidden}
.jp-walkthrough-frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.jp-walkthrough-placeholder{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;text-align:center;padding:18px;color:rgba(255,255,255,.85);background:linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));font-weight:800}
.jp-walkthrough-empty{color:var(--muted);padding:8px 2px}

@media (max-width: 720px){
  .jp-player{margin:16px auto;border-radius:18px}
  .jp-playerbar{padding:12px 12px}
  .jp-player .jp-btn{padding:9px 11px}
}

.jp-card{ transition: transform .16s ease, box-shadow .16s ease; }
.jp-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.jp-card-thumb{ overflow:hidden; }
.jp-card-thumb img{ transition: transform .18s ease; }
.jp-card:hover .jp-card-thumb img{ transform: scale(1.04); }

.jp-section-title{ letter-spacing:.2px }

/* Painel admin: Últimos jogos adicionados */
.jp-admin-panel{ padding:14px 0 0; }
.jp-admin-box{ border:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); border-radius:16px; padding:12px 14px; }
.jp-admin-box summary{ cursor:pointer; user-select:none; font-weight:800; }
.jp-admin-table{ width:100%; border-collapse: collapse; margin-top:10px; font-size:12px; }
.jp-admin-table th, .jp-admin-table td{ padding:8px 8px; border-bottom:1px solid rgba(255,255,255,.07); vertical-align:top; }
.jp-admin-table th{ color: var(--muted); font-weight:800; text-transform:uppercase; letter-spacing:.06em; font-size:11px; }
.jp-admin-badge{ display:inline-flex; align-items:center; gap:6px; padding:3px 8px; border-radius:999px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.10); font-weight:800; }
.jp-admin-ok{ background: rgba(0,255,120,.10); border-color: rgba(0,255,120,.18); }
.jp-admin-warn{ background: rgba(255,200,0,.10); border-color: rgba(255,200,0,.18); }
.jp-admin-muted{ color: var(--muted); }

@media (max-width: 720px){
  .jp-admin-table{ display:block; overflow-x:auto; }
}

/* ====== 0.1.5: Navegação de catálogo / SEO interno ====== */
.jp-hero-count{
  margin-top:12px;
  color:var(--brand);
  font-weight:900;
  font-size:13px;
}
.jp-link-more{
  color:var(--brand);
  font-weight:900;
  font-size:13px;
  white-space:nowrap;
}
.jp-catbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin:12px 0 18px;
}
.jp-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  font-weight:800;
  font-size:13px;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.jp-chip span{
  color:var(--muted);
  font-weight:800;
  font-size:11px;
}
.jp-chip:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.09);
  border-color:rgba(255,204,0,.28);
}
.jp-chip.is-active{
  background:rgba(255,204,0,.16);
  border-color:rgba(255,204,0,.38);
  color:#fff;
}
.jp-page-head{
  display:flex;
  gap:18px;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:10px;
}
.jp-archive-search{
  display:flex;
  gap:8px;
  align-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  padding:6px;
  min-width:min(420px, 100%);
}
.jp-archive-search input{
  flex:1;
  min-width:0;
  background:transparent;
  border:0;
  outline:0;
  color:var(--text);
  padding:9px 10px;
  font-size:14px;
}
.jp-archive-search button{
  border:0;
  border-radius:999px;
  padding:10px 14px;
  background:var(--brand);
  color:#111;
  font-weight:900;
  cursor:pointer;
}
.jp-grid-catalog{
  margin-top:14px;
}
.jp-pagination{
  margin-top:22px;
}
.jp-pagination .nav-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.jp-pagination a,
.jp-pagination span{
  display:inline-flex;
  min-width:38px;
  min-height:38px;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  font-weight:800;
}
.jp-pagination .current{
  background:rgba(255,204,0,.16);
  border-color:rgba(255,204,0,.38);
}
.jp-mini-nav{
  margin:22px 0 4px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.jp-mini-nav .jp-catbar{
  margin-bottom:0;
}
@media (max-width: 720px){
  .jp-nav{order:3; width:100%; overflow:auto; padding-bottom:2px; white-space:nowrap; flex-wrap:nowrap}
  .jp-page-head{display:block}
  .jp-archive-search{margin-top:14px}
  .jp-catbar{flex-wrap:nowrap; overflow:auto; padding-bottom:6px}
  .jp-chip{white-space:nowrap}
}

/* ====== 0.1.6 Navegação polish / sem scroll horizontal ====== */
html, body{width:100%;max-width:100%;overflow-x:hidden;}
.jp-site, .jp-page, .jp-section, .jp-hero, .jp-header, .jp-footer{max-width:100%;overflow-x:clip;}
.jp-hero{padding-top:34px;padding-bottom:18px}
.jp-hero-card{box-shadow:0 24px 80px rgba(0,0,0,.38);}
.jp-hero-inner{align-items:center}
.jp-hero h1{font-size:clamp(34px,4vw,54px);letter-spacing:-.04em}
.jp-hero p{font-size:16px;line-height:1.55}
.jp-hero-count{margin-top:14px}
.jp-rail{overflow:visible;isolation:isolate;}
.jp-rail-track{overflow-x:auto;overflow-y:hidden;scrollbar-width:none;-ms-overflow-style:none;padding:2px 2px 10px;scroll-behavior:smooth;}
.jp-rail-track::-webkit-scrollbar{display:none}
.jp-rail::before,.jp-rail::after{content:"";position:absolute;top:0;bottom:10px;width:58px;z-index:2;pointer-events:none;}
.jp-rail::before{left:0;background:linear-gradient(90deg,var(--bg),transparent)}
.jp-rail::after{right:0;background:linear-gradient(270deg,var(--bg),transparent)}
.jp-rail-btn{z-index:5;color:#fff;font-size:34px;line-height:1;box-shadow:0 12px 28px rgba(0,0,0,.45);}
.jp-rail-btn.prev{left:10px}
.jp-rail-btn.next{right:10px}
.jp-card{flex-basis:240px;}
.jp-card .meta .t{line-height:1.2}
.jp-link-more{font-weight:900;color:var(--brand)}
.jp-catbar{max-width:100%;overflow-x:auto;scrollbar-width:none}
.jp-catbar::-webkit-scrollbar{display:none}
@media (max-width:720px){.jp-rail-btn{display:flex;width:38px;height:38px;font-size:30px}.jp-card{flex-basis:72vw;max-width:280px}.jp-hero-right{padding-top:0}}

/* ===== JogosPlay 0.1.7: navegação PRO / hotfix overflow ===== */
html, body{
  max-width:100%;
  overflow-x:hidden;
}
img, iframe, video{
  max-width:100%;
}
.jp-container,
.jp-header,
.jp-page,
.jp-section,
.jp-hero{
  max-width:100%;
}
.jp-rail{
  overflow:visible;
  isolation:isolate;
}
.jp-rail-track{
  scrollbar-width:none;
  -ms-overflow-style:none;
  overflow-y:hidden;
  padding:0 2px 8px;
}
.jp-rail-track::-webkit-scrollbar{display:none}
.jp-rail::before,
.jp-rail::after{
  content:"";
  position:absolute;
  top:0;
  bottom:8px;
  width:64px;
  z-index:2;
  pointer-events:none;
}
.jp-rail::before{left:0;background:linear-gradient(90deg, var(--bg), transparent)}
.jp-rail::after{right:0;background:linear-gradient(270deg, var(--bg), transparent)}
.jp-rail.is-start::before,
.jp-rail.is-end::after{opacity:0}
.jp-rail-btn{
  z-index:5;
  width:48px;
  height:48px;
  color:#fff;
  font-size:34px;
  font-weight:900;
  line-height:1;
  background:rgba(0,0,0,.78);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 10px 30px rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
  opacity:1;
}
.jp-rail-btn.prev{left:10px}
.jp-rail-btn.next{right:10px}
.jp-rail-btn:hover{
  background:rgba(255,204,0,.95);
  color:#111;
  transform:translateY(-50%) scale(1.05);
}
.jp-hero-card{
  box-shadow:0 24px 80px rgba(0,0,0,.32);
}
.jp-hero-right .thumb{
  box-shadow:0 18px 50px rgba(0,0,0,.42);
}
.jp-continue-section[hidden]{display:none!important}
.jp-continue-section{
  padding-top:22px;
}
.jp-current-game-data{display:none!important}
.jp-thumb-fallback-mini{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;height:100%;
  background:#15151d;
  color:rgba(255,255,255,.45);
  font-weight:900;
}
@media (max-width:720px){
  .jp-rail-btn{width:42px;height:42px;font-size:30px}
  .jp-rail-btn.prev{left:4px}
  .jp-rail-btn.next{right:4px}
  .jp-rail::before,.jp-rail::after{width:42px}
}

/* ===== JogosPlay 0.1.9 FULL WIDTH PRO ===== */
:root{--jp-edge:clamp(16px,2.5vw,48px);--jp-max-readable:1380px}
html,body{width:100%;max-width:100%;overflow-x:hidden!important}
body{background:radial-gradient(1100px 540px at 8% 0%,rgba(255,204,0,.13),transparent 60%),radial-gradient(1100px 560px at 96% 12%,rgba(255,255,255,.055),transparent 55%),linear-gradient(180deg,#0b0b0f 0%,#09090d 42%,#08080b 100%)}
.jp-site,.jp-header,.jp-hero,.jp-section,.jp-page,.jp-footer{width:100%;max-width:100%;overflow-x:clip}
.jp-container{width:100%;max-width:none!important;margin:0;padding-left:var(--jp-edge);padding-right:var(--jp-edge)}
.jp-header-inner{width:100%;max-width:none}.jp-search{min-width:min(360px,28vw)}
.jp-hero{padding:34px 0 18px}.jp-hero .jp-container{padding-left:var(--jp-edge);padding-right:var(--jp-edge)}
.jp-hero-card{width:100%;min-height:360px;border-radius:20px;background:linear-gradient(90deg,rgba(255,255,255,.095),rgba(255,255,255,.035) 46%,rgba(0,0,0,.34)),linear-gradient(180deg,rgba(255,204,0,.055),rgba(255,255,255,.02));box-shadow:0 30px 110px rgba(0,0,0,.42)}
.jp-hero-inner{min-height:360px;grid-template-columns:minmax(420px,1.05fr) minmax(420px,.95fr);gap:clamp(24px,4vw,76px);align-items:center}
.jp-hero-left{padding:clamp(24px,4vw,54px)}.jp-hero h1{max-width:760px;font-size:clamp(42px,4.5vw,76px)}.jp-hero p{max-width:680px;font-size:clamp(15px,1.04vw,18px)}
.jp-hero-right{padding:clamp(24px,4vw,54px)}.jp-hero-right .thumb{width:100%;max-width:min(620px,90%);border-radius:20px}
.jp-section{padding:26px 0}.jp-section-head{padding:0;margin-bottom:14px}.jp-section-title{font-size:clamp(19px,1.35vw,28px)}.jp-section-sub{font-size:clamp(13px,.88vw,15px)}
.jp-rail{width:100%;margin-left:0;margin-right:0}.jp-rail-track{gap:clamp(12px,1.1vw,18px);padding:2px 4px 12px;scroll-padding-left:4px}.jp-card{flex-basis:clamp(230px,15.3vw,320px);border-radius:20px}.jp-card .meta{padding:12px 12px 14px}.jp-card .meta .t{font-size:clamp(14px,.85vw,17px)}
.jp-rail::before,.jp-rail::after{width:clamp(58px,5vw,96px);bottom:12px}.jp-rail-btn{width:52px;height:52px}.jp-rail-btn.prev{left:12px}.jp-rail-btn.next{right:12px}
.jp-chip{min-height:40px;padding:9px 14px}.jp-page{padding:24px 0 44px}.jp-grid{grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:clamp(12px,1vw,18px)}.jp-grid .jp-card{width:100%;flex-basis:auto}
.single-jogo .jp-page .jp-container{padding-left:var(--jp-edge);padding-right:var(--jp-edge)}
.single-jogo .jp-breadcrumb,.single-jogo .jp-h1,.single-jogo .jp-page .jp-section-sub,.single-jogo .jp-article,.single-jogo .jp-tabs,.single-jogo .jp-mini-nav{max-width:var(--jp-max-readable);margin-left:auto;margin-right:auto}
.single-jogo .jp-player{width:min(100%,1280px);max-width:1280px;margin:26px auto;border-radius:24px}.single-jogo .jp-tabpane{font-size:15px;line-height:1.7}.single-jogo .jp-section .jp-container{padding-left:var(--jp-edge);padding-right:var(--jp-edge)}
@media (min-width:1600px){.jp-card{flex-basis:300px}.jp-hero-card,.jp-hero-inner{min-height:390px}}
@media (max-width:1100px){.jp-hero-inner{grid-template-columns:1fr;gap:10px}.jp-hero-right .thumb{max-width:720px}.jp-search{min-width:260px}}
@media (max-width:720px){:root{--jp-edge:14px}.jp-search{min-width:100%}.jp-hero{padding-top:18px}.jp-hero-card{min-height:0;border-radius:18px}.jp-hero-inner{min-height:0}.jp-hero-left,.jp-hero-right{padding:18px}.jp-hero h1{font-size:34px}.jp-hero-right .thumb{max-width:100%}.jp-section{padding:20px 0}.jp-card{flex-basis:76vw;max-width:310px}.jp-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.jp-rail-btn{width:42px;height:42px;font-size:30px}.jp-rail-btn.prev{left:5px}.jp-rail-btn.next{right:5px}.single-jogo .jp-player{border-radius:18px;margin:18px auto}}

/* ===== JogosPlay 0.2.0 MODO CRAZYGAMES ===== */
body.home{background:#09090d;}
body.home .jp-hero{display:none!important;}
.jp-home-top{padding-top:18px;}
.jp-tight-head{align-items:center;margin-bottom:12px;}
.jp-home-title{margin:0;font-size:clamp(22px,2.2vw,34px);line-height:1.08;font-weight:950;letter-spacing:-.02em;}
.jp-cg-feature{padding-top:12px;}
.jp-cg-layout{display:grid;grid-template-columns:250px minmax(0,1fr);gap:18px;align-items:start;}
.jp-cg-sidebar{position:sticky;top:86px;align-self:start;max-height:calc(100vh - 100px);overflow:auto;padding:12px;border-radius:18px;background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.075);scrollbar-width:none;}
.jp-cg-sidebar::-webkit-scrollbar{display:none;}
.jp-side-title{font-size:13px;text-transform:uppercase;letter-spacing:.08em;font-weight:950;color:var(--muted);margin:4px 8px 10px;}
.jp-side-catlist{display:flex;flex-direction:column;gap:5px;}
.jp-side-cat{display:flex;align-items:center;justify-content:space-between;gap:10px;min-height:34px;padding:8px 10px;border-radius:10px;color:#ddd;font-weight:800;font-size:13px;}
.jp-side-cat b{font-size:11px;color:var(--muted);font-weight:900;}
.jp-side-cat:hover,.jp-side-cat.is-active{background:rgba(255,255,255,.08);color:#fff;}
.jp-side-cat.is-active{box-shadow:inset 3px 0 0 var(--brand);}
.jp-cg-main{min-width:0;}
.jp-cg-mosaic{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));grid-auto-rows:132px;gap:12px;}
.jp-mosaic-item{min-width:0;}
.jp-mosaic-item .jp-card{width:100%;height:100%;display:block;flex-basis:auto;border-radius:14px;position:relative;}
.jp-mosaic-item .jp-card .thumb{height:100%;aspect-ratio:auto;}
.jp-mosaic-item .jp-card .meta{position:absolute;left:0;right:0;bottom:0;padding:36px 12px 12px;background:linear-gradient(transparent,rgba(0,0,0,.82));}
.jp-mosaic-item .jp-card .meta .t{font-size:15px;color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.5);}
.jp-mosaic-item .jp-card .meta .c{color:rgba(255,255,255,.72);}
.jp-mosaic-item.is-large{grid-column:span 2;grid-row:span 2;}
.jp-mosaic-item.is-wide{grid-column:span 2;}
.jp-cg-mosaic .jp-card:hover{transform:translateY(-2px) scale(1.01);}
.home .jp-section{padding:18px 0;}
.home .jp-card{border-radius:14px;}
.home .jp-rail-track{gap:10px;}
.home .jp-card{flex-basis:clamp(190px,12vw,260px);}
.home .jp-section-title{font-size:clamp(18px,1.15vw,24px);}
.jp-continue-rail .jp-card{flex-basis:150px;}
.jp-continue-rail .jp-card .meta .t{font-size:12px;}
.jp-continue-rail .jp-card .meta{padding:8px;}
.single-jogo .jp-page .jp-container{padding-top:10px;}
.single-jogo .jp-h1{font-size:clamp(30px,2.6vw,48px);letter-spacing:-.03em;}
.single-jogo .jp-player{width:min(100%,1180px);}
.jp-provider-desc{margin-bottom:24px;}
.jp-seo-game-copy{max-width:1120px;margin:22px auto 8px;padding:24px 26px;border-radius:18px;background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.075);color:#cfd0dc;line-height:1.75;font-size:16px;}
.jp-seo-game-copy h2{color:#fff;margin:22px 0 10px;font-size:clamp(20px,1.4vw,28px);line-height:1.2;}
.jp-seo-game-copy h2:first-child{margin-top:0;}
.jp-seo-game-copy h3{color:#fff;margin:18px 0 8px;font-size:18px;}
.jp-seo-game-copy p{margin:0 0 14px;}
.jp-seo-game-copy ul{margin:8px 0 18px;padding-left:24px;}
.jp-seo-game-copy a{color:#8f74ff;font-weight:900;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px;}
@media (min-width:1500px){.jp-cg-layout{grid-template-columns:270px minmax(0,1fr)}.jp-cg-mosaic{grid-auto-rows:148px}.home .jp-card{flex-basis:250px}}
@media (max-width:1180px){.jp-cg-layout{grid-template-columns:1fr}.jp-cg-sidebar{position:relative;top:auto;max-height:none;padding:0;background:transparent;border:0}.jp-side-title{display:none}.jp-side-catlist{flex-direction:row;overflow:auto;gap:8px;padding-bottom:6px;scrollbar-width:none}.jp-side-catlist::-webkit-scrollbar{display:none}.jp-side-cat{white-space:nowrap;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.09);border-radius:999px}.jp-side-cat.is-active{box-shadow:none;border-color:rgba(255,204,0,.45);background:rgba(255,204,0,.16)}}
@media (max-width:900px){.jp-cg-mosaic{grid-template-columns:repeat(4,minmax(0,1fr));grid-auto-rows:120px}.jp-mosaic-item.is-large{grid-column:span 2;grid-row:span 2}.jp-mosaic-item.is-wide{grid-column:span 2}}
@media (max-width:620px){.jp-cg-mosaic{display:flex;overflow:auto;gap:10px;padding-bottom:6px;scrollbar-width:none}.jp-cg-mosaic::-webkit-scrollbar{display:none}.jp-mosaic-item,.jp-mosaic-item.is-large,.jp-mosaic-item.is-wide{flex:0 0 76vw;height:190px}.home .jp-card{flex-basis:72vw}.jp-seo-game-copy{padding:18px 16px;font-size:15px}.jp-cg-feature{padding-top:8px}}

/* v0.2.1 CrazyGames PRO+ density/layout fixes */
.jp-cg-proplus{padding-top:14px;}
.jp-cg-proplus .jp-cg-layout{display:grid;grid-template-columns:250px minmax(0,1fr);gap:18px;align-items:start;}
.jp-cg-proplus .jp-cg-sidebar{position:sticky;top:76px;max-height:calc(100vh - 92px);overflow:auto;}
.jp-cg-proplus .jp-cg-main{min-width:0;display:block;}
.jp-cg-proplus .jp-cg-mosaic{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));grid-auto-rows:128px;gap:12px;align-items:stretch;}
.jp-cg-proplus .jp-mosaic-item{min-width:0;}
.jp-cg-proplus .jp-mosaic-item.is-large{grid-column:span 2;grid-row:span 2;}
.jp-cg-proplus .jp-mosaic-item.is-wide{grid-column:span 2;}
.jp-cg-proplus .jp-mosaic-item .jp-card{width:100%;height:100%;min-height:0;display:block;flex-basis:auto;border-radius:14px;overflow:hidden;}
.jp-cg-proplus .jp-mosaic-item .jp-card .thumb{height:100%;aspect-ratio:auto;}
.jp-cg-proplus .jp-mosaic-item .jp-card .thumb img{width:100%;height:100%;object-fit:cover;}
.jp-cg-proplus .jp-mosaic-item .jp-card .meta{position:absolute;left:0;right:0;bottom:0;padding:42px 12px 12px;background:linear-gradient(transparent,rgba(0,0,0,.86));}
.jp-cg-proplus .jp-mosaic-item .jp-card .meta .t{font-size:15px;text-shadow:0 2px 8px rgba(0,0,0,.6);}
.jp-cg-proplus .jp-inner-rail-section{padding:24px 0 0;}
.jp-cg-proplus .jp-inner-rail-section:first-of-type{padding-top:34px;}
.jp-cg-proplus .jp-inner-rail-section .jp-section-head{margin-bottom:10px;}
.jp-cg-proplus .jp-inner-rail-section .jp-rail-track{gap:12px;}
.jp-cg-proplus .jp-inner-rail-section .jp-card{flex-basis:clamp(190px,12.5vw,260px);}
.jp-side-catlist .jp-side-cat:nth-child(n+23){display:none;}
.jp-cg-sidebar:after{content:'Mais categorias aparecem nas páginas internas';display:block;color:rgba(255,255,255,.45);font-size:11px;font-weight:800;margin:10px 6px 2px;}
.home .jp-continue-section[hidden]{display:none!important;}
.home .jp-continue-section .jp-rail-track:empty{display:none;}
.jp-seo-intro{font-size:17px;color:#fff;}
.single-jogo .jp-provider-desc h2,
.single-jogo .jp-provider-desc h3{color:#fff;margin-top:22px;}
.single-jogo .jp-provider-desc a{color:#8f74ff;font-weight:900;text-decoration:underline;text-underline-offset:3px;}

@media (min-width:1700px){
  .jp-cg-proplus .jp-cg-layout{grid-template-columns:270px minmax(0,1fr);}
  .jp-cg-proplus .jp-cg-mosaic{grid-template-columns:repeat(auto-fill,minmax(250px,1fr));grid-auto-rows:142px;}
  .jp-cg-proplus .jp-inner-rail-section .jp-card{flex-basis:clamp(220px,11.5vw,300px);}
}
@media (max-width:980px){
  .jp-cg-proplus .jp-cg-layout{display:block;}
  .jp-cg-proplus .jp-cg-sidebar{position:relative;top:auto;max-height:none;margin-bottom:16px;}
  .jp-cg-proplus .jp-cg-mosaic{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:112px;}
  .jp-cg-proplus .jp-mosaic-item.is-large,
  .jp-cg-proplus .jp-mosaic-item.is-wide{grid-column:span 2;}
}
@media (max-width:560px){
  .jp-cg-proplus .jp-cg-mosaic{grid-auto-rows:104px;gap:10px;}
  .jp-cg-proplus .jp-mosaic-item .jp-card .meta{padding:36px 10px 10px;}
  .jp-cg-proplus .jp-mosaic-item .jp-card .meta .t{font-size:13px;}
}

/* ====== 0.2.2: CrazyGames PRO branding + UX polish ====== */
html,body{overflow-x:hidden;}
:root{--brand:#FFD400;--brand2:#ffea67;--header-h:58px;}
.jp-container{max-width:100%;padding-left:clamp(18px,1.7vw,34px);padding-right:clamp(18px,1.7vw,34px);}
.jp-header{z-index:100;background:rgba(9,9,13,.88);box-shadow:0 10px 30px rgba(0,0,0,.16);}
.jp-header-inner{min-height:var(--header-h);gap:20px;}
.jp-logo{display:flex;align-items:center;flex:0 0 auto;}
.jp-logo-link{display:inline-flex;align-items:center;line-height:0;transition:transform .18s ease,opacity .18s ease,filter .18s ease;}
.jp-logo-link:hover{transform:translateY(-1px) scale(1.025);filter:drop-shadow(0 0 10px rgba(255,212,0,.18));}
.jp-logo-link svg{display:block;width:auto;height:31px;max-width:160px;}
.jp-logo-mobile{display:none;}
.jp-nav{flex:0 0 auto;gap:18px;}
.jp-nav a{font-size:13px;font-weight:750;letter-spacing:.01em;}
.jp-nav a:hover{color:#fff;}
.jp-search{margin-left:auto;min-width:min(360px,28vw);height:38px;padding:0 14px;background:rgba(255,255,255,.075);border-color:rgba(255,255,255,.095);transition:border-color .16s ease,background .16s ease,box-shadow .16s ease;}
.jp-search:focus-within{background:rgba(255,255,255,.105);border-color:rgba(255,212,0,.35);box-shadow:0 0 0 3px rgba(255,212,0,.10);}
.jp-search::after{content:'⌘K';font-size:10px;font-weight:900;color:rgba(255,255,255,.42);border:1px solid rgba(255,255,255,.12);border-radius:7px;padding:2px 5px;line-height:1;}
.jp-search-results{z-index:200;}

/* Homepage density / app-like layout */
.home .jp-home-top{padding-top:18px;}
.jp-cg-proplus{padding-top:20px;}
.jp-cg-proplus .jp-cg-layout{grid-template-columns:240px minmax(0,1fr);gap:20px;}
.jp-cg-proplus .jp-cg-sidebar{top:calc(var(--header-h) + 14px);max-height:calc(100vh - var(--header-h) - 28px);border-radius:16px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));box-shadow:inset 0 1px 0 rgba(255,255,255,.05);}
.jp-side-title{letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.64);}
.jp-side-cat{min-height:36px;}
.jp-side-cat:hover{background:rgba(255,255,255,.08);transform:translateX(2px);}
.jp-side-cat.is-active{background:rgba(255,212,0,.13);border-color:rgba(255,212,0,.45);box-shadow:inset 3px 0 0 var(--brand);}
.jp-cg-proplus .jp-cg-mosaic{grid-template-columns:repeat(auto-fill,minmax(210px,1fr));grid-auto-rows:126px;grid-auto-flow:dense;gap:12px;}
.jp-cg-proplus .jp-mosaic-item.is-large{grid-column:span 2;grid-row:span 2;}
.jp-cg-proplus .jp-mosaic-item.is-wide{grid-column:span 2;}
.jp-cg-proplus .jp-mosaic-item .jp-card{box-shadow:0 10px 26px rgba(0,0,0,.18);}
.jp-cg-proplus .jp-mosaic-item .jp-card::after,.jp-card::after{content:'▶';position:absolute;right:12px;top:12px;width:34px;height:34px;border-radius:999px;background:rgba(255,212,0,.95);color:#111;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:950;opacity:0;transform:scale(.85);transition:opacity .16s ease,transform .16s ease;box-shadow:0 8px 20px rgba(0,0,0,.28);pointer-events:none;}
.jp-cg-proplus .jp-mosaic-item .jp-card:hover::after,.jp-card:hover::after{opacity:1;transform:scale(1);}
.jp-card{position:relative;will-change:transform;}
.jp-card:hover{transform:translateY(-3px) scale(1.012);}
.jp-card .thumb{overflow:hidden;}
.jp-card img{transition:transform .25s ease,filter .25s ease;}
.jp-card:hover img{transform:scale(1.045);filter:saturate(1.06);}
.jp-link-more{color:var(--brand);font-weight:950;font-size:13px;}
.jp-link-more:hover{text-decoration:underline;text-underline-offset:3px;}
.jp-section-title,.jp-home-title{letter-spacing:-.03em;}
.jp-home-title{font-size:clamp(30px,2.2vw,42px);line-height:.98;margin:0;}
.jp-section-sub{color:rgba(234,234,244,.72);}
.jp-rail-track{scrollbar-width:none;}
.jp-rail-track::-webkit-scrollbar{display:none;}
.jp-rail-btn{z-index:20;width:46px;height:46px;background:rgba(0,0,0,.72);border-color:rgba(255,255,255,.18);color:#fff;font-size:34px;line-height:1;box-shadow:0 8px 26px rgba(0,0,0,.35);opacity:.92;}
.jp-rail-btn:hover{background:rgba(255,212,0,.96);color:#111;transform:translateY(-50%) scale(1.04);}
.jp-rail-btn.prev{left:8px}.jp-rail-btn.next{right:8px}
.jp-cg-sidebar:after{display:none;}

/* Single page: stronger game portal feel */
.single-jogo .jp-page{padding-top:34px;}
.single-jogo .jp-container{max-width:1480px;}
.single-jogo .jp-breadcrumb{max-width:980px;margin-left:auto;margin-right:auto;color:rgba(255,255,255,.46);}
.single-jogo .jp-h1{max-width:980px;margin-left:auto;margin-right:auto;font-size:clamp(34px,3vw,54px);letter-spacing:-.045em;}
.single-jogo .jp-section-sub{max-width:980px;margin-left:auto;margin-right:auto;}
.jp-player{max-width:min(1000px,78vw);border-radius:20px;box-shadow:0 30px 90px rgba(0,0,0,.48);}
.jp-poster::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.18));pointer-events:none;}
.jp-play{z-index:3;box-shadow:0 12px 24px rgba(0,0,0,.32);}
.jp-playerbar{background:rgba(15,15,18,.94);}
.jp-brand{display:inline-flex;align-items:center;gap:8px;}
.jp-brand:before{content:'▶';display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:7px;background:var(--brand);color:#111;font-size:10px;}
.jp-tabs,.jp-seo-game-copy{border-radius:20px;box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 24px 70px rgba(0,0,0,.18);}
.jp-seo-game-copy a{color:#a78bfa;text-decoration:underline;text-underline-offset:3px;font-weight:800;}
.jp-mini-nav{max-width:1120px;margin-left:auto;margin-right:auto;}
.single-jogo .jp-section > .jp-container{max-width:100%;}
.single-jogo .jp-section .jp-section-head{padding:0 clamp(18px,1.7vw,34px);}

/* Mobile: compact app header */
@media (max-width: 820px){
  :root{--header-h:56px;}
  .jp-header-inner{min-height:var(--header-h);gap:12px;flex-wrap:nowrap;padding:0;}
  .jp-logo-full{display:none;}.jp-logo-mobile{display:inline-flex;}
  .jp-logo-link svg{height:35px;max-width:72px;}
  .jp-nav{display:none;}
  .jp-search{min-width:0;flex:1;height:38px;margin-left:0;}
  .jp-search::after{display:none;}
  .jp-cg-proplus .jp-cg-layout{display:block;}
  .jp-cg-proplus .jp-cg-sidebar{position:relative;top:auto;max-height:none;margin-bottom:14px;padding:0;background:transparent;border:0;box-shadow:none;}
  .jp-side-title{display:none;}
  .jp-side-catlist{display:flex;overflow:auto;gap:8px;padding-bottom:4px;scrollbar-width:none;}
  .jp-side-catlist::-webkit-scrollbar{display:none;}
  .jp-side-cat{white-space:nowrap;border-radius:999px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.06);min-height:34px;}
  .jp-cg-proplus .jp-cg-mosaic{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:110px;gap:10px;}
  .jp-cg-proplus .jp-mosaic-item.is-large,.jp-cg-proplus .jp-mosaic-item.is-wide{grid-column:span 2;}
  .jp-cg-proplus .jp-mosaic-item .jp-card::after,.jp-card::after{display:none;}
  .jp-player{max-width:100%;border-radius:16px;margin:18px 0;}
  .single-jogo .jp-h1{font-size:34px;}
}

@media (min-width: 1600px){
  .jp-cg-proplus .jp-cg-layout{grid-template-columns:260px minmax(0,1fr);}
  .jp-cg-proplus .jp-cg-mosaic{grid-template-columns:repeat(auto-fill,minmax(240px,1fr));grid-auto-rows:140px;}
  .jp-cg-proplus .jp-inner-rail-section .jp-card{flex-basis:clamp(230px,11.5vw,310px);}
}


/* ====== 0.2.3: identidade definitiva estilo player ====== */
.jp-logo-link svg{height:36px;max-width:190px;}
.jp-logo-link:hover{filter:drop-shadow(0 0 12px rgba(255,212,0,.22));}
.jp-brand{font-weight:950;color:#fff;}
.jp-brand:before{width:24px;height:24px;border-radius:8px;background:linear-gradient(135deg,#FFE45C,#FFD400 58%,#FFBD00);box-shadow:0 6px 16px rgba(0,0,0,.28);color:#101014;font-size:11px;}
.jp-play{background:linear-gradient(135deg,#FFE45C,#FFD400 58%,#FFBD00);color:#101014;}
.jp-cg-proplus .jp-mosaic-item .jp-card::after,.jp-card::after{background:linear-gradient(135deg,#FFE45C,#FFD400 58%,#FFBD00);color:#101014;}
@media (max-width:820px){.jp-logo-link svg{height:34px;max-width:138px;}.jp-logo-mobile{display:inline-flex;}}

/* ====== 0.2.4: CrazyGames Conversion PRO ====== */
:root{--jp-play-yellow:#FFD400;--jp-play-dark:#101014;}

/* Logo/icon: same play mark across header, player and favicon style */
.jp-logo-link svg path[fill="#101014"]{transform:translateX(-.8px);transform-origin:center;}
.jp-brand{display:inline-flex;align-items:center;gap:9px;font-weight:950;color:#fff;letter-spacing:-.02em;}
.jp-brand:before{
  content:'';display:inline-flex;align-items:center;justify-content:center;
  width:24px;height:24px;border-radius:8px;
  background:linear-gradient(135deg,#FFE45C,#FFD400 58%,#FFBD00);
  box-shadow:0 6px 16px rgba(0,0,0,.28),0 0 0 1px rgba(255,255,255,.08) inset;
}
.jp-brand:after{
  content:'';width:10px;height:12px;background:#101014;margin-left:-26px;margin-right:14px;
  clip-path:polygon(0 0,100% 50%,0 100%);transform:translateX(-1px);pointer-events:none;
}

/* Bigger central play button: clean icon only, higher conversion */
.jp-play{
  width:86px;height:86px;padding:0;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#FFE45C,#FFD400 58%,#FFBD00);
  color:#101014;font-size:0;font-weight:950;
  box-shadow:0 22px 55px rgba(0,0,0,.50),0 0 0 10px rgba(255,212,0,.10),0 0 45px rgba(255,212,0,.35);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
.jp-play:before{
  content:'';width:0;height:0;border-top:16px solid transparent;border-bottom:16px solid transparent;border-left:24px solid #101014;
  transform:translateX(3px);
}
.jp-play-symbol,.jp-play-text{display:none!important;}
.jp-poster:hover .jp-play,.jp-poster:focus-visible .jp-play{
  transform:translate(-50%,-50%) scale(1.08);
  box-shadow:0 24px 65px rgba(0,0,0,.55),0 0 0 14px rgba(255,212,0,.13),0 0 58px rgba(255,212,0,.48);
  filter:saturate(1.05);
}
.jp-poster:focus-visible{outline:none;}
.jp-poster:focus-visible .jp-play{outline:3px solid rgba(255,255,255,.92);outline-offset:6px;}
.jp-poster::before{
  content:'';position:absolute;inset:0;z-index:2;pointer-events:none;
  background:radial-gradient(circle at 50% 50%,rgba(0,0,0,.03),rgba(0,0,0,.24) 72%);
  opacity:.9;transition:opacity .18s ease;
}
.jp-poster:hover::before{opacity:.65;}
.jp-poster::after{z-index:1;}

/* Soft pulse only before playing */
.jp-player:not(.is-playing) .jp-play{animation:jpPlayPulse 2.2s ease-in-out infinite;}
@keyframes jpPlayPulse{
  0%,100%{box-shadow:0 22px 55px rgba(0,0,0,.50),0 0 0 8px rgba(255,212,0,.09),0 0 38px rgba(255,212,0,.26);}
  50%{box-shadow:0 22px 55px rgba(0,0,0,.50),0 0 0 15px rgba(255,212,0,.14),0 0 60px rgba(255,212,0,.42);}
}
@media (prefers-reduced-motion:reduce){.jp-player:not(.is-playing) .jp-play{animation:none}.jp-play,.jp-card,img{transition:none!important}}

/* Player bar consistency */
.jp-playerbar{min-height:62px;padding:13px 16px;}
.jp-player .jp-btn{transition:transform .16s ease,background .16s ease,box-shadow .16s ease;}
.jp-player .jp-btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.14);box-shadow:0 8px 22px rgba(0,0,0,.22);}
.jp-player .jp-lights:hover,.jp-player .jp-fullscreen:hover{background:rgba(255,212,0,.14);}

/* Mobile: keep CTA large enough but not covering the artwork */
@media (max-width:720px){
  .jp-play{width:68px;height:68px;box-shadow:0 16px 38px rgba(0,0,0,.45),0 0 0 7px rgba(255,212,0,.10),0 0 34px rgba(255,212,0,.30);}
  .jp-play:before{border-top-width:12px;border-bottom-width:12px;border-left-width:19px;transform:translateX(2px);}
  .jp-playerbar{min-height:56px;padding:10px 12px;}
  .jp-brand:before{width:22px;height:22px;border-radius:7px;}
}

/* ====== 0.2.5: hotfix logo/player consistency ====== */
.jp-brand::before,
.jp-brand::after{content:none!important;display:none!important;}
.jp-brand{display:inline-flex!important;align-items:center!important;gap:10px!important;font-weight:950!important;color:#fff!important;letter-spacing:-.03em!important;line-height:1!important;}
.jp-brand-icon{width:25px;height:25px;border-radius:8px;background:linear-gradient(135deg,#FFE45C,#FFD400 58%,#FFBD00);display:inline-flex;align-items:center;justify-content:center;box-shadow:0 6px 16px rgba(0,0,0,.28),0 0 0 1px rgba(255,255,255,.08) inset;flex:0 0 auto;}
.jp-brand-icon svg{width:15px;height:15px;display:block;transform:translateX(-.6px);}
.jp-brand-icon path{fill:#101014;}
.jp-brand-name{display:inline-block;font-weight:950;color:#fff;}
.jp-logo-link svg path[fill="#101014"]{transform:translateX(-1.2px)!important;transform-origin:center!important;}
.jp-play{left:50%!important;top:50%!important;transform:translate(-50%,-50%)!important;}
.jp-poster:hover .jp-play,.jp-poster:focus-visible .jp-play{transform:translate(-50%,-50%) scale(1.08)!important;}
@media (max-width:720px){.jp-brand-icon{width:23px;height:23px;border-radius:7px}.jp-brand-icon svg{width:14px;height:14px}.jp-brand{gap:8px!important}}


/* ===== JogosPlay v0.2.6 — single jogo conversion polish ===== */
.single-jogo{
  --jp-single-width: min(1180px, calc(100vw - (var(--jp-edge, 18px) * 2)));
  --jp-readable-width: min(1180px, calc(100vw - (var(--jp-edge, 18px) * 2)));
}
.single-jogo .jp-page{padding-top:26px;}
.single-jogo .jp-container{max-width:1480px;}
.single-jogo .jp-breadcrumb,
.single-jogo .jp-h1,
.single-jogo .jp-page .jp-section-sub,
.single-jogo .jp-article,
.single-jogo .jp-tabs,
.single-jogo .jp-mini-nav,
.single-jogo .jp-seo-game-copy{
  width:var(--jp-readable-width);
  max-width:var(--jp-readable-width);
  margin-left:auto;
  margin-right:auto;
}
.single-jogo .jp-player{
  width:var(--jp-single-width)!important;
  max-width:var(--jp-single-width)!important;
  margin:22px auto 18px!important;
  border-radius:24px;
  overflow:hidden;
}
.single-jogo .jp-stage,
.single-jogo .jp-poster,
.single-jogo .jp-poster-img{
  aspect-ratio:16/9;
  min-height:clamp(260px, 48vw, 664px);
}
.single-jogo .jp-poster-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.single-jogo .jp-framewrap{
  aspect-ratio:16/9;
  min-height:clamp(260px, 48vw, 664px);
}
.single-jogo .jp-framewrap iframe{display:block;}
.single-jogo .jp-play{
  left:50%!important;
  top:50%!important;
  transform:translate(-50%,-50%)!important;
  width:clamp(78px, 7vw, 112px);
  height:clamp(78px, 7vw, 112px);
  padding:0!important;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#FFD400;
  color:#111;
  box-shadow:0 22px 60px rgba(0,0,0,.5), 0 0 0 10px rgba(255,212,0,.12);
}
.single-jogo .jp-play-symbol{font-size:clamp(28px, 3vw, 42px);line-height:1;margin-left:6px;}
.single-jogo .jp-play-text{display:none;}
.single-jogo .jp-playerbar{min-height:64px;padding:12px 16px;}
.single-jogo .jp-actions{align-items:center;}
.jp-vote-count{font-weight:950;font-size:12px;min-width:10px;opacity:.9;}
.jp-player .jp-like[aria-pressed="true"],
.jp-player .jp-dislike[aria-pressed="true"],
.jp-player .jp-lights[aria-pressed="true"]{
  background:rgba(255,212,0,.20)!important;
  border:1px solid rgba(255,212,0,.42)!important;
  color:#FFD400;
}
.jp-lights-overlay{
  position:fixed!important;
  inset:0!important;
  z-index:9990!important;
  background:rgba(0,0,0,.82)!important;
  pointer-events:none!important;
}
.jp-player.is-lights-on,
.jp-player.is-playing{z-index:9999!important;position:relative!important;}
.single-jogo .jp-single-nav{
  margin-top:22px;
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 70px rgba(0,0,0,.18);
}
.jp-single-nav-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:14px;}
.jp-single-nav .jp-catbar{margin:12px 0 18px;}
.jp-single-nav-block{margin-top:18px;}
.jp-single-nav-title{font-weight:950;font-size:16px;color:#fff;margin:0 0 10px;letter-spacing:-.02em;}
.jp-compact-rail .jp-card{flex-basis:clamp(150px, 13vw, 210px);}
.jp-compact-rail .jp-card .meta{padding:9px 10px;}
.jp-compact-rail .jp-card .meta .t{font-size:13px;}
.single-jogo .jp-section:not(.jp-page){padding-top:18px;}
.single-jogo .jp-section > .jp-container{max-width:var(--jp-readable-width)!important;padding-left:0!important;padding-right:0!important;}
.single-jogo .jp-section .jp-section-head{padding:0!important;}
/* card play marker: exact visual center, not low/right */
.jp-card::after{
  right:auto!important;
  top:50%!important;
  left:50%!important;
  transform:translate(-50%,-50%) scale(.86)!important;
}
.jp-card:hover::after{transform:translate(-50%,-50%) scale(1)!important;}
@media (max-width: 820px){
  .single-jogo{--jp-single-width:calc(100vw - 24px);--jp-readable-width:calc(100vw - 24px);}
  .single-jogo .jp-player{border-radius:18px;margin-top:16px!important;}
  .single-jogo .jp-stage,
  .single-jogo .jp-poster,
  .single-jogo .jp-poster-img,
  .single-jogo .jp-framewrap{min-height:auto;}
  .single-jogo .jp-playerbar{gap:10px;align-items:flex-start;flex-direction:column;}
  .single-jogo .jp-actions{width:100%;justify-content:flex-start;gap:8px;}
  .single-jogo .jp-player .jp-btn{min-width:38px;min-height:38px;padding:9px 10px;}
  .single-jogo .jp-btn-text{display:none;}
  .single-jogo .jp-single-nav{padding:16px;border-radius:18px;}
  .jp-single-nav-head{align-items:flex-start;flex-direction:column;}
}

/* ===== JogosPlay v0.3.1 — SINGLE HYBRID PLAYER REAL FIX ===== */
.single-jogo .jp-player{
  position:relative!important;
  display:block!important;
  overflow:hidden!important;
  width:min(1180px, calc(100vw - 36px))!important;
  max-width:min(1180px, calc(100vw - 36px))!important;
  margin:22px auto 18px!important;
  border-radius:24px!important;
  background:#050507!important;
}
.single-jogo .jp-stage{position:relative!important;overflow:hidden!important;border-radius:24px!important;background:#050507!important;}
.single-jogo .jp-poster,
.single-jogo .jp-framewrap,
.single-jogo .jp-poster-img{
  width:100%!important;
  aspect-ratio:16/9!important;
  min-height:clamp(300px, 48vw, 660px)!important;
}
.single-jogo .jp-poster-img{height:100%!important;object-fit:cover!important;object-position:center!important;display:block!important;}
.single-jogo .jp-framewrap iframe{width:100%!important;height:100%!important;display:block!important;}

/* Play sempre no centro geométrico do player */
.single-jogo .jp-play{
  position:absolute!important;
  left:50%!important;
  top:50%!important;
  transform:translate(-50%,-50%)!important;
  z-index:90!important;
  width:clamp(82px, 7vw, 112px)!important;
  height:clamp(82px, 7vw, 112px)!important;
  padding:0!important;
  border-radius:999px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#FFD400!important;
  color:#101014!important;
  box-shadow:0 26px 70px rgba(0,0,0,.58), 0 0 0 12px rgba(255,212,0,.13), 0 0 50px rgba(255,212,0,.34)!important;
}
.single-jogo .jp-poster:hover .jp-play{transform:translate(-50%,-50%) scale(1.07)!important;}
.single-jogo .jp-play-symbol{display:none!important;}
.single-jogo .jp-play-text{display:none!important;}
.single-jogo .jp-play:before{
  content:''!important;
  display:block!important;
  width:0!important;height:0!important;
  border-top:18px solid transparent!important;
  border-bottom:18px solid transparent!important;
  border-left:28px solid #101014!important;
  transform:translateX(4px)!important;
}

/* Menu híbrido Poki/CrazyGames — visível sobre o player */
.single-jogo .jp-playerbar{
  position:absolute!important;
  left:18px!important;
  right:18px!important;
  bottom:18px!important;
  z-index:120!important;
  min-height:56px!important;
  padding:10px 12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  border-radius:18px!important;
  border:1px solid rgba(255,255,255,.12)!important;
  background:linear-gradient(180deg, rgba(20,20,24,.78), rgba(8,8,10,.72))!important;
  backdrop-filter:blur(16px)!important;
  -webkit-backdrop-filter:blur(16px)!important;
  box-shadow:0 18px 50px rgba(0,0,0,.42)!important;
}
.single-jogo .jp-actions{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important;justify-content:flex-end!important;}
.single-jogo .jp-player .jp-btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:7px!important;
  min-width:42px!important;
  height:42px!important;
  padding:0 13px!important;
  border-radius:999px!important;
  border:1px solid rgba(255,255,255,.10)!important;
  background:rgba(255,255,255,.08)!important;
  color:#fff!important;
  font-weight:900!important;
  cursor:pointer!important;
}
.single-jogo .jp-player .jp-btn:hover{background:rgba(255,212,0,.16)!important;border-color:rgba(255,212,0,.28)!important;transform:translateY(-1px)!important;}
.single-jogo .jp-player .jp-like[aria-pressed="true"],
.single-jogo .jp-player .jp-dislike[aria-pressed="true"],
.single-jogo .jp-player .jp-lights[aria-pressed="true"]{background:rgba(255,212,0,.22)!important;border-color:rgba(255,212,0,.5)!important;color:#FFD400!important;}
.single-jogo .jp-brand{display:inline-flex!important;align-items:center!important;gap:10px!important;white-space:nowrap!important;}
.single-jogo .jp-brand-name{font-size:14px!important;}
.single-jogo .jp-brand-icon{width:28px!important;height:28px!important;}
.single-jogo .jp-close{display:none!important;}
.single-jogo .jp-player.is-playing .jp-close,
.single-jogo .jp-toggle:checked ~ .jp-playerbar .jp-close{display:inline-flex!important;}
.single-jogo .jp-lights-overlay{position:fixed!important;inset:0!important;background:rgba(0,0,0,.84)!important;z-index:9990!important;pointer-events:none!important;}
.single-jogo .jp-player.is-lights-on{z-index:9999!important;}

@media(max-width:820px){
  .single-jogo .jp-player{width:calc(100vw - 24px)!important;max-width:calc(100vw - 24px)!important;border-radius:18px!important;}
  .single-jogo .jp-stage{border-radius:18px!important;}
  .single-jogo .jp-poster,.single-jogo .jp-framewrap,.single-jogo .jp-poster-img{min-height:auto!important;}
  .single-jogo .jp-playerbar{left:10px!important;right:10px!important;bottom:10px!important;border-radius:16px!important;align-items:flex-start!important;flex-direction:column!important;}
  .single-jogo .jp-actions{width:100%!important;justify-content:flex-start!important;}
  .single-jogo .jp-btn-text{display:none!important;}
  .single-jogo .jp-play{width:72px!important;height:72px!important;}
  .single-jogo .jp-play:before{border-top-width:13px!important;border-bottom-width:13px!important;border-left-width:22px!important;}
}

/* =========================================================
   v0.3.2 — CrazyGames/Poki hybrid bottom player controls
   ========================================================= */
.single-jogo .jp-player{position:relative!important;overflow:hidden!important;isolation:isolate;background:#050506!important;}
.single-jogo .jp-stage{position:relative!important;z-index:1!important;}
.single-jogo .jp-framewrap{display:none;}
.single-jogo .jp-player.is-playing .jp-framewrap,.single-jogo .jp-toggle:checked + .jp-stage .jp-framewrap{display:block!important;}
.single-jogo .jp-player.is-playing .jp-poster,.single-jogo .jp-toggle:checked + .jp-stage .jp-poster{display:none!important;}
.single-jogo .jp-playerbar{position:absolute!important;left:clamp(12px,1.4vw,22px)!important;right:clamp(12px,1.4vw,22px)!important;bottom:clamp(12px,1.4vw,22px)!important;z-index:60!important;min-height:clamp(58px,4.3vw,74px)!important;padding:clamp(10px,1vw,16px)!important;border-radius:clamp(16px,1.5vw,26px)!important;background:linear-gradient(90deg,rgba(12,16,22,.88),rgba(20,24,24,.78),rgba(31,39,12,.78))!important;border:1px solid rgba(255,255,255,.12)!important;box-shadow:0 18px 55px rgba(0,0,0,.42)!important;backdrop-filter:blur(16px) saturate(1.25)!important;-webkit-backdrop-filter:blur(16px) saturate(1.25)!important;}
.single-jogo .jp-brand{display:flex!important;align-items:center!important;gap:12px!important;color:#fff!important;font-size:clamp(15px,1.05vw,18px)!important;font-weight:950!important;}
.single-jogo .jp-brand-icon{width:clamp(34px,2.5vw,46px)!important;height:clamp(34px,2.5vw,46px)!important;border-radius:12px!important;background:#FFD400!important;color:#111!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;box-shadow:0 10px 24px rgba(255,212,0,.22)!important;}
.single-jogo .jp-brand-icon svg{width:20px;height:20px;fill:currentColor;}
.single-jogo .jp-actions{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:nowrap!important;}
.single-jogo .jp-player .jp-btn{min-height:clamp(38px,2.8vw,50px)!important;min-width:clamp(42px,3vw,56px)!important;padding:0 clamp(12px,1vw,18px)!important;border-radius:999px!important;border:1px solid rgba(255,255,255,.08)!important;background:rgba(255,255,255,.10)!important;color:#fff!important;font-weight:950!important;box-shadow:none!important;}
.single-jogo .jp-player .jp-btn:hover{background:rgba(255,255,255,.16)!important;transform:translateY(-1px)!important;}
.single-jogo .jp-player .jp-like[aria-pressed="true"],.single-jogo .jp-player .jp-dislike[aria-pressed="true"]{background:rgba(255,212,0,.18)!important;color:#FFD400!important;border-color:rgba(255,212,0,.42)!important;}
.single-jogo .jp-player .jp-lights,.single-jogo .jp-player .jp-fullscreen{min-width:auto!important;}
.single-jogo .jp-player .jp-lights .jp-btn-text,.single-jogo .jp-player .jp-fullscreen .jp-btn-text{display:inline!important;font-size:clamp(13px,1vw,16px)!important;line-height:1!important;white-space:nowrap!important;}
.single-jogo .jp-player .jp-close{display:none!important;}
.single-jogo .jp-play{z-index:45!important;left:50%!important;top:50%!important;transform:translate(-50%,-50%)!important;}
@media (max-width:760px){.single-jogo .jp-playerbar{left:10px!important;right:10px!important;bottom:10px!important;min-height:54px!important;padding:9px 10px!important;border-radius:16px!important;}.single-jogo .jp-brand-name{display:none!important;}.single-jogo .jp-actions{gap:6px!important;justify-content:flex-end!important;width:auto!important;}.single-jogo .jp-player .jp-btn{min-width:40px!important;min-height:40px!important;padding:0 11px!important;}.single-jogo .jp-player .jp-lights .jp-btn-text{font-size:12px!important;}.single-jogo .jp-player .jp-fullscreen .jp-btn-text{display:none!important;}}

/* =========================================================
   v0.3.3 — FINAL: controls BELOW game, never overlay
   ========================================================= */
.single-jogo .jp-player{
  position:relative!important;
  overflow:visible!important;
  isolation:isolate!important;
  background:transparent!important;
  box-shadow:none!important;
}
.single-jogo .jp-stage{
  position:relative!important;
  z-index:1!important;
  overflow:hidden!important;
  border-radius:24px 24px 0 0!important;
  background:#050506!important;
  box-shadow:0 26px 80px rgba(0,0,0,.45)!important;
}
.single-jogo .jp-poster,
.single-jogo .jp-framewrap,
.single-jogo .jp-poster-img{
  border-radius:24px 24px 0 0!important;
}
.single-jogo .jp-playerbar{
  position:relative!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  top:auto!important;
  z-index:20!important;
  width:100%!important;
  min-height:76px!important;
  margin:0!important;
  padding:14px 20px!important;
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  border-radius:0 0 24px 24px!important;
  background:linear-gradient(90deg,rgba(17,21,30,.98),rgba(23,30,28,.96),rgba(31,39,16,.94))!important;
  border:1px solid rgba(255,255,255,.10)!important;
  border-top:0!important;
  box-shadow:0 24px 70px rgba(0,0,0,.38)!important;
  backdrop-filter:blur(14px) saturate(1.2)!important;
  -webkit-backdrop-filter:blur(14px) saturate(1.2)!important;
}
.single-jogo .jp-actions{margin-left:auto!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:8px!important;flex-wrap:nowrap!important;width:auto!important;}
.single-jogo .jp-player .jp-close{display:none!important;}
.single-jogo .jp-player.is-playing .jp-close,
.single-jogo .jp-toggle:checked ~ .jp-playerbar .jp-close{display:none!important;}
.single-jogo .jp-brand-icon{width:46px!important;height:46px!important;border-radius:13px!important;}
.single-jogo .jp-player .jp-btn{min-height:48px!important;min-width:54px!important;}
@media (max-width:760px){
  .single-jogo .jp-stage,.single-jogo .jp-poster,.single-jogo .jp-framewrap,.single-jogo .jp-poster-img{border-radius:18px 18px 0 0!important;}
  .single-jogo .jp-playerbar{position:relative!important;left:auto!important;right:auto!important;bottom:auto!important;top:auto!important;min-height:62px!important;padding:10px 12px!important;border-radius:0 0 18px 18px!important;flex-direction:row!important;align-items:center!important;}
  .single-jogo .jp-actions{gap:6px!important;margin-left:auto!important;width:auto!important;justify-content:flex-end!important;}
}

/* =========================================================
   v0.4.1 — POKI CLEAN REAL SINGLE
   Experiência primeiro: player grande, barra abaixo, conteúdo limpo.
   Estrutura preparada para futura sidebar/anúncios sem aparecer agora.
   ========================================================= */
body.single-jogo{
  --jp-single-shell: min(1540px, calc(100vw - 44px));
  --jp-single-readable: min(980px, calc(100vw - 44px));
  --jp-single-radius: 24px;
}
.single-jogo .jp-page{
  padding-top:26px!important;
  padding-bottom:44px!important;
}
.single-jogo .jp-page > .jp-container{
  max-width:var(--jp-single-shell)!important;
  width:100%!important;
  margin-inline:auto!important;
  padding-left:0!important;
  padding-right:0!important;
}
.single-jogo .jp-breadcrumb,
.single-jogo .jp-h1,
.single-jogo .jp-page .jp-section-sub{
  max-width:var(--jp-single-shell)!important;
  width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
}
.single-jogo .jp-h1{
  font-size:clamp(34px,4.2vw,64px)!important;
  letter-spacing:-.055em!important;
  margin-top:18px!important;
  margin-bottom:8px!important;
}
.single-jogo .jp-article{
  max-width:var(--jp-single-shell)!important;
  width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding:0!important;
}
.single-jogo .jp-player{
  width:100%!important;
  max-width:var(--jp-single-shell)!important;
  margin:22px auto 34px!important;
  border-radius:var(--jp-single-radius)!important;
  overflow:hidden!important;
  background:#07080c!important;
  border:1px solid rgba(255,255,255,.08)!important;
  box-shadow:0 34px 110px rgba(0,0,0,.50)!important;
  position:relative!important;
  isolation:isolate!important;
}
.single-jogo .jp-stage{
  width:100%!important;
  aspect-ratio:16/9!important;
  min-height:520px!important;
  max-height:calc(100vh - 190px)!important;
  border-radius:0!important;
  overflow:hidden!important;
  background:#050507!important;
  box-shadow:none!important;
  position:relative!important;
}
.single-jogo .jp-poster,
.single-jogo .jp-framewrap{
  width:100%!important;
  height:100%!important;
  min-height:inherit!important;
  aspect-ratio:auto!important;
  border-radius:0!important;
  background:#050507!important;
}
.single-jogo .jp-poster-img,
.single-jogo .jp-framewrap iframe{
  width:100%!important;
  height:100%!important;
  display:block!important;
  border:0!important;
  border-radius:0!important;
  object-fit:cover!important;
  object-position:center!important;
}
.single-jogo .jp-poster::after{
  background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.18))!important;
}
.single-jogo .jp-play{
  left:50%!important;
  top:50%!important;
  transform:translate(-50%,-50%)!important;
  width:clamp(86px,7vw,116px)!important;
  height:clamp(86px,7vw,116px)!important;
  min-width:0!important;
  padding:0!important;
  border-radius:999px!important;
  background:#FFD400!important;
  color:#050507!important;
  border:0!important;
  box-shadow:0 22px 58px rgba(255,212,0,.30),0 0 0 18px rgba(255,212,0,.10)!important;
  z-index:50!important;
}
.single-jogo .jp-play-text{display:none!important;}
.single-jogo .jp-play-symbol{font-size:clamp(34px,3.2vw,48px)!important;line-height:1!important;margin-left:6px!important;}
.single-jogo .jp-poster:hover .jp-play,
.single-jogo .jp-poster:focus-visible .jp-play{
  transform:translate(-50%,-50%) scale(1.06)!important;
}
.single-jogo .jp-playerbar{
  position:relative!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  top:auto!important;
  z-index:5!important;
  width:100%!important;
  min-height:66px!important;
  margin:0!important;
  padding:10px 16px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:14px!important;
  border-radius:0!important;
  background:#191b26!important;
  border:0!important;
  border-top:1px solid rgba(255,255,255,.08)!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
.single-jogo .jp-brand{
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  min-width:0!important;
}
.single-jogo .jp-brand-icon{
  width:42px!important;
  height:42px!important;
  border-radius:12px!important;
  background:#FFD400!important;
  color:#050507!important;
  box-shadow:none!important;
}
.single-jogo .jp-brand-name{
  color:#fff!important;
  font-weight:950!important;
  font-size:16px!important;
}
.single-jogo .jp-actions{
  margin-left:auto!important;
  width:auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:8px!important;
  flex-wrap:nowrap!important;
}
.single-jogo .jp-player .jp-btn{
  min-width:44px!important;
  min-height:42px!important;
  height:42px!important;
  padding:0 14px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  border-radius:999px!important;
  color:#fff!important;
  background:rgba(255,255,255,.08)!important;
  border:1px solid rgba(255,255,255,.08)!important;
  box-shadow:none!important;
  font-weight:900!important;
}
.single-jogo .jp-player .jp-btn:hover{
  background:rgba(255,255,255,.14)!important;
  transform:translateY(-1px)!important;
}
.single-jogo .jp-player .jp-like[aria-pressed="true"],
.single-jogo .jp-player .jp-dislike[aria-pressed="true"],
.single-jogo .jp-player .jp-lights[aria-pressed="true"]{
  background:rgba(255,212,0,.18)!important;
  border-color:rgba(255,212,0,.42)!important;
  color:#FFD400!important;
}
.single-jogo .jp-player .jp-close{display:none!important;}
.single-jogo .jp-player.is-playing .jp-close,
.single-jogo .jp-toggle:checked ~ .jp-playerbar .jp-close{display:none!important;}
.single-jogo .jp-tabs,
.single-jogo .jp-mini-nav,
.single-jogo .jp-single-nav{
  max-width:var(--jp-single-readable)!important;
  width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.single-jogo .jp-tabs{
  margin-top:8px!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
.single-jogo .jp-tabpanes{
  background:transparent!important;
  border:0!important;
  padding:18px 0 0!important;
}
.single-jogo .jp-tabpane{
  font-size:16px!important;
  line-height:1.82!important;
  color:rgba(255,255,255,.90)!important;
}
.single-jogo .jp-tabpane h2,
.single-jogo .jp-tabpane h3{
  color:#fff!important;
  letter-spacing:-.035em!important;
}
.single-jogo .jp-mini-nav{
  margin-top:36px!important;
  padding:22px!important;
  border-radius:24px!important;
  border:1px solid rgba(255,255,255,.08)!important;
  background:rgba(255,255,255,.035)!important;
}
.single-jogo .jp-single-nav .jp-rail-track,
.single-jogo .jp-section .jp-rail-track{
  scroll-padding-left:0!important;
}
.single-jogo .jp-section:not(.jp-page){
  padding-top:34px!important;
}
.single-jogo .jp-section:not(.jp-page) > .jp-container{
  max-width:var(--jp-single-shell)!important;
  padding-left:0!important;
  padding-right:0!important;
}
/* Slots futuros de anúncio: ficam invisíveis agora, mas a arquitetura já aceita. */
.single-jogo .jp-future-ad-slot:empty{display:none!important;}
@media (max-width:900px){
  body.single-jogo{--jp-single-shell:calc(100vw - 24px);--jp-single-readable:calc(100vw - 24px);--jp-single-radius:18px;}
  .single-jogo .jp-stage{min-height:auto!important;max-height:none!important;aspect-ratio:16/9!important;}
  .single-jogo .jp-playerbar{min-height:58px!important;padding:9px 10px!important;gap:8px!important;}
  .single-jogo .jp-brand-name{display:none!important;}
  .single-jogo .jp-brand-icon{width:40px!important;height:40px!important;}
  .single-jogo .jp-actions{gap:6px!important;}
  .single-jogo .jp-player .jp-btn{min-width:40px!important;min-height:40px!important;height:40px!important;padding:0 10px!important;}
  .single-jogo .jp-player .jp-fullscreen .jp-btn-text{display:none!important;}
  .single-jogo .jp-player .jp-lights .jp-btn-text{font-size:12px!important;}
}

/* =========================================================
   v0.4.2 — POKI CLEAN + SIDEBAR REAL
   Player limpo, controles abaixo, sidebar de jogos pronta para monetização futura.
   ========================================================= */
body.single-jogo{--jp-single-shell:min(1680px,calc(100vw - 44px));--jp-side-col:300px;--jp-single-readable:min(980px,100%);}
.single-jogo .jp-page>.jp-container{max-width:var(--jp-single-shell)!important;width:100%!important;margin-inline:auto!important;padding-left:0!important;padding-right:0!important;}
.single-jogo .jp-breadcrumb,.single-jogo .jp-h1,.single-jogo .jp-page .jp-section-sub{max-width:none!important;width:calc(100% - var(--jp-side-col) - 28px)!important;margin-left:0!important;margin-right:auto!important;}
.single-jogo .jp-single-layout{display:grid!important;grid-template-columns:minmax(0,1fr) var(--jp-side-col)!important;gap:28px!important;align-items:start!important;width:100%!important;margin-top:18px!important;}
.single-jogo .jp-single-main{min-width:0!important;width:100%!important;}
.single-jogo .jp-article,.single-jogo .jp-tabs,.single-jogo .jp-mini-nav,.single-jogo .jp-single-nav{width:100%!important;max-width:none!important;margin-left:0!important;margin-right:0!important;}
.single-jogo .jp-player{width:100%!important;max-width:none!important;margin:0 0 28px!important;border-radius:22px!important;overflow:hidden!important;background:#090a0f!important;border:1px solid rgba(255,255,255,.08)!important;box-shadow:0 30px 90px rgba(0,0,0,.45)!important;}
.single-jogo .jp-stage{width:100%!important;aspect-ratio:16/9!important;min-height:clamp(430px,44vw,760px)!important;max-height:calc(100vh - 176px)!important;border-radius:0!important;overflow:hidden!important;background:#050507!important;}
.single-jogo .jp-poster,.single-jogo .jp-framewrap,.single-jogo .jp-poster-img,.single-jogo .jp-framewrap iframe{width:100%!important;height:100%!important;min-height:inherit!important;border-radius:0!important;}
.single-jogo .jp-playerbar{position:relative!important;left:auto!important;right:auto!important;bottom:auto!important;top:auto!important;min-height:68px!important;padding:12px 16px!important;background:#171923!important;border-top:1px solid rgba(255,255,255,.08)!important;border-radius:0!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;}
.single-jogo .jp-player .jp-close,.single-jogo .jp-player.is-playing .jp-close,.single-jogo .jp-toggle:checked~.jp-playerbar .jp-close{display:none!important;}
.single-jogo .jp-tabs{max-width:var(--jp-single-readable)!important;margin-top:4px!important;}
.single-jogo .jp-single-nav{max-width:100%!important;margin-top:34px!important;}
.single-jogo .jp-single-sidebar{position:sticky!important;top:86px!important;max-height:calc(100vh - 104px)!important;overflow:auto!important;scrollbar-width:none!important;padding-bottom:12px!important;}
.single-jogo .jp-single-sidebar::-webkit-scrollbar{display:none!important;}
.single-jogo .jp-sidebar-panel{border:1px solid rgba(255,255,255,.08)!important;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025))!important;border-radius:20px!important;padding:12px!important;margin-bottom:14px!important;box-shadow:0 20px 60px rgba(0,0,0,.18)!important;}
.single-jogo .jp-sidebar-panel-soft{background:rgba(255,255,255,.028)!important;}
.single-jogo .jp-sidebar-title{font-weight:950!important;color:#fff!important;font-size:15px!important;letter-spacing:-.02em!important;margin:2px 2px 10px!important;}
.single-jogo .jp-sidebar-list{display:grid!important;gap:10px!important;}
.single-jogo .jp-sidebar-game{display:grid!important;grid-template-columns:92px minmax(0,1fr)!important;gap:10px!important;align-items:center!important;min-height:58px!important;padding:6px!important;border-radius:14px!important;color:#fff!important;background:rgba(255,255,255,.035)!important;text-decoration:none!important;transition:background .16s ease,transform .16s ease!important;}
.single-jogo .jp-sidebar-game:hover{background:rgba(255,255,255,.08)!important;transform:translateY(-1px)!important;}
.single-jogo .jp-sidebar-thumb{display:block!important;aspect-ratio:16/9!important;border-radius:10px!important;overflow:hidden!important;background:#111!important;}
.single-jogo .jp-sidebar-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;}
.single-jogo .jp-sidebar-meta{min-width:0!important;display:block!important;}
.single-jogo .jp-sidebar-meta strong{display:block!important;font-size:12px!important;line-height:1.18!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;color:#fff!important;}
.single-jogo .jp-sidebar-meta em{display:block!important;font-style:normal!important;font-size:11px!important;line-height:1.2!important;margin-top:4px!important;color:rgba(255,255,255,.55)!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
.single-jogo .jp-future-ad-slot:empty{display:none!important;}
@media (max-width:1180px){body.single-jogo{--jp-single-shell:calc(100vw - 28px);--jp-side-col:260px;}.single-jogo .jp-single-layout{gap:18px!important;}.single-jogo .jp-sidebar-game{grid-template-columns:78px minmax(0,1fr)!important;}}
@media (max-width:960px){body.single-jogo{--jp-single-shell:calc(100vw - 24px);}.single-jogo .jp-breadcrumb,.single-jogo .jp-h1,.single-jogo .jp-page .jp-section-sub{width:100%!important;}.single-jogo .jp-single-layout{display:block!important;}.single-jogo .jp-single-sidebar{position:relative!important;top:auto!important;max-height:none!important;overflow:visible!important;margin-top:28px!important;}.single-jogo .jp-sidebar-list{grid-template-columns:repeat(2,minmax(0,1fr))!important;}.single-jogo .jp-stage{min-height:auto!important;max-height:none!important;}}
@media (max-width:620px){.single-jogo .jp-sidebar-list{grid-template-columns:1fr!important;}.single-jogo .jp-playerbar{min-height:60px!important;padding:10px!important;}.single-jogo .jp-brand-name{display:none!important;}.single-jogo .jp-actions{gap:6px!important;}.single-jogo .jp-player .jp-btn{min-width:38px!important;height:38px!important;min-height:38px!important;padding:0 10px!important;}.single-jogo .jp-player .jp-fullscreen .jp-btn-text{display:none!important;}}

/* v0.4.3 - Poki-style player menu below the game (not overlay) */
.single-jogo .jp-player,.jp-player{overflow:visible!important;background:transparent!important;border:0!important;box-shadow:none!important}
.single-jogo .jp-stage{position:relative!important;overflow:hidden!important;border-radius:24px 24px 0 0!important;background:#07080d!important;box-shadow:0 22px 70px rgba(0,0,0,.38)!important}
.single-jogo .jp-poster,.single-jogo .jp-framewrap{border-radius:24px 24px 0 0!important}
.single-jogo .jp-poki-playerbar,.single-jogo .jp-playerbar{position:relative!important;inset:auto!important;transform:none!important;width:100%!important;min-height:88px!important;margin:0!important;padding:16px 24px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:20px!important;border-radius:0 0 24px 24px!important;background:rgba(255,255,255,.96)!important;color:#06142b!important;border:1px solid rgba(255,255,255,.72)!important;border-top:0!important;box-shadow:0 18px 55px rgba(0,0,0,.28)!important;backdrop-filter:blur(18px)!important;-webkit-backdrop-filter:blur(18px)!important;z-index:4!important}
.single-jogo .jp-game-info{display:flex!important;align-items:center!important;gap:14px!important;min-width:0!important}
.single-jogo .jp-game-avatar{width:62px!important;height:62px!important;flex:0 0 62px!important;display:grid!important;place-items:center!important;overflow:hidden!important;border-radius:16px!important;background:#eef2f8!important;box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)!important}
.single-jogo .jp-game-avatar img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}
.single-jogo .jp-game-avatar-fallback{width:100%!important;height:100%!important;display:grid!important;place-items:center!important;color:#07080d!important;background:#FFD400!important;font-weight:900!important}
.single-jogo .jp-game-copy{min-width:0!important;display:grid!important;gap:2px!important}
.single-jogo .jp-game-copy strong{font-size:clamp(18px,1.6vw,28px)!important;line-height:1.05!important;font-weight:900!important;letter-spacing:-.03em!important;color:#071a33!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.single-jogo .jp-game-copy em{font-style:normal!important;font-size:15px!important;font-weight:650!important;color:rgba(7,26,51,.70)!important}
.single-jogo .jp-poki-actions{margin-left:auto!important;display:flex!important;align-items:center!important;gap:16px!important;flex-wrap:nowrap!important}
.single-jogo .jp-poki-actions .jp-btn{min-width:54px!important;height:54px!important;padding:0 15px!important;border:0!important;border-radius:18px!important;background:transparent!important;color:#008cff!important;box-shadow:none!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;font-size:18px!important;position:relative!important}
.single-jogo .jp-poki-actions .jp-btn:hover{background:rgba(0,140,255,.10)!important;transform:translateY(-1px)!important}
.single-jogo .jp-poki-actions .jp-btn[aria-pressed="true"],.single-jogo .jp-poki-actions .jp-btn.is-active{background:rgba(255,212,0,.22)!important;color:#06142b!important}
.single-jogo .jp-poki-actions .jp-lights,.single-jogo .jp-poki-actions .jp-fullscreen{width:54px!important;min-width:54px!important;padding:0!important}
.single-jogo .jp-poki-actions .jp-lights .jp-btn-text,.single-jogo .jp-poki-actions .jp-fullscreen .jp-btn-text{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important}
.single-jogo .jp-poki-actions .jp-like::before,.single-jogo .jp-poki-actions .jp-dislike::before,.single-jogo .jp-poki-actions .jp-lights::before,.single-jogo .jp-poki-actions .jp-fullscreen::before{font-size:28px!important;line-height:1!important;font-family:system-ui,-apple-system,Segoe UI,sans-serif!important}
.single-jogo .jp-poki-actions .jp-like::before{content:"♡"!important;font-weight:900!important;transform:rotate(180deg)}
.single-jogo .jp-poki-actions .jp-dislike::before{content:"♡"!important;font-weight:900!important}
.single-jogo .jp-poki-actions .jp-lights::before{content:"⚑"!important}
.single-jogo .jp-poki-actions .jp-fullscreen::before{content:"⛶"!important;font-size:30px!important}
.single-jogo .jp-poki-actions .jp-vote-count{display:block!important;min-width:34px!important;margin-top:48px!important;margin-left:-42px!important;color:rgba(7,26,51,.62)!important;font-size:14px!important;font-weight:850!important;text-align:center!important}
@media(max-width:760px){.single-jogo .jp-poki-playerbar,.single-jogo .jp-playerbar{min-height:74px!important;padding:12px!important;gap:10px!important;border-radius:0 0 18px 18px!important}.single-jogo .jp-stage,.single-jogo .jp-poster,.single-jogo .jp-framewrap{border-radius:18px 18px 0 0!important}.single-jogo .jp-game-avatar{width:48px!important;height:48px!important;flex-basis:48px!important;border-radius:13px!important}.single-jogo .jp-game-copy strong{font-size:17px!important;max-width:38vw!important}.single-jogo .jp-game-copy em{font-size:12px!important}.single-jogo .jp-poki-actions{gap:4px!important}.single-jogo .jp-poki-actions .jp-btn{min-width:42px!important;width:42px!important;height:42px!important;border-radius:13px!important;padding:0!important}.single-jogo .jp-poki-actions .jp-like::before,.single-jogo .jp-poki-actions .jp-dislike::before,.single-jogo .jp-poki-actions .jp-lights::before,.single-jogo .jp-poki-actions .jp-fullscreen::before{font-size:22px!important}.single-jogo .jp-poki-actions .jp-vote-count{display:none!important}}

/* =========================================================
   JogosPlay v0.5.0 — Single PRO Layout
   Player clean + sidebar preparada para AdSense + categorias ilustradas
   ========================================================= */
.single-jogo .jp-container{max-width:1500px}
.single-jogo .jp-single-layout{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 336px!important;
  gap:22px!important;
  align-items:start!important;
}
.single-jogo .jp-single-main{min-width:0!important}
.single-jogo .jp-article{max-width:none!important;width:100%!important}
.single-jogo .jp-player{
  width:100%!important;
  max-width:none!important;
  border-radius:24px!important;
  overflow:hidden!important;
  background:#080a10!important;
  box-shadow:0 24px 80px rgba(0,0,0,.42)!important;
}
.single-jogo .jp-stage{border-radius:24px 24px 0 0!important;overflow:hidden!important;background:#0a0c12!important;position:relative!important}
.single-jogo .jp-poster,.single-jogo .jp-framewrap{aspect-ratio:16/9!important;min-height:520px!important;border-radius:24px 24px 0 0!important}
.single-jogo .jp-poster-img,.single-jogo .jp-poster img{width:100%!important;height:100%!important;object-fit:cover!important}
.single-jogo .jp-play{
  top:50%!important;left:50%!important;transform:translate(-50%,-50%)!important;
  width:106px!important;height:106px!important;border-radius:999px!important;background:#ffd400!important;color:#08090d!important;
  display:flex!important;align-items:center!important;justify-content:center!important;box-shadow:0 18px 55px rgba(255,212,0,.34)!important
}
.single-jogo .jp-play-text{display:none!important}.single-jogo .jp-play-symbol{font-size:44px!important;line-height:1!important;margin-left:6px!important}
.single-jogo .jp-playerbar.jp-poki-playerbar{
  position:relative!important;inset:auto!important;z-index:2!important;
  display:flex!important;align-items:center!important;justify-content:space-between!important;gap:18px!important;
  min-height:88px!important;padding:16px 22px!important;margin:0!important;border-radius:0 0 24px 24px!important;
  background:#fff!important;color:#0b1930!important;border:0!important;box-shadow:none!important
}
.single-jogo .jp-game-info{display:flex!important;align-items:center!important;gap:14px!important;min-width:0!important}
.single-jogo .jp-game-avatar{width:56px!important;height:56px!important;border-radius:14px!important;background:#eef3f8!important;overflow:hidden!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;flex:0 0 56px!important}
.single-jogo .jp-game-avatar img{width:100%!important;height:100%!important;object-fit:cover!important}
.single-jogo .jp-game-copy strong{display:block!important;color:#062143!important;font-size:20px!important;line-height:1.1!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;max-width:430px!important}
.single-jogo .jp-game-copy em{display:block!important;color:#52607a!important;font-style:normal!important;margin-top:4px!important;font-size:15px!important}
.single-jogo .jp-actions{display:flex!important;gap:16px!important;align-items:center!important;flex-wrap:nowrap!important}
.single-jogo .jp-actions .jp-btn{width:auto!important;height:auto!important;min-width:44px!important;border:0!important;background:transparent!important;color:#0795ff!important;border-radius:12px!important;padding:7px 8px!important;font-weight:900!important;box-shadow:none!important;font-size:0!important;display:inline-flex!important;align-items:center!important;gap:8px!important;justify-content:center!important}
.single-jogo .jp-actions .jp-btn:hover{background:#eef7ff!important;color:#007ee0!important;transform:translateY(-1px)!important}
.single-jogo .jp-actions .jp-like:before{content:'👍';font-size:30px!important;line-height:1!important}
.single-jogo .jp-actions .jp-dislike:before{content:'👎';font-size:30px!important;line-height:1!important}
.single-jogo .jp-actions .jp-lights:before{content:'⚑';font-size:30px!important;line-height:1!important;color:#0795ff!important}
.single-jogo .jp-actions .jp-fullscreen:before{content:'⛶';font-size:34px!important;line-height:1!important;color:#0795ff!important}
.single-jogo .jp-actions .jp-btn-text{font-size:0!important}.single-jogo .jp-vote-count{font-size:14px!important;color:#52607a!important;font-weight:900!important;margin-left:2px!important}

/* Sidebar: CrazyGames inspired, but clean and ready for real AdSense */
.single-jogo .jp-single-sidebar.jp-pro-sidebar{display:block!important;position:sticky!important;top:78px!important;align-self:start!important;max-height:calc(100vh - 92px)!important;overflow:auto!important;padding-right:4px!important;scrollbar-width:thin!important}
.single-jogo .jp-sidebar-panel{background:transparent!important;border:0!important;padding:0!important;box-shadow:none!important;margin:0 0 16px!important}
.single-jogo .jp-sidebar-title{color:#fff!important;font-size:16px!important;font-weight:950!important;margin:0 0 12px!important;letter-spacing:-.02em!important}
.single-jogo .jp-sidebar-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}
.single-jogo .jp-sidebar-game-tile{display:block!important;position:relative!important;border-radius:14px!important;overflow:hidden!important;background:#171923!important;min-height:86px!important;text-decoration:none!important;box-shadow:0 10px 25px rgba(0,0,0,.25)!important;transition:transform .18s ease, filter .18s ease!important}
.single-jogo .jp-sidebar-game-tile:hover{transform:translateY(-2px) scale(1.025)!important;filter:brightness(1.08)!important}
.single-jogo .jp-sidebar-tile-thumb{display:block!important;aspect-ratio:16/9!important;width:100%!important;overflow:hidden!important;background:#222!important}
.single-jogo .jp-sidebar-tile-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}
.single-jogo .jp-sidebar-tile-title{position:absolute!important;left:0!important;right:0!important;bottom:0!important;padding:22px 8px 7px!important;background:linear-gradient(to top,rgba(0,0,0,.82),rgba(0,0,0,0))!important;color:#fff!important;font-size:11px!important;font-weight:900!important;line-height:1.15!important;text-shadow:0 1px 2px rgba(0,0,0,.7)!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.single-jogo .jp-sidebar-ad{grid-column:1/-1!important;min-height:250px!important;border-radius:16px!important;background:linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.025))!important;border:1px dashed rgba(255,255,255,.18)!important;display:flex!important;align-items:center!important;justify-content:center!important;color:rgba(255,255,255,.48)!important;font-size:12px!important;font-weight:800!important;margin-bottom:14px!important;overflow:hidden!important}
.single-jogo .jp-sidebar-ad-inline{margin:0!important;min-height:210px!important}.single-jogo .jp-sidebar-ad ins{width:100%!important;min-height:250px!important}.single-jogo .jp-sidebar-ad span{position:absolute!important;pointer-events:none!important}

/* Category icon cards — Poki-inspired */
.jp-category-icons-section{padding:34px 0 8px!important;background:radial-gradient(circle at 10% 0%,rgba(255,212,0,.11),transparent 26%),radial-gradient(circle at 90% 0%,rgba(45,220,190,.12),transparent 26%)!important}
.jp-category-icons-grid{display:grid!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:14px!important}
.jp-category-icon-card{min-height:92px!important;background:#fff!important;border-radius:20px!important;box-shadow:0 16px 35px rgba(0,0,0,.22)!important;padding:14px 16px!important;display:flex!important;align-items:center!important;gap:14px!important;text-decoration:none!important;transition:transform .18s ease,box-shadow .18s ease!important;border:1px solid rgba(255,255,255,.45)!important}
.jp-category-icon-card:hover{transform:translateY(-4px)!important;box-shadow:0 20px 45px rgba(0,0,0,.30)!important}
.jp-category-illustration{width:62px!important;height:62px!important;border-radius:18px!important;background:linear-gradient(135deg,#f4fbff,#e8fff6)!important;display:flex!important;align-items:center!important;justify-content:center!important;font-size:38px!important;flex:0 0 62px!important;filter:saturate(1.18)!important}
.jp-category-label{color:#09294b!important;font-weight:950!important;text-transform:uppercase!important;letter-spacing:.08em!important;font-size:14px!important;line-height:1.25!important}

@media (max-width:1180px){
  .single-jogo .jp-single-layout{grid-template-columns:1fr!important}
  .single-jogo .jp-single-sidebar.jp-pro-sidebar{position:relative!important;top:auto!important;max-height:none!important;overflow:visible!important}
  .single-jogo .jp-sidebar-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}
  .jp-category-icons-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media (max-width:760px){
  .single-jogo .jp-poster,.single-jogo .jp-framewrap{min-height:auto!important;aspect-ratio:16/10!important}
  .single-jogo .jp-play{width:82px!important;height:82px!important}.single-jogo .jp-play-symbol{font-size:34px!important}
  .single-jogo .jp-playerbar.jp-poki-playerbar{min-height:auto!important;align-items:flex-start!important;flex-direction:column!important;padding:14px!important}
  .single-jogo .jp-actions{width:100%!important;justify-content:space-between!important;gap:8px!important}.single-jogo .jp-actions .jp-btn:before{font-size:25px!important}
  .single-jogo .jp-sidebar-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .jp-category-icons-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.jp-category-icon-card{min-height:82px!important;padding:12px!important}.jp-category-illustration{width:52px!important;height:52px!important;font-size:31px!important}.jp-category-label{font-size:12px!important}
}

/* =========================================================
   JogosPlay v0.5.1 — FINAL MENU BELOW PLAYER FIX
   Garante o menu estilo Poki sempre abaixo do jogo, sem sidebar overlay.
   ========================================================= */
body.single-jogo{--jp-single-shell:min(1500px,calc(100vw - 44px));--jp-side-col:336px;}
.single-jogo .jp-single-layout{display:grid!important;grid-template-columns:minmax(0,1fr) var(--jp-side-col)!important;gap:24px!important;align-items:start!important;margin-top:18px!important;}
.single-jogo .jp-single-main{min-width:0!important;}
.single-jogo .jp-player{display:block!important;width:100%!important;max-width:none!important;overflow:visible!important;border-radius:24px!important;background:transparent!important;border:0!important;box-shadow:none!important;margin:0 0 26px!important;position:relative!important;}
.single-jogo .jp-stage{display:block!important;width:100%!important;aspect-ratio:16/9!important;min-height:clamp(430px,44vw,740px)!important;max-height:calc(100vh - 176px)!important;border-radius:24px 24px 0 0!important;overflow:hidden!important;background:#07080d!important;box-shadow:0 26px 85px rgba(0,0,0,.44)!important;position:relative!important;}
.single-jogo .jp-poster,.single-jogo .jp-framewrap{display:block;width:100%!important;height:100%!important;min-height:inherit!important;aspect-ratio:auto!important;border-radius:24px 24px 0 0!important;overflow:hidden!important;}
.single-jogo .jp-framewrap{display:none!important;}
.single-jogo .jp-player.is-playing .jp-framewrap,.single-jogo .jp-toggle:checked + .jp-stage .jp-framewrap{display:block!important;}
.single-jogo .jp-player.is-playing .jp-poster,.single-jogo .jp-toggle:checked + .jp-stage .jp-poster{display:none!important;}
.single-jogo .jp-poster-img,.single-jogo .jp-poster img,.single-jogo .jp-framewrap iframe{width:100%!important;height:100%!important;display:block!important;object-fit:cover!important;border:0!important;border-radius:0!important;}
.single-jogo .jp-play{position:absolute!important;left:50%!important;top:50%!important;transform:translate(-50%,-50%)!important;width:104px!important;height:104px!important;border-radius:999px!important;background:#FFD400!important;color:#08090d!important;display:flex!important;align-items:center!important;justify-content:center!important;z-index:50!important;box-shadow:0 20px 60px rgba(255,212,0,.34),0 0 0 16px rgba(255,212,0,.10)!important;}
.single-jogo .jp-poster:hover .jp-play{transform:translate(-50%,-50%) scale(1.06)!important;}
.single-jogo .jp-play-text{display:none!important;}
.single-jogo .jp-play-symbol{display:block!important;font-size:44px!important;line-height:1!important;margin-left:6px!important;color:#08090d!important;}
.single-jogo .jp-playerbar,.single-jogo .jp-playerbar.jp-poki-playerbar{visibility:visible!important;opacity:1!important;position:relative!important;inset:auto!important;transform:none!important;z-index:5!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:18px!important;width:100%!important;min-height:86px!important;margin:0!important;padding:15px 22px!important;border-radius:0 0 24px 24px!important;background:#ffffff!important;color:#06142b!important;border:0!important;border-top:1px solid rgba(0,0,0,.04)!important;box-shadow:0 22px 58px rgba(0,0,0,.30)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;}
.single-jogo .jp-game-info{display:flex!important;align-items:center!important;gap:14px!important;min-width:0!important;flex:1 1 auto!important;}
.single-jogo .jp-game-avatar{width:58px!important;height:58px!important;flex:0 0 58px!important;border-radius:15px!important;overflow:hidden!important;background:#eef3f8!important;display:flex!important;align-items:center!important;justify-content:center!important;}
.single-jogo .jp-game-avatar img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;}
.single-jogo .jp-game-copy{min-width:0!important;display:block!important;}
.single-jogo .jp-game-copy strong{display:block!important;color:#062143!important;font-size:clamp(18px,1.35vw,23px)!important;line-height:1.08!important;font-weight:950!important;letter-spacing:-.03em!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;max-width:520px!important;}
.single-jogo .jp-game-copy em{display:block!important;color:#63708a!important;font-style:normal!important;margin-top:4px!important;font-size:14px!important;font-weight:750!important;}
.single-jogo .jp-actions.jp-poki-actions,.single-jogo .jp-actions{margin-left:auto!important;width:auto!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:14px!important;flex-wrap:nowrap!important;}
.single-jogo .jp-actions .jp-btn{appearance:none!important;width:48px!important;height:48px!important;min-width:48px!important;min-height:48px!important;padding:0!important;border:0!important;border-radius:15px!important;background:transparent!important;color:#0795ff!important;box-shadow:none!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:0!important;font-size:0!important;line-height:1!important;cursor:pointer!important;position:relative!important;}
.single-jogo .jp-actions .jp-btn:hover{background:#eef7ff!important;color:#007ee0!important;transform:translateY(-1px)!important;}
.single-jogo .jp-actions .jp-btn[aria-pressed="true"]{background:rgba(255,212,0,.24)!important;color:#06142b!important;}
.single-jogo .jp-actions .jp-like:before{content:'👍'!important;font-size:28px!important;line-height:1!important;}
.single-jogo .jp-actions .jp-dislike:before{content:'👎'!important;font-size:28px!important;line-height:1!important;}
.single-jogo .jp-actions .jp-lights:before{content:'💡'!important;font-size:27px!important;line-height:1!important;}
.single-jogo .jp-actions .jp-fullscreen:before{content:'⛶'!important;font-size:31px!important;line-height:1!important;font-weight:900!important;}
.single-jogo .jp-actions .jp-btn-text{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important;}
.single-jogo .jp-vote-count{display:none!important;}
.single-jogo .jp-tabs{max-width:980px!important;margin-left:0!important;margin-right:auto!important;}
.single-jogo .jp-mini-nav{display:block!important;max-width:100%!important;margin-top:34px!important;}
@media (max-width:1180px){body.single-jogo{--jp-single-shell:calc(100vw - 28px);}.single-jogo .jp-single-layout{grid-template-columns:1fr!important;}.single-jogo .jp-single-sidebar.jp-pro-sidebar{position:relative!important;top:auto!important;max-height:none!important;overflow:visible!important;margin-top:24px!important;}.single-jogo .jp-sidebar-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;}}
@media (max-width:760px){body.single-jogo{--jp-single-shell:calc(100vw - 24px);}.single-jogo .jp-stage{min-height:auto!important;max-height:none!important;aspect-ratio:16/10!important;border-radius:18px 18px 0 0!important;}.single-jogo .jp-poster,.single-jogo .jp-framewrap{border-radius:18px 18px 0 0!important;}.single-jogo .jp-play{width:78px!important;height:78px!important;}.single-jogo .jp-play-symbol{font-size:34px!important;}.single-jogo .jp-playerbar,.single-jogo .jp-playerbar.jp-poki-playerbar{min-height:70px!important;padding:11px 12px!important;border-radius:0 0 18px 18px!important;gap:10px!important;}.single-jogo .jp-game-avatar{width:46px!important;height:46px!important;flex-basis:46px!important;border-radius:13px!important;}.single-jogo .jp-game-copy strong{font-size:16px!important;max-width:38vw!important;}.single-jogo .jp-game-copy em{font-size:12px!important;}.single-jogo .jp-actions.jp-poki-actions,.single-jogo .jp-actions{gap:4px!important;}.single-jogo .jp-actions .jp-btn{width:40px!important;height:40px!important;min-width:40px!important;min-height:40px!important;border-radius:12px!important;}.single-jogo .jp-actions .jp-like:before,.single-jogo .jp-actions .jp-dislike:before,.single-jogo .jp-actions .jp-lights:before{font-size:22px!important;}.single-jogo .jp-actions .jp-fullscreen:before{font-size:26px!important;}.single-jogo .jp-sidebar-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}

/* JogosPlay v0.6.0 — Engagement Engine / CrazyGames polish */
body.single-jogo{--jp-single-shell:min(1540px,calc(100vw - 32px));--jp-side-col:330px;}
.single-jogo .jp-container{max-width:var(--jp-single-shell)!important;}
.single-jogo .jp-single-layout{display:grid!important;grid-template-columns:minmax(0,1fr) var(--jp-side-col)!important;gap:22px!important;align-items:start!important;}
.single-jogo .jp-player{border-radius:22px!important;background:#050507!important;box-shadow:0 28px 80px rgba(0,0,0,.34)!important;}
.single-jogo .jp-stage{aspect-ratio:16/9!important;min-height:520px!important;max-height:calc(100vh - 178px)!important;border-radius:22px 22px 0 0!important;background:#050507!important;}
.single-jogo .jp-poster,.single-jogo .jp-framewrap{border-radius:22px 22px 0 0!important;}
.single-jogo .jp-poster:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at center,rgba(255,212,0,.12),rgba(0,0,0,.62) 58%,rgba(0,0,0,.82));pointer-events:none;}
.single-jogo .jp-play{left:50%!important;top:50%!important;transform:translate(-50%,-50%)!important;width:96px!important;height:96px!important;border-radius:999px!important;background:#FFD400!important;color:#050507!important;box-shadow:0 20px 65px rgba(255,212,0,.38), inset 0 -4px 0 rgba(0,0,0,.16)!important;z-index:3!important;}
.single-jogo .jp-poster:hover .jp-play{transform:translate(-50%,-50%) scale(1.07)!important;}
.single-jogo .jp-play-symbol{font-size:42px!important;line-height:1!important;margin-left:5px!important;}
.single-jogo .jp-play-text{display:none!important;}
.single-jogo .jp-playerbar.jp-poki-playerbar{display:flex!important;align-items:center!important;justify-content:space-between!important;min-height:76px!important;border-radius:0 0 22px 22px!important;background:linear-gradient(180deg,rgba(24,25,31,.98),rgba(15,16,22,.98))!important;border-top:1px solid rgba(255,255,255,.08)!important;padding:12px 16px!important;}
.single-jogo .jp-game-avatar{width:52px!important;height:52px!important;flex:0 0 52px!important;border-radius:15px!important;overflow:hidden!important;background:#111!important;box-shadow:0 8px 20px rgba(0,0,0,.3)!important;}
.single-jogo .jp-game-avatar img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;}
.single-jogo .jp-game-copy strong{font-size:17px!important;letter-spacing:-.02em!important;color:#fff!important;max-width:46vw!important;}
.single-jogo .jp-game-copy em{color:rgba(255,255,255,.58)!important;font-style:normal!important;}
.single-jogo .jp-actions.jp-poki-actions{display:flex!important;align-items:center!important;gap:8px!important;}
.single-jogo .jp-actions .jp-btn{position:relative!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;width:46px!important;height:46px!important;min-width:46px!important;min-height:46px!important;padding:0!important;border-radius:15px!important;background:rgba(255,255,255,.075)!important;border:1px solid rgba(255,255,255,.08)!important;color:#fff!important;transition:transform .15s ease,background .15s ease,border-color .15s ease!important;}
.single-jogo .jp-actions .jp-btn:hover{transform:translateY(-1px)!important;background:rgba(255,255,255,.13)!important;border-color:rgba(255,255,255,.16)!important;}
.single-jogo .jp-actions .jp-btn[aria-pressed="true"],.single-jogo .jp-actions .jp-share.is-copied{background:rgba(255,212,0,.18)!important;border-color:rgba(255,212,0,.42)!important;color:#FFD400!important;}
.single-jogo .jp-actions .jp-btn-text,.single-jogo .jp-vote-count{display:none!important;}
.single-jogo .jp-actions .jp-like:before{content:"👍";font-size:21px;}
.single-jogo .jp-actions .jp-dislike:before{content:"👎";font-size:21px;}
.single-jogo .jp-actions .jp-restart:before{content:"↻";font-size:27px;font-weight:900;line-height:1;}
.single-jogo .jp-actions .jp-share:before{content:"↗";font-size:25px;font-weight:900;line-height:1;}
.single-jogo .jp-actions .jp-lights:before{content:"◐";font-size:24px;font-weight:900;line-height:1;}
.single-jogo .jp-actions .jp-fullscreen:before{content:"⛶";font-size:25px;font-weight:900;line-height:1;}
.single-jogo .jp-lights-overlay{position:fixed!important;inset:0!important;background:rgba(0,0,0,.78)!important;z-index:20!important;pointer-events:none!important;}
.single-jogo .jp-player{position:relative!important;z-index:25!important;}
.single-jogo .jp-player.is-lights-on{z-index:9999!important;}
.single-jogo .jp-single-continue{margin:28px 0 8px!important;padding:0!important;}
.single-jogo .jp-single-nav{margin-top:28px!important;}
.single-jogo .jp-sidebar-ad{display:none!important;}
.single-jogo .jp-single-sidebar.jp-pro-sidebar{position:sticky!important;top:82px!important;max-height:calc(100vh - 96px)!important;overflow:auto!important;scrollbar-width:none!important;padding-right:2px!important;}
.single-jogo .jp-single-sidebar.jp-pro-sidebar::-webkit-scrollbar{display:none!important;}
.single-jogo .jp-sidebar-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
.single-jogo .jp-sidebar-game-tile{border-radius:16px!important;background:#151720!important;box-shadow:0 10px 26px rgba(0,0,0,.24)!important;transform:translateZ(0)!important;}
.single-jogo .jp-sidebar-game-tile:hover{transform:translateY(-3px) scale(1.035)!important;filter:brightness(1.08)!important;}
.single-jogo .jp-sidebar-tile-title{font-size:11.5px!important;padding:26px 9px 8px!important;}
.single-jogo .jp-tabs{max-width:100%!important;margin-top:18px!important;}
.single-jogo .jp-category-icons-section{padding-top:30px!important;}
@media (min-width:1500px){body.single-jogo{--jp-side-col:360px}.single-jogo .jp-stage{min-height:590px!important;}}
@media (max-width:1180px){body.single-jogo{--jp-single-shell:calc(100vw - 28px)}.single-jogo .jp-single-layout{grid-template-columns:1fr!important}.single-jogo .jp-stage{min-height:auto!important;max-height:none!important}.single-jogo .jp-single-sidebar.jp-pro-sidebar{position:relative!important;top:auto!important;max-height:none!important;overflow:visible!important;margin-top:26px!important}.single-jogo .jp-sidebar-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}}
@media (max-width:760px){body.single-jogo{--jp-single-shell:calc(100vw - 20px)}.single-jogo .jp-page{padding-top:14px!important}.single-jogo .jp-stage{aspect-ratio:16/10!important;border-radius:18px 18px 0 0!important}.single-jogo .jp-poster,.single-jogo .jp-framewrap{border-radius:18px 18px 0 0!important}.single-jogo .jp-play{width:78px!important;height:78px!important}.single-jogo .jp-play-symbol{font-size:34px!important}.single-jogo .jp-playerbar.jp-poki-playerbar{min-height:70px!important;padding:10px!important;border-radius:0 0 18px 18px!important;gap:8px!important}.single-jogo .jp-game-avatar{width:44px!important;height:44px!important;flex-basis:44px!important}.single-jogo .jp-game-copy strong{font-size:15px!important;max-width:34vw!important}.single-jogo .jp-game-copy em{font-size:11px!important}.single-jogo .jp-actions.jp-poki-actions{gap:5px!important}.single-jogo .jp-actions .jp-btn{width:38px!important;height:38px!important;min-width:38px!important;min-height:38px!important;border-radius:12px!important}.single-jogo .jp-actions .jp-like:before,.single-jogo .jp-actions .jp-dislike:before{font-size:18px!important}.single-jogo .jp-actions .jp-restart:before,.single-jogo .jp-actions .jp-share:before,.single-jogo .jp-actions .jp-lights:before,.single-jogo .jp-actions .jp-fullscreen:before{font-size:22px!important}.single-jogo .jp-sidebar-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}

/* JogosPlay v0.6.1 — FINAL POLISH: fixes from real screenshots */
body.single-jogo{--jp-single-shell:min(1540px,calc(100vw - 36px));--jp-side-col:330px;}
.single-jogo .jp-page > .jp-container,
.single-jogo .jp-category-icons-section > .jp-container,
.single-jogo .jp-section:not(.jp-page) > .jp-container{max-width:var(--jp-single-shell)!important;width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:0!important;padding-right:0!important;}

.single-jogo .jp-play{position:absolute!important;left:50%!important;top:50%!important;transform:translate(-50%,-50%)!important;width:102px!important;height:102px!important;padding:0!important;border-radius:999px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:linear-gradient(135deg,#FFE45C 0%,#FFD400 58%,#FFB800 100%)!important;color:#101014!important;box-shadow:0 24px 70px rgba(255,212,0,.34),0 18px 46px rgba(0,0,0,.52),inset 0 -5px 0 rgba(0,0,0,.16)!important;overflow:hidden!important;z-index:5!important;font-size:0!important;line-height:0!important;}
.single-jogo .jp-play-symbol,.single-jogo .jp-play-text{display:none!important;visibility:hidden!important;opacity:0!important;width:0!important;height:0!important;overflow:hidden!important;}
.single-jogo .jp-play:before{content:""!important;display:block!important;width:0!important;height:0!important;border-top:19px solid transparent!important;border-bottom:19px solid transparent!important;border-left:31px solid #11131a!important;transform:translateX(4px)!important;background:transparent!important;clip-path:none!important;margin:0!important;}
.single-jogo .jp-play:after{content:""!important;position:absolute!important;inset:0!important;border-radius:inherit!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.45)!important;pointer-events:none!important;}
.single-jogo .jp-poster:hover .jp-play,.single-jogo .jp-poster:focus-visible .jp-play{transform:translate(-50%,-50%) scale(1.075)!important;filter:saturate(1.05)!important;}

.single-jogo .jp-actions.jp-poki-actions{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:10px!important;flex-wrap:nowrap!important;}
.single-jogo .jp-actions .jp-btn{position:relative!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;width:50px!important;height:50px!important;min-width:50px!important;min-height:50px!important;padding:0!important;border-radius:16px!important;background:rgba(255,255,255,.075)!important;border:1px solid rgba(255,255,255,.10)!important;color:#fff!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.05)!important;line-height:1!important;}
.single-jogo .jp-actions .jp-btn:hover{transform:translateY(-2px)!important;background:rgba(255,255,255,.135)!important;border-color:rgba(255,255,255,.18)!important;box-shadow:0 10px 24px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.06)!important;}
.single-jogo .jp-actions .jp-vote-count,.single-jogo .jp-actions .jp-btn-text{display:none!important;}
.single-jogo .jp-actions .jp-like:before{content:"👍"!important;font-size:22px!important;line-height:1!important;margin:0!important;filter:none!important;}
.single-jogo .jp-actions .jp-dislike:before{content:"👎"!important;font-size:22px!important;line-height:1!important;margin:0!important;filter:none!important;}
.single-jogo .jp-actions .jp-restart:before{content:"↻"!important;font-size:29px!important;font-weight:950!important;line-height:1!important;margin-top:-1px!important;}
.single-jogo .jp-actions .jp-share:before{content:"↗"!important;font-size:27px!important;font-weight:950!important;line-height:1!important;margin-top:-2px!important;}
.single-jogo .jp-actions .jp-lights:before{content:"◐"!important;font-size:25px!important;font-weight:950!important;line-height:1!important;color:#18a7ff!important;}
.single-jogo .jp-actions .jp-fullscreen:before{content:"⛶"!important;font-size:26px!important;font-weight:950!important;line-height:1!important;color:#18a7ff!important;}

.single-jogo .jp-single-continue{margin:30px 0 22px!important;padding:0!important;}
.single-jogo .jp-single-continue .jp-section-head{display:block!important;margin:0 0 14px!important;padding:0!important;}
.single-jogo .jp-single-continue .jp-section-title{font-size:clamp(22px,1.8vw,32px)!important;line-height:1.05!important;letter-spacing:-.04em!important;margin:0!important;}
.single-jogo .jp-single-continue .jp-section-sub{display:none!important;}
.single-jogo .jp-single-continue .jp-rail-track{gap:16px!important;padding-bottom:12px!important;}
.single-jogo .jp-single-continue .jp-card{flex:0 0 clamp(210px,16vw,270px)!important;}

.single-jogo .jp-single-nav{margin-top:34px!important;padding:28px!important;border-radius:24px!important;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.028))!important;border:1px solid rgba(255,255,255,.08)!important;box-shadow:0 22px 70px rgba(0,0,0,.22)!important;}
.single-jogo .jp-single-nav-head{display:flex!important;align-items:flex-end!important;justify-content:space-between!important;gap:22px!important;margin-bottom:18px!important;padding:0!important;}
.single-jogo .jp-single-nav-head .jp-section-title{font-size:clamp(24px,1.9vw,34px)!important;line-height:1.05!important;letter-spacing:-.045em!important;white-space:normal!important;}
.single-jogo .jp-single-nav-head .jp-section-sub{display:block!important;width:auto!important;max-width:520px!important;margin:7px 0 0!important;padding:0!important;line-height:1.45!important;white-space:normal!important;color:rgba(234,234,244,.72)!important;}
.single-jogo .jp-single-nav .jp-link-more{white-space:nowrap!important;color:#FFD400!important;font-weight:950!important;text-decoration:none!important;}
.single-jogo .jp-single-nav-block{margin-top:22px!important;}
.single-jogo .jp-single-nav-title{margin-bottom:12px!important;font-size:17px!important;font-weight:950!important;color:#fff!important;}

.single-jogo .jp-category-icons-section{margin-top:44px!important;padding:34px 0!important;background:radial-gradient(circle at 8% 40%,rgba(255,212,0,.10),transparent 30%),radial-gradient(circle at 70% 50%,rgba(0,180,170,.13),transparent 34%)!important;}
.single-jogo .jp-category-icons-section .jp-section-head{padding:0!important;margin-bottom:18px!important;}
.single-jogo .jp-category-icons-grid{max-width:920px!important;}
.single-jogo .jp-category-icon-card{transition:transform .16s ease,box-shadow .16s ease!important;}
.single-jogo .jp-category-icon-card:hover{transform:translateY(-3px)!important;box-shadow:0 16px 32px rgba(0,0,0,.24)!important;}

.single-jogo .jp-card{transition:transform .18s ease,box-shadow .18s ease,filter .18s ease!important;}
.single-jogo .jp-card:hover{transform:translateY(-4px)!important;box-shadow:0 16px 36px rgba(0,0,0,.34)!important;filter:brightness(1.04)!important;}
.single-jogo .jp-single-sidebar.jp-pro-sidebar{scrollbar-width:none!important;padding-right:0!important;}
.single-jogo .jp-single-sidebar.jp-pro-sidebar::-webkit-scrollbar{display:none!important;width:0!important;height:0!important;}
.single-jogo .jp-sidebar-grid{gap:11px!important;}
.single-jogo .jp-sidebar-game-tile{border-radius:15px!important;overflow:hidden!important;}

@media(max-width:1180px){.single-jogo .jp-page > .jp-container,.single-jogo .jp-category-icons-section > .jp-container,.single-jogo .jp-section:not(.jp-page) > .jp-container{max-width:calc(100vw - 28px)!important}.single-jogo .jp-single-nav-head{align-items:flex-start!important;flex-direction:column!important}.single-jogo .jp-single-nav-head .jp-section-sub{max-width:760px!important}.single-jogo .jp-category-icons-grid{max-width:100%!important}.single-jogo .jp-play{width:92px!important;height:92px!important}.single-jogo .jp-play:before{border-top-width:17px!important;border-bottom-width:17px!important;border-left-width:28px!important}}
@media(max-width:760px){.single-jogo .jp-page > .jp-container,.single-jogo .jp-category-icons-section > .jp-container,.single-jogo .jp-section:not(.jp-page) > .jp-container{max-width:calc(100vw - 20px)!important}.single-jogo .jp-play{width:76px!important;height:76px!important}.single-jogo .jp-play:before{border-top-width:13px!important;border-bottom-width:13px!important;border-left-width:22px!important}.single-jogo .jp-actions.jp-poki-actions{gap:5px!important}.single-jogo .jp-actions .jp-btn{width:39px!important;height:39px!important;min-width:39px!important;min-height:39px!important;border-radius:12px!important}.single-jogo .jp-actions .jp-like:before,.single-jogo .jp-actions .jp-dislike:before{font-size:18px!important}.single-jogo .jp-actions .jp-restart:before,.single-jogo .jp-actions .jp-share:before,.single-jogo .jp-actions .jp-lights:before,.single-jogo .jp-actions .jp-fullscreen:before{font-size:21px!important}.single-jogo .jp-single-nav{padding:18px!important;border-radius:18px!important}.single-jogo .jp-single-continue .jp-card{flex-basis:72vw!important}.single-jogo .jp-category-icons-section{margin-top:30px!important}.single-jogo .jp-category-icons-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}

/* JogosPlay v0.6.1.1 — HOTFIX ONLY: categorias full width + player menu icons */
.single-jogo .jp-category-icons-section > .jp-container{
  max-width:var(--jp-single-shell)!important;
  width:min(var(--jp-single-shell),calc(100vw - 36px))!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
}
.single-jogo .jp-category-icons-grid{
  max-width:none!important;
  width:100%!important;
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:16px!important;
}
.single-jogo .jp-category-icon-card{width:100%!important;min-width:0!important;overflow:hidden!important;}
.single-jogo .jp-category-label{min-width:0!important;overflow-wrap:anywhere!important;}

.single-jogo .jp-actions .jp-btn{font-size:0!important;color:#fff!important;}
.single-jogo .jp-actions .jp-btn:before{
  content:""!important;
  display:block!important;
  width:24px!important;
  height:24px!important;
  margin:0!important;
  background:currentColor!important;
  background-image:none!important;
  filter:none!important;
  font-size:0!important;
  line-height:1!important;
  -webkit-mask-repeat:no-repeat!important;
  mask-repeat:no-repeat!important;
  -webkit-mask-position:center!important;
  mask-position:center!important;
  -webkit-mask-size:contain!important;
  mask-size:contain!important;
}
.single-jogo .jp-actions .jp-like:before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10.5v10M11 20.5h6.8c1 0 1.8-.7 2-1.7l1-5.7c.2-1.2-.7-2.3-2-2.3H14V6.6c0-1.2-.9-2.2-2.1-2.2L10 9.1l-3 1.4'/%3E%3Cpath d='M3.8 10.5H7v10H3.8z'/%3E%3C/g%3E%3C/svg%3E")!important;
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10.5v10M11 20.5h6.8c1 0 1.8-.7 2-1.7l1-5.7c.2-1.2-.7-2.3-2-2.3H14V6.6c0-1.2-.9-2.2-2.1-2.2L10 9.1l-3 1.4'/%3E%3Cpath d='M3.8 10.5H7v10H3.8z'/%3E%3C/g%3E%3C/svg%3E")!important;
}
.single-jogo .jp-actions .jp-dislike:before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10.5v10M11 20.5h6.8c1 0 1.8-.7 2-1.7l1-5.7c.2-1.2-.7-2.3-2-2.3H14V6.6c0-1.2-.9-2.2-2.1-2.2L10 9.1l-3 1.4'/%3E%3Cpath d='M3.8 10.5H7v10H3.8z'/%3E%3C/g%3E%3C/svg%3E")!important;
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10.5v10M11 20.5h6.8c1 0 1.8-.7 2-1.7l1-5.7c.2-1.2-.7-2.3-2-2.3H14V6.6c0-1.2-.9-2.2-2.1-2.2L10 9.1l-3 1.4'/%3E%3Cpath d='M3.8 10.5H7v10H3.8z'/%3E%3C/g%3E%3C/svg%3E")!important;
  transform:rotate(180deg)!important;
}
.single-jogo .jp-actions .jp-restart:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-2.6-6.4'/%3E%3Cpath d='M21 4v6h-6'/%3E%3C/g%3E%3C/svg%3E")!important;mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-2.6-6.4'/%3E%3Cpath d='M21 4v6h-6'/%3E%3C/g%3E%3C/svg%3E")!important;width:26px!important;height:26px!important;}
.single-jogo .jp-actions .jp-share:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 4h6v6'/%3E%3Cpath d='M10 14 20 4'/%3E%3Cpath d='M20 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h5'/%3E%3C/g%3E%3C/svg%3E")!important;mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 4h6v6'/%3E%3Cpath d='M10 14 20 4'/%3E%3Cpath d='M20 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h5'/%3E%3C/g%3E%3C/svg%3E")!important;}
.single-jogo .jp-actions .jp-lights:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M8 14a6 6 0 1 1 8 0c-1.2 1-1.7 2-1.9 3H9.9c-.2-1-.7-2-1.9-3z'/%3E%3C/g%3E%3C/svg%3E")!important;mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M8 14a6 6 0 1 1 8 0c-1.2 1-1.7 2-1.9 3H9.9c-.2-1-.7-2-1.9-3z'/%3E%3C/g%3E%3C/svg%3E")!important;color:#18a7ff!important;}
.single-jogo .jp-actions .jp-fullscreen:before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H3v5'/%3E%3Cpath d='M16 3h5v5'/%3E%3Cpath d='M8 21H3v-5'/%3E%3Cpath d='M16 21h5v-5'/%3E%3Cpath d='M3 3l6 6'/%3E%3Cpath d='M21 3l-6 6'/%3E%3Cpath d='M3 21l6-6'/%3E%3Cpath d='M21 21l-6-6'/%3E%3C/g%3E%3C/svg%3E")!important;mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H3v5'/%3E%3Cpath d='M16 3h5v5'/%3E%3Cpath d='M8 21H3v-5'/%3E%3Cpath d='M16 21h5v-5'/%3E%3Cpath d='M3 3l6 6'/%3E%3Cpath d='M21 3l-6 6'/%3E%3Cpath d='M3 21l6-6'/%3E%3Cpath d='M21 21l-6-6'/%3E%3C/g%3E%3C/svg%3E")!important;color:#18a7ff!important;}
.single-jogo .jp-actions .jp-btn[aria-pressed="true"]:before,.single-jogo .jp-actions .jp-share.is-copied:before{color:#FFD400!important;}
@media(max-width:1180px){.single-jogo .jp-category-icons-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}}
@media(max-width:760px){.single-jogo .jp-category-icons-section > .jp-container{width:calc(100vw - 20px)!important}.single-jogo .jp-category-icons-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}

/* JogosPlay v0.6.2 — real likes polish */
.single-jogo .jp-player.is-voting .jp-like,
.single-jogo .jp-player.is-voting .jp-dislike{pointer-events:none;opacity:.72;}
.single-jogo .jp-player .jp-like::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 22V10'/%3E%3Cpath d='M15 5.9 14 10h5.8a2 2 0 0 1 1.9 2.6l-2.3 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.8a2 2 0 0 0 1.8-1.1L12 2a3.1 3.1 0 0 1 3 3.9Z'/%3E%3C/svg%3E")!important;
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 22V10'/%3E%3Cpath d='M15 5.9 14 10h5.8a2 2 0 0 1 1.9 2.6l-2.3 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.8a2 2 0 0 0 1.8-1.1L12 2a3.1 3.1 0 0 1 3 3.9Z'/%3E%3C/svg%3E")!important;
}
.single-jogo .jp-player .jp-dislike::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 2v12'/%3E%3Cpath d='M9 18.1 10 14H4.2a2 2 0 0 1-1.9-2.6l2.3-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.8a2 2 0 0 0-1.8 1.1L12 22a3.1 3.1 0 0 1-3-3.9Z'/%3E%3C/svg%3E")!important;
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 2v12'/%3E%3Cpath d='M9 18.1 10 14H4.2a2 2 0 0 1-1.9-2.6l2.3-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.8a2 2 0 0 0-1.8 1.1L12 22a3.1 3.1 0 0 1-3-3.9Z'/%3E%3C/svg%3E")!important;
}


/* JogosPlay v0.6.2.1 — exact hotfix: correct like icon + remove fake author */
.single-jogo .jp-game-copy-title-only{justify-content:center!important;}
.single-jogo .jp-game-copy-title-only strong{font-size:22px!important;line-height:1.12!important;max-width:620px!important;}
.single-jogo .jp-game-copy-title-only em{display:none!important;}
.single-jogo .jp-player .jp-actions .jp-like::before,
.single-jogo .jp-player .jp-actions .jp-dislike::before{content:""!important;display:block!important;width:26px!important;height:26px!important;margin:0!important;color:currentColor!important;background:currentColor!important;background-image:none!important;filter:none!important;font-size:0!important;line-height:1!important;transform:none!important;-webkit-mask-repeat:no-repeat!important;mask-repeat:no-repeat!important;-webkit-mask-position:center!important;mask-position:center!important;-webkit-mask-size:contain!important;mask-size:contain!important;}
.single-jogo .jp-player .jp-actions .jp-like::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 11v10'/%3E%3Cpath d='M11 21h6.7a2 2 0 0 0 2-1.7l1-6A2 2 0 0 0 18.7 11H14V6.5A2.5 2.5 0 0 0 11.5 4L10 8.8A3 3 0 0 1 7 11'/%3E%3Cpath d='M3 11h4v10H3z'/%3E%3C/svg%3E")!important;mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 11v10'/%3E%3Cpath d='M11 21h6.7a2 2 0 0 0 2-1.7l1-6A2 2 0 0 0 18.7 11H14V6.5A2.5 2.5 0 0 0 11.5 4L10 8.8A3 3 0 0 1 7 11'/%3E%3Cpath d='M3 11h4v10H3z'/%3E%3C/svg%3E")!important;transform:none!important;}
.single-jogo .jp-player .jp-actions .jp-dislike::before{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 13V3'/%3E%3Cpath d='M13 3H6.3a2 2 0 0 0-2 1.7l-1 6A2 2 0 0 0 5.3 13H10v4.5a2.5 2.5 0 0 0 2.5 2.5l1.5-4.8a3 3 0 0 1 3-2.2'/%3E%3Cpath d='M17 3h4v10h-4z'/%3E%3C/svg%3E")!important;mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 13V3'/%3E%3Cpath d='M13 3H6.3a2 2 0 0 0-2 1.7l-1 6A2 2 0 0 0 5.3 13H10v4.5a2.5 2.5 0 0 0 2.5 2.5l1.5-4.8a3 3 0 0 1 3-2.2'/%3E%3Cpath d='M17 3h4v10h-4z'/%3E%3C/svg%3E")!important;transform:none!important;}


/* v0.6.3.1 — SEO Categorias (/jogos-online/jogos-de-categoria/) */
.jp-cat-seo-page{padding-top:34px!important;}
.jp-cat-seo-page>.jp-container{width:min(100% - 48px, 1880px)!important;max-width:1880px!important;margin-inline:auto!important;}
.jp-cat-seo-page .jp-breadcrumb{margin-bottom:22px;color:rgba(234,234,244,.58);}
.jp-cat-hero{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.08);border-radius:30px;padding:clamp(24px,3vw,56px);margin-bottom:22px;background:radial-gradient(circle at 10% 0%,rgba(255,212,0,.16),transparent 32%),radial-gradient(circle at 80% 10%,rgba(0,170,255,.14),transparent 34%),linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.015));box-shadow:0 28px 90px rgba(0,0,0,.34);}
.jp-cat-kicker{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:950;text-transform:uppercase;letter-spacing:.11em;color:#ffd400;margin-bottom:10px;}
.jp-cat-hero .jp-h1{font-size:clamp(36px,4.2vw,76px)!important;line-height:.95!important;letter-spacing:-.065em!important;margin:0 0 14px!important;max-width:980px;}
.jp-cat-hero p{max-width:850px;margin:0;color:rgba(234,234,244,.78);font-size:clamp(15px,1.05vw,19px);line-height:1.65;}
.jp-cat-stats{margin-top:18px;display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(255,212,0,.22);background:rgba(255,212,0,.08);color:rgba(255,255,255,.82);border-radius:999px;padding:10px 14px;font-weight:800;}
.jp-cat-stats strong{color:#ffd400;}
.jp-cat-seo-page .jp-catbar{margin:18px 0 28px!important;}
.jp-cat-main-grid{margin-top:16px;}
.jp-cat-seo-page .jp-section-head{margin-bottom:16px;}
.jp-cat-seo-page .jp-section-title{font-size:clamp(22px,1.7vw,34px)!important;line-height:1.05;letter-spacing:-.04em;}
.jp-cat-seo-page .jp-grid-catalog{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(190px,1fr))!important;gap:18px!important;overflow:visible!important;}
.jp-cat-seo-page .jp-grid-catalog .jp-card{width:100%!important;max-width:none!important;flex-basis:auto!important;}
.jp-cat-seo-rail{margin-top:42px;}
.jp-cat-seo-rail .jp-rail-track{gap:16px;}
.jp-cat-seo-copy{max-width:980px;margin:54px auto 20px;padding:28px;border-radius:24px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02));color:rgba(234,234,244,.78);line-height:1.75;}
.jp-cat-seo-copy h2{font-size:clamp(24px,1.8vw,34px);line-height:1.05;letter-spacing:-.04em;color:#fff;margin:0 0 12px;}
.jp-cat-seo-copy h2:not(:first-child){margin-top:26px;}
.jp-cat-seo-copy p{margin:0;}
.jp-cat-seo-copy a{color:#ffd400;font-weight:900;text-decoration:none;}
@media(max-width:760px){.jp-cat-seo-page>.jp-container{width:min(100% - 24px,1880px)!important}.jp-cat-hero{border-radius:22px;padding:22px}.jp-cat-seo-page .jp-grid-catalog{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important}.jp-cat-seo-copy{padding:20px;border-radius:20px}}


/* v0.6.4 — SEO category fine polish only */
.jp-cat-hero-copy{display:flex;flex-direction:column;align-items:flex-start;}
.jp-cat-cta{display:inline-flex;align-items:center;justify-content:center;gap:8px;margin-top:16px;background:#FFD400;color:#0b0b0f!important;padding:12px 18px;border-radius:14px;font-weight:950;text-decoration:none;box-shadow:0 12px 30px rgba(255,212,0,.18);transition:transform .16s ease,box-shadow .16s ease,filter .16s ease;}
.jp-cat-cta:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(255,212,0,.26);filter:saturate(1.05);}
.jp-cat-main-grid{scroll-margin-top:90px;}
.jp-cat-seo-page .jp-section-title{display:flex;align-items:center;gap:8px;}
.jp-pagination .current{background:#FFD400!important;color:#0b0b0f!important;border-color:rgba(255,212,0,.9)!important;box-shadow:0 8px 22px rgba(255,212,0,.18)!important;}
.jp-pagination a:hover{background:rgba(255,212,0,.12)!important;border-color:rgba(255,212,0,.34)!important;color:#fff!important;transform:translateY(-1px);}
.jp-cat-seo-page .jp-card img{transition:transform .3s ease,filter .25s ease!important;}
.jp-cat-seo-page .jp-card:hover img{transform:scale(1.05)!important;filter:saturate(1.06)!important;}
.jp-cat-seo-rail .jp-rail-track{scroll-snap-type:x proximity;}
.jp-cat-seo-rail .jp-card{scroll-snap-align:start;}
@media(max-width:760px){.jp-cat-cta{width:100%;margin-top:14px}.jp-cat-seo-page .jp-section-title{display:block}}


/* v0.6.5 — correção homepage mobile: bloco inicial/mosaico sem sobreposição */
@media (max-width: 820px){
  body.home .jp-cg-proplus .jp-cg-mosaic{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    grid-auto-rows:auto!important;
    grid-auto-flow:row!important;
    gap:12px!important;
    overflow:visible!important;
    padding-bottom:0!important;
  }
  body.home .jp-cg-proplus .jp-mosaic-item,
  body.home .jp-cg-proplus .jp-mosaic-item.is-large,
  body.home .jp-cg-proplus .jp-mosaic-item.is-wide{
    grid-column:auto!important;
    grid-row:auto!important;
    flex:none!important;
    width:auto!important;
    min-width:0!important;
    height:auto!important;
    min-height:0!important;
  }
  body.home .jp-cg-proplus .jp-mosaic-item:first-child{
    grid-column:1 / -1!important;
  }
  body.home .jp-cg-proplus .jp-mosaic-item .jp-card{
    width:100%!important;
    max-width:none!important;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16 / 10!important;
    flex-basis:auto!important;
    display:block!important;
    overflow:hidden!important;
  }
  body.home .jp-cg-proplus .jp-mosaic-item:first-child .jp-card{
    aspect-ratio:16 / 8!important;
  }
  body.home .jp-cg-proplus .jp-mosaic-item .jp-card .thumb{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    aspect-ratio:auto!important;
  }
  body.home .jp-cg-proplus .jp-mosaic-item .jp-card .thumb img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    display:block!important;
  }
  body.home .jp-cg-proplus .jp-mosaic-item .jp-card .meta{
    position:absolute!important;
    left:0!important;right:0!important;bottom:0!important;
    padding:34px 10px 10px!important;
    background:linear-gradient(transparent,rgba(0,0,0,.84))!important;
  }
  body.home .jp-cg-proplus .jp-mosaic-item .jp-card .meta .t{
    font-size:13px!important;
    line-height:1.12!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
  }
}

@media (max-width: 430px){
  body.home .jp-cg-proplus .jp-cg-mosaic{gap:10px!important;}
  body.home .jp-cg-proplus .jp-mosaic-item .jp-card{aspect-ratio:16 / 11!important;}
  body.home .jp-cg-proplus .jp-mosaic-item:first-child .jp-card{aspect-ratio:16 / 8.8!important;}
}

/* ===== JogosPlay v0.6.6: play badge sempre centralizado na CAPA =====
   Antes o ícone usava .jp-card::after; em cards com texto/meta abaixo da imagem,
   o centro calculado era o card inteiro, por isso ficava baixo em algumas capas.
   Agora o ícone fica preso ao .thumb, centralizado apenas na imagem. */
body:not(.single-jogo) .jp-card::after{
  display:none!important;
  content:none!important;
}
body:not(.single-jogo) .jp-card .thumb{
  position:relative!important;
  overflow:hidden!important;
}
body:not(.single-jogo) .jp-card .thumb::after{
  content:'▶';
  position:absolute!important;
  left:50%!important;
  top:50%!important;
  right:auto!important;
  bottom:auto!important;
  width:44px!important;
  height:44px!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,#FFE45C,#FFD400 58%,#FFBD00)!important;
  color:#101014!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-size:15px!important;
  font-weight:950!important;
  line-height:1!important;
  box-shadow:0 10px 24px rgba(0,0,0,.35)!important;
  transform:translate(-50%,-50%) scale(.9)!important;
  opacity:0!important;
  pointer-events:none!important;
  z-index:4!important;
  transition:opacity .16s ease, transform .16s ease!important;
}
body:not(.single-jogo) .jp-card:hover .thumb::after,
body:not(.single-jogo) .jp-card:focus-visible .thumb::after{
  opacity:1!important;
  transform:translate(-50%,-50%) scale(1)!important;
}
@media (hover:none){
  body:not(.single-jogo) .jp-card .thumb::after{
    opacity:.96!important;
    transform:translate(-50%,-50%) scale(1)!important;
  }
}

/* ===== JogosPlay v0.6.7: fullscreen bar no final da tela =====
   Quando o player entra em tela cheia, o menu deve ficar preso no rodapé
   real do player, sem flutuar acima e sem deixar uma faixa preta abaixo. */
.single-jogo .jp-player:fullscreen,
.single-jogo .jp-player:-webkit-full-screen{
  width:100vw!important;
  max-width:100vw!important;
  height:100vh!important;
  height:100dvh!important;
  min-height:100vh!important;
  min-height:100dvh!important;
  margin:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  display:flex!important;
  flex-direction:column!important;
  overflow:hidden!important;
  background:#000!important;
}
.single-jogo .jp-player:fullscreen .jp-stage,
.single-jogo .jp-player:-webkit-full-screen .jp-stage{
  flex:1 1 auto!important;
  min-height:0!important;
  height:auto!important;
  display:flex!important;
  border-radius:0!important;
  overflow:hidden!important;
}
.single-jogo .jp-player:fullscreen .jp-framewrap,
.single-jogo .jp-player:-webkit-full-screen .jp-framewrap{
  flex:1 1 auto!important;
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  aspect-ratio:auto!important;
  border-radius:0!important;
}
.single-jogo .jp-player:fullscreen .jp-framewrap iframe,
.single-jogo .jp-player:-webkit-full-screen .jp-framewrap iframe{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
}
.single-jogo .jp-player:fullscreen .jp-playerbar,
.single-jogo .jp-player:-webkit-full-screen .jp-playerbar{
  position:relative!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  top:auto!important;
  width:100%!important;
  flex:0 0 auto!important;
  margin:0!important;
  border-radius:0!important;
  z-index:99999!important;
}

/* ===== JogosPlay v0.6.8: fullscreen definitivo — barra colada no rodapé real =====
   A v0.6.7 ainda podia herdar max-height/aspect-ratio do stage em alguns jogos.
   Aqui usamos uma classe JS + :fullscreen e forçamos layout 100dvh em coluna. */
.single-jogo .jp-player.is-jp-fullscreen,
.single-jogo .jp-player:fullscreen,
.single-jogo .jp-player:-webkit-full-screen{
  position:fixed!important;
  inset:0!important;
  width:100vw!important;
  max-width:100vw!important;
  height:100vh!important;
  height:100dvh!important;
  min-height:100vh!important;
  min-height:100dvh!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  display:flex!important;
  flex-direction:column!important;
  overflow:hidden!important;
  background:#000!important;
  box-shadow:none!important;
  z-index:2147483647!important;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-stage,
.single-jogo .jp-player:fullscreen .jp-stage,
.single-jogo .jp-player:-webkit-full-screen .jp-stage{
  flex:1 1 auto!important;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  aspect-ratio:auto!important;
  border-radius:0!important;
  overflow:hidden!important;
  box-shadow:none!important;
  background:#000!important;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-framewrap,
.single-jogo .jp-player:fullscreen .jp-framewrap,
.single-jogo .jp-player:-webkit-full-screen .jp-framewrap,
.single-jogo .jp-player.is-jp-fullscreen .jp-poster,
.single-jogo .jp-player:fullscreen .jp-poster,
.single-jogo .jp-player:-webkit-full-screen .jp-poster{
  position:relative!important;
  flex:1 1 auto!important;
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  max-height:none!important;
  aspect-ratio:auto!important;
  border-radius:0!important;
  overflow:hidden!important;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-framewrap iframe,
.single-jogo .jp-player:fullscreen .jp-framewrap iframe,
.single-jogo .jp-player:-webkit-full-screen .jp-framewrap iframe,
.single-jogo .jp-player.is-jp-fullscreen .jp-poster-img,
.single-jogo .jp-player:fullscreen .jp-poster-img,
.single-jogo .jp-player:-webkit-full-screen .jp-poster-img{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  max-height:none!important;
  border:0!important;
  border-radius:0!important;
  object-fit:contain!important;
  background:#000!important;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-playerbar,
.single-jogo .jp-player.is-jp-fullscreen .jp-playerbar.jp-poki-playerbar,
.single-jogo .jp-player:fullscreen .jp-playerbar,
.single-jogo .jp-player:fullscreen .jp-playerbar.jp-poki-playerbar,
.single-jogo .jp-player:-webkit-full-screen .jp-playerbar,
.single-jogo .jp-player:-webkit-full-screen .jp-playerbar.jp-poki-playerbar{
  position:relative!important;
  inset:auto!important;
  transform:none!important;
  flex:0 0 76px!important;
  width:100%!important;
  height:76px!important;
  min-height:76px!important;
  max-height:76px!important;
  margin:0!important;
  padding:10px 14px!important;
  border-radius:0!important;
  z-index:2147483647!important;
}
@media (max-width:760px){
  .single-jogo .jp-player.is-jp-fullscreen .jp-playerbar,
  .single-jogo .jp-player.is-jp-fullscreen .jp-playerbar.jp-poki-playerbar,
  .single-jogo .jp-player:fullscreen .jp-playerbar,
  .single-jogo .jp-player:fullscreen .jp-playerbar.jp-poki-playerbar,
  .single-jogo .jp-player:-webkit-full-screen .jp-playerbar,
  .single-jogo .jp-player:-webkit-full-screen .jp-playerbar.jp-poki-playerbar{
    flex-basis:64px!important;
    height:64px!important;
    min-height:64px!important;
    max-height:64px!important;
  }
}

/* ===== JogosPlay v0.6.9: Smart Fullscreen UX =====
   Em fullscreen, a barra fica visível no início e some suavemente após inatividade.
   Move mouse, toque, foco ou teclado trazem a barra de volta. */
.single-jogo .jp-player.is-jp-fullscreen .jp-playerbar,
.single-jogo .jp-player:fullscreen .jp-playerbar,
.single-jogo .jp-player:-webkit-full-screen .jp-playerbar{
  opacity:1!important;
  transform:translateY(0)!important;
  transition:opacity .28s ease, transform .28s ease, background .18s ease!important;
  will-change:opacity,transform!important;
}
.single-jogo .jp-player.is-jp-fullscreen.jp-controls-hidden .jp-playerbar,
.single-jogo .jp-player:fullscreen.jp-controls-hidden .jp-playerbar,
.single-jogo .jp-player:-webkit-full-screen.jp-controls-hidden .jp-playerbar{
  opacity:0!important;
  transform:translateY(100%)!important;
  pointer-events:none!important;
}
.single-jogo .jp-player.is-jp-fullscreen:after,
.single-jogo .jp-player:fullscreen:after,
.single-jogo .jp-player:-webkit-full-screen:after{
  content:'';
  position:absolute;
  left:0;right:0;bottom:0;
  height:92px;
  z-index:2147483646;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.38));
  opacity:.9;
  transition:opacity .28s ease;
}
.single-jogo .jp-player.is-jp-fullscreen.jp-controls-hidden:after,
.single-jogo .jp-player:fullscreen.jp-controls-hidden:after,
.single-jogo .jp-player:-webkit-full-screen.jp-controls-hidden:after{
  opacity:0;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-fullscreen,
.single-jogo .jp-player:fullscreen .jp-fullscreen,
.single-jogo .jp-player:-webkit-full-screen .jp-fullscreen{
  background:rgba(255,212,0,.18)!important;
  border-color:rgba(255,212,0,.42)!important;
  color:#FFD400!important;
  box-shadow:0 0 0 1px rgba(255,212,0,.10),0 10px 26px rgba(255,212,0,.12)!important;
}
@media (max-width:760px){
  .single-jogo .jp-player.is-jp-fullscreen .jp-brand,
  .single-jogo .jp-player:fullscreen .jp-brand,
  .single-jogo .jp-player:-webkit-full-screen .jp-brand{display:none!important;}
  .single-jogo .jp-player.is-jp-fullscreen .jp-playerbar,
  .single-jogo .jp-player.is-jp-fullscreen .jp-playerbar.jp-poki-playerbar,
  .single-jogo .jp-player:fullscreen .jp-playerbar,
  .single-jogo .jp-player:fullscreen .jp-playerbar.jp-poki-playerbar,
  .single-jogo .jp-player:-webkit-full-screen .jp-playerbar,
  .single-jogo .jp-player:-webkit-full-screen .jp-playerbar.jp-poki-playerbar{
    justify-content:center!important;
    padding-left:max(10px,env(safe-area-inset-left))!important;
    padding-right:max(10px,env(safe-area-inset-right))!important;
    padding-bottom:max(8px,env(safe-area-inset-bottom))!important;
  }
}

/* ===== JogosPlay v0.6.10 — Fullscreen hidden bar no-gap fix =====
   A barra em fullscreen agora fica sobreposta ao jogo, não ocupa altura.
   Quando some, o iframe continua preenchendo 100% da tela sem faixa preta. */
.single-jogo .jp-player.is-jp-fullscreen,
.single-jogo .jp-player:fullscreen,
.single-jogo .jp-player:-webkit-full-screen{
  position:fixed!important;
  inset:0!important;
  width:100vw!important;
  max-width:100vw!important;
  height:100vh!important;
  height:100dvh!important;
  min-height:100vh!important;
  min-height:100dvh!important;
  display:block!important;
  overflow:hidden!important;
  border-radius:0!important;
  background:#000!important;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-stage,
.single-jogo .jp-player:fullscreen .jp-stage,
.single-jogo .jp-player:-webkit-full-screen .jp-stage,
.single-jogo .jp-player.is-jp-fullscreen .jp-framewrap,
.single-jogo .jp-player:fullscreen .jp-framewrap,
.single-jogo .jp-player:-webkit-full-screen .jp-framewrap{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  min-height:100%!important;
  max-height:none!important;
  aspect-ratio:auto!important;
  border-radius:0!important;
  background:#000!important;
  overflow:hidden!important;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-framewrap iframe,
.single-jogo .jp-player:fullscreen .jp-framewrap iframe,
.single-jogo .jp-player:-webkit-full-screen .jp-framewrap iframe{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  min-height:100%!important;
  max-height:none!important;
  border:0!important;
  border-radius:0!important;
  background:#000!important;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-playerbar,
.single-jogo .jp-player.is-jp-fullscreen .jp-playerbar.jp-poki-playerbar,
.single-jogo .jp-player:fullscreen .jp-playerbar,
.single-jogo .jp-player:fullscreen .jp-playerbar.jp-poki-playerbar,
.single-jogo .jp-player:-webkit-full-screen .jp-playerbar,
.single-jogo .jp-player:-webkit-full-screen .jp-playerbar.jp-poki-playerbar{
  position:absolute!important;
  left:0!important;
  right:0!important;
  bottom:0!important;
  top:auto!important;
  width:100%!important;
  height:64px!important;
  min-height:64px!important;
  max-height:64px!important;
  margin:0!important;
  border-left:0!important;
  border-right:0!important;
  border-bottom:0!important;
  border-radius:0!important;
  z-index:2147483647!important;
  transform:translateY(0)!important;
}
.single-jogo .jp-player.is-jp-fullscreen.jp-controls-hidden .jp-playerbar,
.single-jogo .jp-player:fullscreen.jp-controls-hidden .jp-playerbar,
.single-jogo .jp-player:-webkit-full-screen.jp-controls-hidden .jp-playerbar{
  opacity:0!important;
  transform:translateY(110%)!important;
  pointer-events:none!important;
}
@media (max-width:760px){
  .single-jogo .jp-player.is-jp-fullscreen .jp-playerbar,
  .single-jogo .jp-player:fullscreen .jp-playerbar,
  .single-jogo .jp-player:-webkit-full-screen .jp-playerbar{
    height:56px!important;
    min-height:56px!important;
    max-height:56px!important;
  }
}

/* ===== JogosPlay v0.7.0 — Premium Player Controls ===== */
.single-jogo .jp-actions.jp-poki-actions{gap:10px!important;}
.single-jogo .jp-actions .jp-btn{
  transition:transform .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease,color .18s ease!important;
}
.single-jogo .jp-actions .jp-btn:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 10px 28px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05)!important;
}
.single-jogo .jp-actions .jp-btn:active{transform:translateY(0) scale(.96)!important;}
.single-jogo .jp-actions .jp-newgame:before{
  content:'+'!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  width:26px!important;height:26px!important;border-radius:999px!important;
  background:#FFD400!important;color:#090b10!important;font-size:25px!important;line-height:1!important;font-weight:1000!important;
  -webkit-mask-image:none!important;mask-image:none!important;
}
.single-jogo .jp-actions .jp-fullscreen,
.single-jogo .jp-player.is-jp-fullscreen .jp-fullscreen,
.single-jogo .jp-player:fullscreen .jp-fullscreen,
.single-jogo .jp-player:-webkit-full-screen .jp-fullscreen{
  background:linear-gradient(180deg,#FFE766,#FFD400)!important;
  color:#07090d!important;
  border-color:rgba(255,212,0,.72)!important;
  box-shadow:0 0 0 1px rgba(255,212,0,.28),0 10px 28px rgba(255,212,0,.22)!important;
}
.single-jogo .jp-actions .jp-fullscreen:before,
.single-jogo .jp-player.is-jp-fullscreen .jp-fullscreen:before,
.single-jogo .jp-player:fullscreen .jp-fullscreen:before,
.single-jogo .jp-player:-webkit-full-screen .jp-fullscreen:before{color:#07090d!important;}
.single-jogo .jp-actions .jp-fullscreen:hover{
  background:linear-gradient(180deg,#fff08a,#FFD400)!important;
  box-shadow:0 0 0 1px rgba(255,212,0,.45),0 14px 36px rgba(255,212,0,.30)!important;
}
.single-jogo .jp-actions .jp-btn[data-tooltip]:after{
  content:attr(data-tooltip)!important;
  position:absolute!important;
  left:50%!important;bottom:calc(100% + 10px)!important;
  transform:translate(-50%,6px)!important;
  opacity:0!important;pointer-events:none!important;
  background:rgba(7,9,14,.96)!important;color:#fff!important;
  border:1px solid rgba(255,255,255,.12)!important;border-radius:10px!important;
  padding:7px 9px!important;white-space:nowrap!important;
  font-size:12px!important;font-weight:900!important;line-height:1!important;
  box-shadow:0 10px 28px rgba(0,0,0,.36)!important;
  transition:opacity .16s ease,transform .16s ease!important;
  z-index:2147483647!important;
}
.single-jogo .jp-actions .jp-btn[data-tooltip]:hover:after,
.single-jogo .jp-actions .jp-btn[data-tooltip]:focus-visible:after{
  opacity:1!important;transform:translate(-50%,0)!important;
}
.single-jogo .jp-player.is-jp-fullscreen .jp-actions .jp-btn[data-tooltip]:after,
.single-jogo .jp-player:fullscreen .jp-actions .jp-btn[data-tooltip]:after,
.single-jogo .jp-player:-webkit-full-screen .jp-actions .jp-btn[data-tooltip]:after{bottom:calc(100% + 12px)!important;}
@media(max-width:760px){
  .single-jogo .jp-actions.jp-poki-actions{gap:6px!important;}
  .single-jogo .jp-actions .jp-btn[data-tooltip]:after{display:none!important;}
  .single-jogo .jp-actions .jp-newgame:before{width:22px!important;height:22px!important;font-size:22px!important;}
  .single-jogo .jp-player.is-jp-fullscreen .jp-actions .jp-btn,
  .single-jogo .jp-player:fullscreen .jp-actions .jp-btn,
  .single-jogo .jp-player:-webkit-full-screen .jp-actions .jp-btn{width:40px!important;height:40px!important;min-width:40px!important;min-height:40px!important;}
}
