* { margin: 0; padding: 0; box-sizing: border-box; }

/* Inter: fonte usada por Figma, Linear, Vercel, isthereanydeal e a
   maioria dos produtos digitais modernos — carrega do Google Fonts
   sem precisar de arquivo local */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    color: #f2f2f0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    background: linear-gradient(90deg, rgba(11, 17, 27, 1) 0%, rgba(11, 18, 28, 1) 100%);
}
.topbar {
  display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    position: relative;
    top: 0;
    z-index: 100;
    margin: 24px auto 0;
    max-width: 1530px;
}
/* paginas de jogo, ofertas e sobre ficam contidas em 1200px */
.topbar.topbar-contained { max-width: 1200px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; text-decoration: none; color: #f2f2f0; }
.logo-icon { color: #f0541d; }

/* ===== NAVBAR LINKS ===== */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  background: none; border: none; color: #c9cad2; font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 7px; cursor: pointer; text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.06); color: #f2f2f0; }
.nav-drop-btn { display: flex; align-items: center; gap: 5px; }
.drop-arrow { font-size: 10px; transition: transform 0.15s; }
.nav-dropdown { position: relative; }
.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

/* ===== HOME V2 — seções emocionais ===== */
.home-main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0px 35px;
}
/* 1. Espaçamento de 56px entre seções para criar ritmo visual */
.home-section {
  margin-bottom: 56px;
  background: #0c121c;
  border-radius: 12px;
  padding: 22px 22px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.home-section--accent {
  background: linear-gradient(135deg, #0c1a10 0%, #0c121c 60%);
  border: 0.5px solid rgba(74,222,128,0.12);
}
.home-section--all { background: transparent; border: 0.5px solid rgba(255,255,255,0.06); }

/* 2. section-head: título à esquerda + botões alinhados à direita no topo */
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
/* title-wrap empilha título e subtítulo verticalmente */
.section-title-wrap { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.section-title { font-size: 17px; font-weight: 700; color: #f2f2f0; letter-spacing: -0.01em; }
.section-sub { font-size: 12px; color: #6f717a; line-height: 1.4; }

/* row-actions sempre alinhado com o topo do section-head (não com o subtítulo) */
.section-head .row-actions {
  display: flex; gap: 6px;
  flex-shrink: 0;
  /* alinha os botões com a primeira linha do título */
  margin-top: 1px;
}

.nav-drop-panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 200;
  background: #111923; border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  width: 420px; overflow: hidden;
  padding: 14px; display: none;
}
.nav-dropdown.open .nav-drop-panel { display: block; }

/* V3: 4 colunas x 2 linhas = estante de 8 jogos */
.nav-mini-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  scrollbar-width: none;
}
.nav-mini-grid::-webkit-scrollbar { display: none; }

.nav-mini-card {
  display: flex; flex-direction: column; gap: 5px;
  text-decoration: none; color: #f2f2f0;
  border-radius: 6px; overflow: hidden;
  transition: transform 0.12s;
}
.nav-mini-card:hover { transform: translateY(-2px); }

/* capa vertical 2:3 — estilo caixa de jogo */
.nav-mini-cover {
  position: relative; aspect-ratio: 2/3;
  background: #1f2027; border-radius: 5px; overflow: hidden;
}
.nav-mini-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-mini-placeholder { width: 100%; height: 100%; background: #1f2027; }
.nav-mini-cut {
  position: absolute; bottom: 4px; left: 4px;
  background: rgba(22,53,36,0.92); color: #4ade80;
  font-size: 10px; font-weight: 700; padding: 2px 5px; border-radius: 4px;
}
.nav-mini-info { display: flex; flex-direction: column; gap: 1px; padding: 0 1px 4px; }
.nc-title { font-size: 10px; font-weight: 500; line-height: 1.3; color: #c9cad2; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.nc-price { font-size: 10px; color: #ff7a45; font-weight: 700; }
.nc-cut { display: none; }
.nc-empty { font-size: 13px; color: #6f717a; padding: 20px; text-align: center; }
.nc-ver-todos {
  display: block; text-align: center; margin-top: 10px; padding: 8px;
  font-size: 12px; color: #9a9ca6; text-decoration: none; border-radius: 6px;
  border: 0.5px solid rgba(255,255,255,0.07);
}
.nc-ver-todos:hover { background: rgba(255,255,255,0.05); color: #f2f2f0; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

/* grid para "jogos parecidos" — 5 colunas em tela larga, 4 em média */
.similar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 900px) { .similar-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .similar-grid { grid-template-columns: repeat(2, 1fr); } }

.similar-section {
  max-width: 1350px; margin: 10px auto 0; padding: 0 0px 20px;
}
.similar-heading {
  font-size: 15px; font-weight: 600; margin-bottom: 10px;
  letter-spacing: -0.01em; color: #9a9ca6;
}

/* card menor para "jogos parecidos" — ~17% menor que o card normal */
.similar-grid .card { border-radius: 8px; }
.similar-grid .card .thumb { aspect-ratio: 3/4; }
.similar-grid .card .thumb .cut-badge {
  font-size: 10px; padding: 1px 5px; bottom: 4px; left: 4px;
}
.similar-grid .card .info { padding: 6px 8px 8px; }
.similar-grid .card .info .name {
  font-size: 11px; margin-bottom: 4px; line-height: 1.3;
}
.similar-grid .card .info .price { font-size: 13px; }
.similar-grid .card .info .regular { font-size: 10px; }
.similar-grid .card-store-tag { font-size: 10px; margin-top: 3px; }

.card {
  background: #0f1620; border-radius: 10px; overflow: hidden; cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.07); transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.5); border-color: #ff7a45; }
.card .thumb { position: relative; aspect-ratio: 2/3; background: #2a2b32; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .thumb .cut-badge {
  position: absolute; bottom: 6px; left: 6px;
  background: #ff7a45; color: #1a0e06; font-size: 11px; font-weight: 600;
  padding: 2px 6px; border-radius: 4px;
}
.card .info { padding: 9px 10px; }
.card .info .name {
  font-size: 12px; color: #c9cad2; margin-bottom: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card .info .price-line { display: flex; align-items: baseline; gap: 6px; }
.card .info .price { font-size: 15px; font-weight: 600; }
.card .info .regular { font-size: 11px; color: #6f717a; text-decoration: line-through; }
.card-store-tag {
  display: flex; align-items: center; gap: 5px; margin-top: 4px;
  font-size: 11px; color: #9a9ca6;
}
.card-store-tag span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* MODAL (detalhe do jogo com lista de lojas) */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.modal.hidden { display: none; }
.modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.modal-card {
  position: relative; z-index: 2; background: #1a1b21; border: 0.5px solid #2a2b32;
  border-radius: 12px; width: 90%; max-width: 680px; max-height: 85vh; overflow-y: auto; padding: 24px;
}
.modal-card .close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  color: #9a9ca6; font-size: 22px; cursor: pointer;
}
.modal-head { display: flex; gap: 16px; margin-bottom: 20px; }
.modal-head img { width: 160px; border-radius: 8px; }
.modal-head .title { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.modal-head .history-low { font-size: 13px; color: #9a9ca6; }

.filter-line { margin-bottom: 14px; }
.trusted-filter { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #9a9ca6; cursor: pointer; }

.deal-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: background 0.15s;
}
.deal-row:hover { background: rgba(255,255,255,0.03); }
.deal-row.best {
    background: #141d28;
    box-shadow: 0 0 0 1px #2e5c3a;
}
.deal-row .shop-info { flex: 1; min-width: 0; }
.deal-row .shop-name {
  font-weight: 600; font-size: 14px; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.badge { display: inline-block; font-size: 11px; padding: 2px 7px; border-radius: 4px; white-space: nowrap; }
.badge.best { background: #163524; color: #4ade80; margin-top: 4px; }
.deal-row .regular-price { font-size: 11px; color: #6f717a; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deal-row .price-block { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.deal-row .price { font-weight: 700; font-size: 16px; white-space: nowrap; }
.deal-row a.go-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    padding: 3px 22px;
    background: #f0541d;
    color: #f6f2ef;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.deal-row a.go-btn:hover { background: #ff8c5f; }

.ig-check-btn {
  display: flex; align-items: center; gap: 10px; margin-top: 10px;
  background: #111923; border: 0.5px solid #2a2b32; border-radius: 8px;
  padding: 11px 14px; color: #c9cad2; font-size: 13px; text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.ig-check-btn:hover { background: #1a2535; border-color: #ff7a45; color: #f2f2f0; }
.store-icon-fallback {
  display: flex; align-items: center; justify-content: center; border-radius: 6px;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 20px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  background: #090e16;
}
.footer-inner {
  max-width: 1580px; margin: 0 auto; padding: 48px 32px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo { font-size: 18px; font-weight: 700; text-decoration: none; color: #f2f2f0; }
.footer-tagline { font-size: 13px; color: #6f717a; margin-top: 10px; line-height: 1.6; }
.footer-credit { font-size: 11px; color: #3a3b42; margin-top: 6px; }
.footer-credit a { color: #3a3b42; text-decoration: underline; }
.footer-col h4 {
  font-size: 11px; font-weight: 600; color: #6f717a;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 13px; color: #9a9ca6; text-decoration: none;
  margin-bottom: 8px; transition: color 0.12s;
}
.footer-col a:hover { color: #f2f2f0; }
.footer-bottom {
  max-width: 1400px; margin: 0 auto; padding: 20px 32px;
  border-top: 0.5px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #3a3b42; flex-wrap: wrap; gap: 8px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== PAGINA DE JOGO ===== */
.logo { text-decoration: none; color: #f2f2f0; }

.game-header-wrap { max-width: 1350px; margin: 20px auto 0; padding: 0 24px; }
.game-screenshots-wrap { max-width: 1200px; margin: 20px auto 0; padding: 0 24px; }
.game-header {
    display: flex;
    gap: 28px;
    align-items: flex-end;
    border-radius: 16px;
    padding: 120px 28px 28px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    /* fundo fallback enquanto hero carrega */
    background: #0d1117;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
/* hero de fundo — aplicado via JS com g.hero */
.game-header.has-hero {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
/* gradiente escuro: legível à esquerda, transparente à direita */
.game-header::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(
        90deg,
        rgba(13,17,23,0.97) 0%,
        rgba(13,17,23,0.85) 35%,
        rgba(13,17,23,0.5)  65%,
        rgba(13,17,23,0.15) 100%
    );
    border-radius: 16px;
    z-index: 1;
}
/* gradiente de baixo para cima para fixar o rodapé */
.game-header::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,17,23,0.7) 0%, transparent 40%);
    border-radius: 16px;
    z-index: 1;
}
/* todo conteúdo fica acima dos gradientes */
.game-header > * { position: relative; z-index: 2; }

.game-cover {
    position: relative;
    width: 140px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #1f2027;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
    /* sobe levemente para efeito de "flutuando" */
    margin-bottom: -4px;
}
.game-cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-cut-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #f0541d;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 4px 0 4px 0;
}
.game-headinfo { flex: 1; min-width: 0; padding-top: 4px; }
.game-headinfo h1 {
  font-size: 28px; font-weight: 700; margin: 0 0 10px;
  letter-spacing: -0.02em; line-height: 1.2;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.fav-heart {
  background: none; border: 0.5px solid #3a3b42; border-radius: 32px; width: 36px; height: 36px;
  color: #9a9ca6; font-size: 17px; cursor: pointer; flex-shrink: 0;
}
.fav-heart.active { color: #ff7a45; border-color: #ff7a45; }
.fav-heart:hover { background: #1f2027; }
.platform-tag { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #c9cad2; }

.game-priceblock {
    flex-shrink: 0;
    width: 315px;
    text-align: right;
    background: #111923c4;
    border: 0.5px solid #111923b0;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.price-top-row {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 18px;
    margin-bottom: 15px;
}
.regular-strike { font-size: 13px; color: #6f717a; text-decoration: line-through; }
.price-big {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 1px;
}
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f0541d;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
}
.cta-btn:hover { background: #ff8c5f; }
.cta-btn .store-icon, .cta-btn .store-icon-fallback { flex-shrink: 0; }

.fav-secondary-btn {
    display: block;
    width: 100%;
    margin-top: 11px;
    background: none;
    color: #c9cad2;
    font-size: 14px;
    padding: 9px;
    border-radius: 8px;
    border: 0.5px solid #3a3b42;
    cursor: pointer;
}
.fav-secondary-btn:hover { background: #1f2027; }
.fav-secondary-btn.active { color: #ff7a45; border-color: #ff7a45; }
.urgency-note { font-size: 11px; color: #6f717a; text-align: center; margin: 16px 0 0; }

.review-pill { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; margin-top: 10px; }
.review-pill .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.review-pill-count { color: #6f717a; font-weight: 400; }

.cut-pill {
    display: inline-block;
    background: #f0541d;
    color: #e9ecea;
    font-weight: 700;
    font-size: 13px;
    padding: 3px 15px;
    border-radius: 3px;
    flex-shrink: 0;
}
.cut-pill.lg { font-size: 18px; }

@media (max-width: 700px) {
  .game-header { flex-wrap: wrap; }
  .game-priceblock { width: 100%; text-align: left; }
  .price-top-row { justify-content: flex-start; }
}

.game-main {
    max-width: 1350px;
    margin: 0 auto;
    padding: 3px 24px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 10px;
}
.game-left {
    min-width: 0;
    background: #0f1620;
    border-radius: 10px;
    padding: 20px;
    align-self: start; /* nao estica para preencher altura da coluna */
}
.game-tabs {
    max-width: 1300px;
    margin: 8px auto;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    gap: 4px;
    background: #0f1620;
}
.game-tab-btn {
  background: none; border: none; color: #9a9ca6; font-size: 14px; font-weight: 600;
  padding: 10px 4px; margin-right: 20px; cursor: pointer; border-bottom: 2px solid transparent;
  text-decoration: none; display: inline-block;
}
.game-tab-btn.active { color: #f2f2f0; border-bottom-color: #f0541d; }
.game-tab-btn:hover { color: #f2f2f0; }

.game-screenshots-wrap-inline {
    margin: 8px -20px 0;
}
.game-screenshots-wrap-inline .screenshot-carousel img {
  flex: 0 0 200px; width: 200px; height: 113px; min-width: 0;
}

.sobre-req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 1350px;
    margin: 8px auto 0;
    padding: 0 24px;
}
.sobre-req-grid .block { margin: 0; }
@media (max-width: 860px) { .sobre-req-grid { grid-template-columns: 1fr; } }

.screenshot-carousel-wrap { position: relative; display: flex; align-items: center; gap: 8px; }
.screenshot-carousel {
  display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; flex: 1;
}
.screenshot-carousel::-webkit-scrollbar { display: none; }
.screenshot-carousel img {
  flex: 0 0 300px; width: 300px; height: 169px; min-width: 0;
  aspect-ratio: 16/9; object-fit: cover; border-radius: 8px;
  background: #1f2027; scroll-snap-align: start;
}
.carousel-arrow {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 0.5px solid #3a3b42;
  background: #1f2027; color: #f2f2f0; font-size: 18px; cursor: pointer; line-height: 1;
}
.carousel-arrow:hover { background: #2a2b32; }

.features-list { margin-top: 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
.feature-item { display: flex; gap: 8px; font-size: 13px; color: #c9cad2; align-items: flex-start; }
.feature-check { color: #ff7a45; flex-shrink: 0; font-weight: 700; }
@media (max-width: 640px) { .features-list { grid-template-columns: 1fr; } }

.review-desc-big { font-size: 16px; font-weight: 700; margin: 0; }
.review-total { font-size: 12px; color: #6f717a; margin: 2px 0 12px; }
.review-bar-track { height: 8px; border-radius: 4px; background: #2a2020; overflow: hidden; }
.review-bar-fill { height: 100%; background: #4ade80; }
.review-bar-legend { display: flex; justify-content: space-between; font-size: 11px; color: #9a9ca6; margin-top: 6px; }

.info-panel { margin-top: 0px; background: #1a1b21; border: 0.5px solid #0f1620; border-radius: 12px; padding: 20px; }
.info-panel h2 { font-size: 15px; margin-bottom: 12px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 0.5px solid #0f1620; }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 8px 0; font-size: 12px; vertical-align: top; }
.info-table td:first-child { color: #6f717a; width: 36%; padding-right: 10px; }
.info-table td:last-child { color: #c9cad2; }
.info-expand-btn {
  background: none; border: none; color: #ff7a45; font-size: 12px; cursor: pointer;
  padding: 10px 0 0; text-align: left;
}
.info-expand-btn:hover { text-decoration: underline; }
.info-full-langs { font-size: 12px; color: #c9cad2; line-height: 1.6; margin-top: 8px; }
.hidden { display: none !important; }

.req-tabs { display: flex; gap: 4px; margin-bottom: 10px; }
.req-tab-btn {
  background: #1f2027; border: 0.5px solid #2a2b32; color: #9a9ca6; font-size: 12px;
  padding: 6px 14px; border-radius: 6px; cursor: pointer;
}
.req-tab-btn.active { color: #f2f2f0; border-color: #ff7a45; }
.req-text { font-size: 13px; color: #9a9ca6; line-height: 1.8; white-space: pre-line; }

.block {
    margin-bottom: 10px;
    background: #0f1620;
    padding: 20px 24px;
    border-radius: 12px;
    max-width: 1150px;
    margin: 0 auto 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.03) inset;
    border: 0.5px solid rgba(255,255,255,0.05);
}
.block h2 { font-size: 17px; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.01em; }
.desc { color: #c9cad2; font-size: 14px; line-height: 1.75; }
.meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.meta span { font-size: 13px; color: #9a9ca6; }

.editions { display: flex; flex-direction: column; gap: 10px; }
.edition-card {
  display: flex; align-items: center; justify-content: space-between;
  background: #1f2027; border: 0.5px solid #2a2b32; border-radius: 8px; padding: 14px 16px;
}
.edition-name { font-size: 14px; font-weight: 500; }
.edition-price { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; }

.chart-wrap {
    background: #141d28;
    border: 0.5px solid #2a2b32;
    border-radius: 8px;
    padding: 12px;
    height: 190px;
}

.reviews { display: flex; gap: 10px; flex-wrap: wrap; }
.review-badge {
  flex: 1; min-width: 120px;
  border: 0.5px solid #2a2b32; border-radius: 12px;
  padding: 14px 16px; text-align: center;
  background: #0f1620;
  transition: border-color 0.15s;
}
.review-badge:hover { border-color: #3a3b42; }
.review-score { font-size: 32px; font-weight: 700; line-height: 1; }
.review-label { font-size: 12px; font-weight: 600; margin-top: 4px; }
.review-source { font-size: 11px; color: #6f717a; margin-top: 2px; }
.review-count { font-size: 11px; color: #6f717a; margin-top: 2px; }

/* bloco de avaliação Steam destacado — ocupa a largura toda */
.review-steam-block {
  background: #0f1620; border: 0.5px solid #2a2b32; border-radius: 12px;
  padding: 20px 24px; margin-bottom: 12px;
}
.review-steam-top { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.review-steam-score {
  font-size: 48px; font-weight: 800; line-height: 1; letter-spacing: -0.04em;
}
.review-steam-info { flex: 1; min-width: 0; }
.review-steam-label { font-size: 18px; font-weight: 700; line-height: 1.2; }
.review-steam-count { font-size: 13px; color: #6f717a; margin-top: 4px; }
.review-steam-bar { height: 6px; border-radius: 3px; background: #1f2027; margin-top: 14px; overflow: hidden; }
.review-steam-bar-fill { height: 100%; border-radius: 3px; }
.review-steam-legend { display: flex; justify-content: space-between; font-size: 11px; color: #6f717a; margin-top: 6px; }

.game-right .sticky {
    position: sticky;
    top: 80px;
    background: #0f1620;
    border: 0.5px solid #0f1620;
    border-radius: 12px;
    padding: 20px;
}
.precos-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.precos-title { font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.precos-caption { font-size: 12px; color: #6f717a; margin: 0; }
.price-filter-tabs { display: flex; gap: 6px; flex-shrink: 0; }

.pfilter-btn {
    background: #141d28;
    border: 0.5px solid #141d28;
    color: #9a9ca6;
    font-size: 12px;
    padding: 7px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}
.pfilter-btn.active {
    background: #000000;
    color: #eeeeee;
    border-color: #000000;
}
.updated-note { font-size: 11px; color: #6f717a; margin-top: 12px; text-align: center; }

/* ===== COBERTURA DE LOJAS ===== */
/* ===== COBERTURA DE LOJAS ===== */
.store-coverage {
  margin-top: 16px; padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.07);
}
.coverage-summary {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #c9cad2; margin-bottom: 14px;
  font-weight: 500;
}
.coverage-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}
.no-offer-list { display: flex; flex-direction: column; gap: 3px; }
.no-offer-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.05);
}
.no-offer-row:hover { background: rgba(255,255,255,0.06); }
.no-offer-x { font-size: 12px; color: #6b7280; flex-shrink: 0; font-weight: 600; }
.no-offer-shop { font-size: 13px; color: #9a9ca6; flex: 1; font-weight: 500; }
.no-offer-msg { font-size: 11px; color: #4b5563; font-style: italic; }

/* loja "Não disponível" tem visual mais definitivo que "sem oferta ativa" */
.no-offer-row.unavailable .no-offer-shop { color: #6b7280; }
.no-offer-row.unavailable .no-offer-msg { color: #374151; }

/* bloco "Por que poucas ofertas?" */
.why-few-offers {
  margin-top: 14px; padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255,165,0,0.05);
  border: 0.5px solid rgba(255,165,0,0.15);
}
.why-title {
  font-size: 13px; font-weight: 600; color: #c9cad2; margin-bottom: 6px;
}
.why-text {
  font-size: 12px; color: #9a9ca6; line-height: 1.7; margin: 0;
}
.why-text strong { color: #c9cad2; }


.breadcrumb {
    font-size: 12px;
    color: #6f717a;
    margin-left: 32px;
    margin-bottom: 0px;
   display: none;
}
.breadcrumb a { color: #6f717a; text-decoration: none; }
.breadcrumb a:hover { color: #c9cad2; text-decoration: underline; }
.breadcrumb span { margin: 0 4px; }

.genre-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.genre-tag {
    background: #141d28;
    border: 0.5px solid #181f28;
    color: #c9cad2;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 5px;
}

@media (max-width: 860px) {
  .game-main { grid-template-columns: 1fr; }
  .game-right .sticky { position: static; }
}

/* ===== CORRECOES v5 ===== */
/* tira o estilo padrao de link (roxo/sublinhado) de cards e hero */
a.card, a.card:visited, a.card:hover,
.hero-content, .hero-content:visited,
.game-hero-content a, .game-hero-content a:visited {
  text-decoration: none !important;
  color: inherit !important;
}
a.card *, .hero-content * { color: inherit; text-decoration: none; }
a.card .price { color: #f2f2f0; }
a.card .regular { color: #6f717a; }
a.card .store { color: #6f717a; }
a.card .name { color: #c9cad2; }

/* hero: alinhar conteudo a esquerda com respiro consistente */
.hero-content {
  display: block;
  padding: 32px 40px;
  text-decoration: none;
}
.hero-content h1 { margin: 0 0 12px; }

/* selo de loja (cor da marca + iniciais) no lugar do nome escrito */
.store-seal {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  padding: 3px 8px; border-radius: 5px; margin-top: 4px;
}
.store-seal.big {
  width: 44px; height: 44px; font-size: 13px; margin-top: 0; flex-shrink: 0;
  border-radius: 8px;
}

.cut-badge.free { background: #4ade80; color: #0a2a14; }

/* ===== GARIMPO ===== */
.row-sub { font-size: 12px; color: #6f717a; margin-left: 10px; font-weight: 400; }
.garimpo-grid { display: flex; flex-direction: column; gap: 12px; }
.garimpo-card {
  display: flex; gap: 16px; background: linear-gradient(135deg, #1f2027, #1a1b21);
  border: 0.5px solid #3a2e1f; border-radius: 10px; padding: 14px;
  text-decoration: none; color: inherit; transition: border-color 0.12s;
}
.garimpo-card:hover { border-color: #ff7a45; }
.garimpo-card .thumb { width: 120px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: #2a2b32; aspect-ratio: 460/215; }
.garimpo-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.garimpo-card .name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.garimpo-note { font-size: 12px; color: #c9cad2; line-height: 1.5; margin-bottom: 8px; max-width: 520px; }
.garimpo-noprice { font-size: 12px; color: #6f717a; font-style: italic; }

.cut-badge.neutral { background: #2a2b32; color: #9a9ca6; }

/* ===== LISTA DENSA DE OFERTAS (estilo ITAD browse) ===== */
.ofertas-list { display: flex; flex-direction: column; gap: 4px; }
.oferta-row {
  display: flex; align-items: center; gap: 12px; padding: 8px 10px;
  border-radius: 6px; text-decoration: none; color: inherit;
  border-bottom: 0.5px solid #2a2b32;
}
.oferta-row:hover { background: #1f2027; }
.oferta-thumb { width: 60px; height: 28px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: #2a2b32; }
.oferta-thumb img { width: 100%; height: 100%; object-fit: cover; }
.oferta-title {
  flex: 1; min-width: 0; font-size: 13px; color: #f2f2f0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.oferta-store {
  font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; flex-shrink: 0;
}
.cut-badge.small { font-size: 11px; padding: 2px 6px; flex-shrink: 0; }
.oferta-price-block { display: flex; align-items: baseline; gap: 6px; width: 130px; justify-content: flex-end; flex-shrink: 0; }
.oferta-price-block .price { font-size: 13px; font-weight: 600; color: #f2f2f0; }
.oferta-price-block .regular { font-size: 11px; color: #6f717a; text-decoration: line-through; }

.load-more-btn {
  margin-top: 14px; width: 100%; padding: 10px; background: #1f2027;
  border: 0.5px solid #2a2b32; border-radius: 8px; color: #c9cad2;
  font-size: 13px; cursor: pointer;
}
.load-more-btn:hover { background: #2a2b32; }

@media (max-width: 640px) {
  .oferta-store { display: none; }
  .oferta-price-block { width: auto; }
}

/* fallback visual quando a imagem falha ao carregar (link quebrado, jogo sem capa) */
.img-fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1f2027, #2a2b32);
}
.img-fallback::after {
  content: "";
  font-size: 1.4em;
  opacity: 0.35;
}

/* ===== FILEIRA DE DESTAQUES (abaixo do hero) ===== */
.feature-strip {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 15px auto 0;
    max-width: 1155px;
}
.feature-item {
  background: hsl(217.5deg 40% 7.84%);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 82px;
    border-radius: 8px;
    padding: 14px 18px;
}
.feature-item i { font-size: 22px; color: #ff7a45; flex-shrink: 0; }
.feature-item strong { display: block; font-size: 13px; font-weight: 500; color: #f2f2f0; }
.feature-item span { display: block; font-size: 11px; color: #6f717a; margin-top: 2px; }

@media (max-width: 860px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===== LISTA DE OFERTAS v2 (barra de desconto preenchendo o meio) ===== */
.oferta-row {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px;
}
.oferta-bar-track {
  flex: 1.4; height: 6px; background: #2a2b32; border-radius: 3px; position: relative; max-width: 200px;
}
.oferta-bar-fill {
  position: absolute; left: 0; top: 0; height: 100%; border-radius: 3px; background: #ff7a45;
}
.oferta-bar-fill.free { background: #4ade80; }
.oferta-cut-label { font-size: 11px; font-weight: 600; color: #ff7a45; width: 38px; text-align: right; flex-shrink: 0; }
.oferta-cut-label.free { color: #4ade80; }

/* ===== HERO v2: card contido com carrossel ===== */
main { padding-top: 20px; }
.hero-wrap { max-width: 1400px; margin: 24px auto 0; padding: 0 32px; }
.hero {
  position: relative; height: 350px; border-radius: 12px; overflow: hidden;
  background-size: cover; background-position: center; display: flex; align-items: center;
}
.hero-gradient {     position: absolute;
    inset: 0;
    background: linear-gradient(100deg, #2d384b 30%, rgb(12 18 28 / 33%) 60%, transparent 90%); }
.hero-content { position: relative; z-index: 2; padding: 0 32px; max-width: 46%; }
.hero-eyebrow { font-size: 10px; letter-spacing: 0.06em; color: #9a9ca6; margin-bottom: 6px; text-transform: uppercase; }
.hero-content h1 { font-size: 26px; font-weight: 700; color: #f2f2f0; line-height: 1.2; margin: 0 0 8px; }
.hero-subtitle { font-size: 13px; color: #9a9ca6; margin: 0 0 14px; line-height: 1.4; }
.hero-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.hero-cut { background: #ff7a45; color: #1a0e06; font-weight: 700; font-size: 12px; padding: 3px 8px; border-radius: 5px; }
.hero-regular { font-size: 11px; color: #9a9ca6; text-decoration: line-through; }
.hero-amount { font-size: 17px; font-weight: 700; color: #f2f2f0; }
.hero-store { font-size: 11px; color: #c9cad2; }
.hero-actions { display: flex; gap: 8px; }
.hero-cta {
  background: #ff7a45; color: #1a0e06; font-size: 13px; font-weight: 600; padding: 9px 20px;
  border-radius: 6px; text-decoration: none;
}
.hero-cta:hover { background: #ff8c5f; }
.hero-heart {
  width: 36px; height: 36px; border-radius: 6px; border: 0.5px solid #3a3b42; background: transparent;
  color: #c9cad2; font-size: 15px; cursor: pointer;
}
.hero-heart:hover { background: #1f2027; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,0.45); border: none; color: #f2f2f0; font-size: 14px; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow.prev { left: 10px; }
.hero-arrow.next { right: 10px; }
.hero-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 3; }
.hero-dots span { width: 16px; height: 3px; border-radius: 2px; background: #3a3b42; cursor: pointer; }
.hero-dots span.active { background: #ff7a45; }

/* ===== CARROSSEL HORIZONTAL (De graca, Mais desejados, Em alta) ===== */
.row-head { display: flex; align-items: center; justify-content: space-between; }
.row-actions { display: flex; gap: 6px; }
.scroll-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 0.5px solid #2a2b32; background: #1f2027;
  color: #c9cad2; cursor: pointer; font-size: 13px;
}
.scroll-btn:hover { background: #2a2b32; }
.carousel-row {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px;
  scrollbar-width: none;
}
.carousel-row::-webkit-scrollbar { display: none; }
.carousel-row .card { flex: 0 0 170px; scroll-snap-align: start; }

/* ===== v14: reorganizacao da home ===== */
.row-head { gap: 10px; }
.ver-todas-link {
  font-size: 12px; color: #c9cad2; text-decoration: none; margin-right: 4px;
  border: 0.5px solid #2a2b32; padding: 5px 12px; border-radius: 6px;
}
.ver-todas-link:hover { background: #1f2027; }

/* preview da lista de ofertas na home: mostra ~6, scroll interno pro resto */
.ofertas-list-preview { max-height: 290px; overflow-y: auto; }
.ver-todas-btn {
  display: block; margin-top: 14px; width: 100%; text-align: center; padding: 10px;
  background: #1f2027; border: 0.5px solid #2a2b32; border-radius: 8px; color: #c9cad2;
  font-size: 13px; text-decoration: none;
}
.ver-todas-btn:hover { background: #2a2b32; }

/* rodape em 3 colunas: De graca | Garimpo | Lojas em destaque */
.bottom-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.bottom-col { min-width: 0; }
.bottom-list { display: flex; flex-direction: column; gap: 6px; }

/* garimpo compacto (cabe numa coluna de 1/3) */
.bottom-col .garimpo-card { flex-direction: row; padding: 8px; gap: 8px; }
.bottom-col .garimpo-card .thumb { width: 64px; aspect-ratio: 460/215; }
.bottom-col .garimpo-card .name { font-size: 12px; margin-bottom: 2px; }
.bottom-col .garimpo-card .garimpo-note { display: none; }
.bottom-col .garimpo-card .price-line .price { font-size: 12px; }

/* "Lojas em destaque" - lista ilustrativa */
.loja-row { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 6px; }
.loja-row:hover { background: #1f2027; }
.loja-name { flex: 1; font-size: 13px; color: #f2f2f0; }
.loja-rating { font-size: 12px; color: #fbbf24; display: flex; align-items: center; gap: 4px; }
.loja-rating i { font-size: 13px; }

@media (max-width: 860px) {
  .bottom-cols { grid-template-columns: 1fr; }
}

/* ===== pagina /ofertas (conceito visual, sem filtro funcional ainda) ===== */
.ofertas-page-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; padding: 24px; }
.filters-sidebar { background: #1f2027; border: 0.5px solid #2a2b32; border-radius: 10px; padding: 16px; align-self: start; }
.filters-head { display: flex; align-items: center; justify-content: space-between; }
.clear-filters-btn { background: none; border: none; color: #ff7a45; font-size: 12px; cursor: pointer; padding: 0; }
.clear-filters-btn:hover { text-decoration: underline; }
.filters-sidebar h3 { font-size: 12px; color: #9a9ca6; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 10px; }
.filters-sidebar h3:not(:first-child) { margin-top: 18px; }
.filter-option { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #c9cad2; padding: 4px 0; cursor: pointer; }
.filter-option input { width: 14px; height: 14px; }
.ofertas-results-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.results-count { font-size: 13px; color: #9a9ca6; }
.filters-note { font-size: 11px; color: #6f717a; margin-top: 16px; border-top: 0.5px solid #2a2b32; padding-top: 10px; }
@media (max-width: 700px) { .ofertas-page-layout { grid-template-columns: 1fr; } }

.row-head > div:first-child .row-sub { margin-left: 0; display: block; margin-top: 2px; }

/* ===== v15: scrollbar colorida nos carrosseis ===== */
.carousel-row::-webkit-scrollbar { display: block; height: 4px; }
.carousel-row::-webkit-scrollbar-track { background: #2a2b32; border-radius: 2px; }
.carousel-row::-webkit-scrollbar-thumb { background: #ff7a45; border-radius: 2px; }
.carousel-row {scrollbar-color: #ff7a45 #2a2b32; }

/* e o scroll interno da lista de mais ofertas */
.ofertas-list-preview::-webkit-scrollbar { width: 4px; }
.ofertas-list-preview::-webkit-scrollbar-track { background: #2a2b32; border-radius: 2px; }
.ofertas-list-preview::-webkit-scrollbar-thumb { background: #ff7a45; border-radius: 2px; }
.ofertas-list-preview { scrollbar-width: thin; scrollbar-color: #ff7a45 #2a2b32; }

/* ===== busca com dropdown de autocomplete ===== */
.search-wrap { position: relative; display: flex; gap: 8px; }
.search-wrap input {
    background: #0f1620;
    border: 0.5px solid #0f1620;
    border-radius: 6px;
    padding: 8px 12px;
    color: #f2f2f0;
    font-size: 14px;
    width: 280px;
}
.search-wrap input::placeholder { color: #6f717a; }
.search-wrap button {
    background: #0f1620b8;
    color: #ff9b55;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
}
.search-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #1f2027; border: 0.5px solid #3a3b42; border-radius: 8px;
  z-index: 100; box-shadow: 0 8px 24px rgba(0,0,0,0.5); overflow: hidden;
}
.search-dropdown.hidden { display: none; }
.search-result-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px;
  cursor: pointer; text-decoration: none; color: #f2f2f0;
}
.search-result-item:hover { background: #2a2b32; }
.search-result-thumb {
  width: 40px; height: 22px; border-radius: 3px; background: #2a2b32;
  flex-shrink: 0; overflow: hidden;
}
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result-title { font-size: 13px; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-price { font-size: 12px; font-weight: 600; color: #ff7a45; flex-shrink: 0; }
.search-loading { padding: 10px 12px; font-size: 13px; color: #6f717a; }
/* ===== PÁGINA SOBRE ===== */
.sobre-section { margin-bottom: 40px; }
.sobre-section h2 { font-size: 18px; font-weight: 600; margin-bottom: 14px; letter-spacing: -0.01em; }
.sobre-section p { font-size: 14px; color: #c9cad2; line-height: 1.8; margin-bottom: 12px; }
.sobre-section a { color: #ff7a45; text-decoration: none; }
.sobre-section a:hover { text-decoration: underline; }

/* ===== SSR: elementos visiveis para crawlers, substituidos pelo JS ===== */
.seo-buy-section { max-width: 1200px; margin: 20px auto 0; padding: 0 24px 0; }
.seo-buy-heading { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.seo-buy-text { font-size: 14px; color: #9a9ca6; line-height: 1.7; }
.ssr-price-table { display: none; } /* escondido visualmente mas legivel por crawlers */
.seo-about { max-width: 1200px; margin: 16px auto 0; padding: 0 24px; }
.seo-about h2 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.seo-about p { font-size: 14px; color: #9a9ca6; line-height: 1.7; }
.seo-faq { max-width: 1200px; margin: 16px auto 0; }
.faq-item { border-bottom: 0.5px solid #2a2b32; padding: 14px 0; }
.faq-item summary {
  font-size: 14px; font-weight: 500; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; color: #ff7a45; font-size: 18px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { font-size: 13px; color: #9a9ca6; margin-top: 10px; line-height: 1.7; }

/* quando JS hidrata, esconde os elementos SSR e mostra o dinamico */
body.js-hydrated .seo-buy-section,
body.js-hydrated .seo-about,
body.js-hydrated .seo-faq { display: none; }

/* ===== GRÁTIS AGORA — cápsulas horizontais ===== */
.gratis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 700px) { .gratis-grid { grid-template-columns: 1fr; } }

.gratis-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(74,222,128,0.05); border: 0.5px solid rgba(74,222,128,0.15);
  border-radius: 10px; overflow: hidden; text-decoration: none; color: #f2f2f0;
  transition: border-color 0.15s, background 0.15s;
}
.gratis-card:hover { background: rgba(74,222,128,0.09); border-color: rgba(74,222,128,0.3); }
.gratis-capsule {
  flex-shrink: 0; width: 120px; height: 68px;
  background: #1f2027; overflow: hidden;
}
.gratis-capsule img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gratis-info { flex: 1; min-width: 0; padding: 10px 12px 10px 0; }
.gratis-badge {
  display: inline-block; background: #15803d; color: #bbf7d0;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  padding: 2px 7px; border-radius: 4px; margin-bottom: 5px;
}
.gratis-title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gratis-shop { font-size: 11px; color: #6f717a; margin-top: 2px; }

/* Acabaram de entrar */
.home-section--recentes {
  border: 0.5px solid rgba(74,222,128,0.1);
}
.recentes-dot { font-size: 14px; }

/* ===== SKELETON LOADING ===== */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.sk {
  background: linear-gradient(90deg, #1a2030 25%, #22293a 50%, #1a2030 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 6px;
}

/* skeleton card (mesmo tamanho do .card real) */
.sk-card {
  flex: 0 0 160px; width: 160px;
  display: flex; flex-direction: column; gap: 8px;
  border-radius: 10px; overflow: hidden;
}
.sk-card .sk-thumb { height: 213px; border-radius: 8px; } /* 2:3 ratio */
.sk-card .sk-title { height: 12px; border-radius: 4px; width: 85%; }
.sk-card .sk-price { height: 11px; border-radius: 4px; width: 50%; }

/* skeleton capsule (grátis agora) */
.sk-capsule {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.03); border-radius: 10px;
  overflow: hidden; padding: 0; height: 68px;
}
.sk-capsule .sk-img  { flex-shrink: 0; width: 120px; height: 68px; border-radius: 0; }
.sk-capsule .sk-line { height: 12px; border-radius: 4px; flex: 1; margin-right: 16px; }

/* skeleton hero */
.sk-hero {
  width: 100%; height: 340px;
  background: linear-gradient(90deg, #0d1520 25%, #131d2e 50%, #0d1520 75%);
  background-size: 1200px 100%;
  animation: shimmer 1.8s infinite linear;
  border-radius: 12px;
}

/* ===== TODAS AS OFERTAS V1 ===== */
.ofertas-page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 28px auto 0;
  padding: 0 24px;
  align-items: start;
}
.filters-sidebar {
  background: #0c121c;
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 20px;
  border: 0.5px solid rgba(255,255,255,0.06);
}
.filters-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}
.filters-head h3 { font-size: 15px; font-weight: 700; margin: 0; }
.filter-group { margin-bottom: 20px; }
.filter-label {
  font-size: 11px; font-weight: 600; color: #6f717a;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.filter-option {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #c9cad2; cursor: pointer;
  padding: 5px 0; line-height: 1.4;
}
.filter-option input { accent-color: #ff7a45; cursor: pointer; }
.clear-filters-btn {
  font-size: 12px; color: #ff7a45; background: none; border: none;
  cursor: pointer; padding: 0;
}
.clear-filters-btn:hover { text-decoration: underline; }

.ofertas-main { min-width: 0; }
.ofertas-results-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px; gap: 12px;
}
.ofertas-h1 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.results-count { font-size: 13px; color: #6f717a; white-space: nowrap; }

/* grid de cards — mesma largura que a home */
.ofertas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

/* estado vazio elegante */
.ofertas-empty {
  text-align: center; padding: 80px 24px;
  background: #0c121c; border-radius: 12px;
  border: 0.5px solid rgba(255,255,255,0.06);
}
.empty-icon { font-size: 48px; margin-bottom: 16px; }
.ofertas-empty h2 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.ofertas-empty p { font-size: 14px; color: #9a9ca6; }
.link-btn { background: none; border: none; color: #ff7a45; cursor: pointer; font-size: 14px; text-decoration: underline; }

/* paginação */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 8px 0 48px; padding: 20px 0;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.page-btn {
  background: #0f1620; border: 0.5px solid #2a2b32; border-radius: 8px;
  color: #c9cad2; font-size: 13px; font-weight: 500;
  padding: 9px 20px; cursor: pointer; transition: all 0.15s;
}
.page-btn:hover:not(:disabled) { background: #1a2535; border-color: #ff7a45; color: #f2f2f0; }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.page-info { font-size: 13px; color: #9a9ca6; }

@media (max-width: 768px) {
  .ofertas-page-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
}

/* ===== PÁGINA SOBRE V2 — institucional para parceiros ===== */
.sobre-page { max-width: 1000px; margin: 0 auto; padding: 40px 24px 80px; }
.sobre-hero { text-align: center; margin-bottom: 48px; }
.sobre-hero h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.sobre-lead { font-size: 16px; color: #9a9ca6; }
.sobre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .sobre-grid { grid-template-columns: 1fr; } }
.sobre-card {
  background: #0c121c; border-radius: 14px;
  padding: 28px; border: 0.5px solid rgba(255,255,255,0.06);
}
.sobre-card--highlight {
  border-color: rgba(255,122,0,0.25);
  background: linear-gradient(135deg, #140d06 0%, #0c121c 60%);
}
.sobre-icon { font-size: 28px; margin-bottom: 14px; }
.sobre-card h2 { font-size: 17px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.sobre-card p { font-size: 14px; color: #c9cad2; line-height: 1.75; margin-bottom: 10px; }
.sobre-card a { color: #ff7a45; text-decoration: none; }
.sobre-card a:hover { text-decoration: underline; }
.sobre-list { list-style: none; padding: 0; margin: 8px 0; }
.sobre-list li { font-size: 14px; color: #c9cad2; padding: 6px 0; border-bottom: 0.5px solid rgba(255,255,255,0.05); line-height: 1.5; }
.sobre-list li:last-child { border-bottom: none; }
.sobre-email {
  display: inline-block; font-size: 16px; font-weight: 600;
  color: #ff7a45; text-decoration: none; margin-top: 8px;
  padding: 10px 20px; background: rgba(255,122,0,0.1);
  border: 0.5px solid rgba(255,122,0,0.3); border-radius: 8px;
}
.sobre-email:hover { background: rgba(255,122,0,0.18); }
.sobre-stats { display: flex; gap: 20px; margin-top: 8px; }
.sobre-stat { display: flex; flex-direction: column; align-items: center; flex: 1; padding: 16px 8px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.stat-num { font-size: 28px; font-weight: 800; color: #ff7a45; letter-spacing: -0.02em; }
.stat-label { font-size: 11px; color: #6f717a; margin-top: 4px; text-align: center; }

/* ============================================================
   MOBILE PASS COMPLETO — SaveXP 1.0
   Breakpoints: 768px (tablet), 480px (phone)
   ============================================================ */

/* ─── NAVBAR ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .topbar, .topbar.topbar-contained {
    padding: 12px 16px;
    margin: 0;
    flex-wrap: wrap;
    gap: 10px;
    position: sticky; top: 0; z-index: 200;
    background: #090e16;
    border-bottom: 0.5px solid rgba(255,255,255,0.07);
  }
  .topbar .logo { font-size: 17px; }

  /* nav-links: esconde labels, mostra só ícones */
  .nav-links { gap: 2px; }
  .nav-link { padding: 6px 8px; font-size: 12px; }
  .nav-drop-btn .drop-arrow { display: none; }

  /* dropdown: não pode ultrapassar a viewport */
  .nav-drop-panel {
    width: calc(100vw - 32px);
    left: auto; right: 0;
    max-height: 60vh;
    overflow-y: auto;
  }
  .nav-mini-grid { grid-template-columns: repeat(3, 1fr); }

  /* busca: largura total na segunda linha */
  .search-wrap {
    order: 10;
    width: 100%;
    flex: none;
  }
  .search-wrap input { width: 100%; }
}

/* ─── HOME ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .home-main { padding: 0 0px 32px; }
  .hero-wrap  { padding: 0 12px; margin-top: 12px; }

  .home-section { padding: 16px 14px 14px; margin-bottom: 28px; }
  .section-title { font-size: 15px; }
  .section-sub   { font-size: 11px; }

  /* carrossel: permite scroll horizontal nativo */
  .carousel-row {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; gap: 10px;
    scrollbar-width: none; padding-bottom: 4px;
  }
  .carousel-row::-webkit-scrollbar { display: none; }
  .carousel-row .card { flex: 0 0 130px; }

  /* feature strip: 2×2 */
  .feature-strip { grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
  .feature-item { padding: 10px; }

  /* hero: empilha conteúdo */
  .hero {
    min-height: 240px;
    border-radius: 10px;
  }
  .hero-content { padding: 20px 6px; }
  .hero-title { font-size: 22px; }
  .hero-sub  { font-size: 12px; }
  .hero-price-row { flex-wrap: wrap; gap: 8px; }

  /* grátis agora: 1 coluna */
  .gratis-grid { grid-template-columns: 1fr; }
}

/* ─── PÁGINA DO JOGO ──────────────────────────────────────── */
@media (max-width: 768px) {
  .game-header-wrap { padding: 0 12px; margin-top: 12px; }

  /* cabeçalho: hero de fundo, capa pequena, info abaixo */
  .game-header {
    flex-direction: row;
    align-items: flex-end;
    text-align: left;
    padding: 90px 14px 18px;
    min-height: 180px;
    gap: 14px;
  }
  .game-cover {
    width: 80px;
    flex-shrink: 0;
     display: none;
  }
  .game-headinfo { align-items: flex-start; }
  .game-headinfo h1 {
    font-size: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
  }
  .genre-tags { justify-content: flex-start; }

  /* bloco de preço: largura total */
  .game-priceblock {
    width: 100%;
    text-align: left;
  }
  .price-top-row { justify-content: flex-start; }

  /* tabs: rolagem horizontal */
  .game-tabs-wrap { overflow-x: auto; }
  .game-tabs { min-width: max-content; padding: 0 12px; }

  /* main: coluna única */
  .game-main {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px;
    margin-top: 12px;
  }
  /* sidebar vira blocos empilhados abaixo do conteúdo */
  .game-right { order: 2; }
  .game-left  { order: 1; }

  /* screenshots menores */
  .game-screenshots-wrap-inline .screenshot-carousel img {
    flex: 0 0 160px; width: 160px; height: 90px;
  }

  /* sobre+requisitos: coluna única */
  .sobre-req-grid { grid-template-columns: 1fr; padding: 0 12px; }

  /* jogos parecidos: 2 colunas */
  .similar-section { padding: 0 12px 20px; }
  .similar-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* info panel */
  .info-panel table { font-size: 12px; }
}

/* ─── PÁGINA DE OFERTAS ───────────────────────────────────── */
@media (max-width: 768px) {
  /* botão "Filtros" visível só no mobile */
  .filter-toggle-btn {
    display: flex; align-items: center; gap: 8px;
    background: #0c121c; border: 0.5px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: #f2f2f0; font-size: 14px; font-weight: 600;
    padding: 10px 16px; cursor: pointer; margin-bottom: 16px;
    width: 100%;
  }
  .filter-toggle-btn:hover { background: #111923; }

  /* sidebar vira drawer (oculto por padrão) */
  .ofertas-page-layout {
    grid-template-columns: 1fr;
    padding: 0 12px;
    margin-top: 12px;
  }
  .filters-sidebar {
    position: fixed; top: 0; left: -100%;
    width: 280px; height: 100vh;
    overflow-y: auto; z-index: 300;
    border-radius: 0; transition: left 0.25s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,0.6);
  }
  .filters-sidebar.open { left: 0; }

  /* overlay atrás do drawer */
  .filter-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 299;
  }
  .filter-overlay.open { display: block; }

  /* grid: 2 colunas no mobile */
  .ofertas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ofertas-h1 { font-size: 18px; }

  /* paginação compacta */
  .pagination { gap: 10px; }
  .page-btn { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 400px) {
  /* telas muito pequenas: 1 coluna no ofertas */
  .ofertas-grid { grid-template-columns: repeat(2, 1fr); }
  /* nav-links: reduz tamanho mas não esconde */
  .nav-links { gap: 1px; }
  .nav-link { padding: 4px 6px; font-size: 11px; }
}

/* ─── RESET DESKTOP: garante que mobile-only não vaze ──── */
@media (min-width: 769px) {
  /* botão de filtros: só mobile */
  .filter-toggle-btn { display: none !important; }
  /* overlay: só mobile */
  .filter-overlay { display: none !important; }
  /* close button dentro da sidebar: só mobile */
  #closeFiltersBtn { display: none !important; }
  /* sidebar volta ao layout normal de grid */
  .filters-sidebar {
    position: static !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
    transition: none !important;
  }
}

/* ===== LOGOS E ÍCONES REAIS ===== */

/* Logo PNG na navbar */
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Logo mono no footer (menor) */
.footer-logo-img {
  height: 28px;
  filter: brightness(1); /* já é branco */
}
/* Remove estilo antigo de link no logo */
.logo, .logo:hover { text-decoration: none; color: inherit; }

/* Ícones da feature strip */
.feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .logo-img { height: 26px; }
  .feature-icon { width: 32px; height: 32px; }
}

/* ===== PÁGINAS INSTITUCIONAIS ===== */
.inst-page { max-width: 900px; margin: 0 auto; padding: 40px 24px 80px; }
.inst-hero { text-align: center; margin-bottom: 48px; }
.inst-hero h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.inst-lead { font-size: 15px; color: #9a9ca6; }

/* steps (como funciona) */
.inst-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.inst-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.inst-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: #ff7a45; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.inst-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.inst-step p  { font-size: 14px; color: #c9cad2; line-height: 1.7; margin: 0; }
.inst-step a  { color: #ff7a45; }

/* cards informativos */
.inst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .inst-grid { grid-template-columns: 1fr; } }
.inst-card {
  background: #0c121c; border-radius: 12px; padding: 24px;
  border: 0.5px solid rgba(255,255,255,0.06);
}
.inst-card--green { border-color: rgba(74,222,128,0.2); background: linear-gradient(135deg,#0a1810,#0c121c); }
.inst-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.inst-card p  { font-size: 13px; color: #c9cad2; line-height: 1.7; margin: 0; }
.inst-never { list-style: none; padding: 0; margin: 0; }
.inst-never li { font-size: 14px; color: #4ade80; padding: 5px 0; border-bottom: 0.5px solid rgba(74,222,128,0.1); }
.inst-never li:last-child { border-bottom: none; }

/* contato */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
@media (max-width: 500px) { .contato-grid { grid-template-columns: 1fr; } }
.contato-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; padding: 24px 16px;
  background: #0c121c; border-radius: 12px;
  border: 0.5px solid rgba(255,255,255,0.06);
  text-decoration: none; color: #f2f2f0;
  transition: border-color 0.15s;
}
.contato-card:hover { border-color: #ff7a45; }
.contato-icon { font-size: 28px; }
.contato-card strong { font-size: 14px; font-weight: 700; }
.contato-card span { font-size: 12px; color: #6f717a; }
.contato-email-box { text-align: center; padding: 32px; background: #0c121c; border-radius: 12px; border: 0.5px solid rgba(255,255,255,0.06); }
.contato-email-box p { font-size: 12px; color: #6f717a; margin-bottom: 12px; }

/* texto legal */
.legal-body { max-width: 720px; margin: 0 auto; }
.legal-body h2 { font-size: 16px; font-weight: 700; margin: 32px 0 10px; color: #f2f2f0; }
.legal-body p  { font-size: 14px; color: #c9cad2; line-height: 1.8; margin-bottom: 12px; }
.legal-body a  { color: #ff7a45; }
.legal-body code { background: #1a2030; padding: 2px 6px; border-radius: 4px; font-size: 13px; }

/* Lightbox de screenshots do jogo - esse CSS nunca existiu, por isso o
   modal abria sem posicao/tamanho nenhum, ficando travado e sem o X
   visivel pra fechar. */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}
.lightbox-img {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  z-index: 1;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-nav.left  { left: 20px; }
.lightbox-nav.right { right: 20px; }
