
:root {
  --accent: #2dd881;
  --accent-dark: #1fb667;
  --accent-soft: rgba(45, 216, 129, 0.14);
  --bg: #06110d;
  --bg-soft: #0c1813;
  --bg-dark: #030806;
  --panel: rgba(10, 20, 16, 0.92);
  --panel-2: rgba(7, 15, 12, 0.94);
  --text: #e8f4ee;
  --muted: #8ea49a;
  --border: rgba(45, 216, 129, 0.14);
  --border-strong: rgba(45, 216, 129, 0.24);
  --max: 1440px;
  --radius: 16px;
  --shadow: 0 18px 48px rgba(0,0,0,.34);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(25, 80, 57, 0.18), transparent 30%),
    linear-gradient(180deg, #07110d 0%, #040907 60%, #020604 100%);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { width: min(var(--max), 92%); margin: 0 auto; position: relative; z-index: 1; }
main, header, footer, .topbar { position: relative; z-index: 1; }

body.home-dark-grid {
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
body.home-dark-grid::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(45, 216, 129, 0.08), transparent 0 34%),
    radial-gradient(circle at 80% 30%, rgba(45, 216, 129, 0.06), transparent 0 28%),
    linear-gradient(rgba(45, 216, 129, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 129, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 100% 34px, 34px 100%;
  opacity: .9;
}
body.home-dark-grid::after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  top: 100vh;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(45, 216, 129, .15), rgba(45, 216, 129, .95), rgba(45, 216, 129, .15), transparent);
  box-shadow: 0 0 18px rgba(45, 216, 129, .5), 0 0 40px rgba(45, 216, 129, .2);
  animation: riseScan 8s linear infinite;
}
@keyframes riseScan {
  0% { transform: translateY(0); opacity: 0; }
  8% { opacity: 1; }
  85% { opacity: .85; }
  100% { transform: translateY(-120vh); opacity: 0; }
}

.topbar {
  background: rgba(2, 8, 6, 0.88);
  color: rgba(232,244,238,.88);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-links { display: flex; flex-wrap: wrap; gap: 14px; opacity: .88; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4,10,8,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.header-row, .header-actions { overflow: visible; }

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 29px;
  letter-spacing: -.04em;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(45, 216, 129, .12);
}
.brand span { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.search-btn, .menu-toggle, .btn, .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 20, 16, 0.9);
  color: var(--text);
  cursor: pointer;
  transition: .22s ease;
  text-decoration: none;
  font-weight: 700;
}
.search-btn:hover, .menu-toggle:hover, .btn:hover, .tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 216, 129, 0.07);
}
.search-btn, .menu-toggle {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.menu-toggle { display: none; }

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.has-dropdown {
  position: relative;
}
.main-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.main-nav .nav-link:hover,
.main-nav .has-dropdown:hover > .nav-link {
  background: rgba(45, 216, 129, 0.08);
  color: var(--accent);
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: rgba(8, 16, 13, 0.98);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
  backdrop-filter: blur(14px);
}
.has-dropdown:hover .dropdown { display: grid; gap: 4px; }
.dropdown a {
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 14px;
}
.dropdown a:hover { background: rgba(45, 216, 129, 0.08); color: var(--accent); }

.hero {
  padding: 34px 0 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 28px;
  align-items: stretch;
}
.hero-card {
  background: linear-gradient(135deg, rgba(8, 18, 14, .98), rgba(7, 13, 10, .96));
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(45, 216, 129, .04);
}
.hero-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45,216,129,.14);
  color: #95f1bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 14px;
}
.hero-desc {
  color: rgba(255,255,255,.74);
  max-width: 56ch;
  margin-bottom: 20px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-image {
  min-height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 17, 13, .12) 40%, rgba(6, 17, 13, .5));
}

.sidebar-stack {
  display: grid;
  gap: 18px;
}
.side-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.side-panel h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.side-panel p { color: var(--muted); margin-bottom: 16px; }
.side-panel .btn,
.cta-row .btn,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #04100b;
}
.btn-primary:hover { background: var(--accent-dark); color: #04100b; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0 12px;
}
.quick-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: var(--panel);
  transition: .2s ease;
  box-shadow: var(--shadow);
}
.quick-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.quick-card strong { display: block; margin-bottom: 8px; font-size: 15px; }
.quick-card span { color: var(--muted); font-size: 14px; }

.ad-slot {
  border: 1px dashed rgba(45, 216, 129, 0.28);
  border-radius: 20px;
  min-height: 180px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(9, 17, 13, 0.96), rgba(6, 11, 9, 0.96));
  box-shadow: var(--shadow);
}
.ad-slot small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  color: rgba(232,244,238,.8);
}
.ad-slot.horizontal { min-height: 130px; }

.section-block { padding: 28px 0 10px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-title {
  font-size: 24px;
  line-height: 1.1;
}
.section-subtitle { color: var(--muted); max-width: 72ch; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.news-column,
.page-card,
.feature-card,
.affiliate-card,
.simple-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.news-column { padding: 18px; }
.column-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(45, 216, 129, 0.45);
  margin-bottom: 16px;
}
.article-main img,
.feature-card img,
.page-card img,
.affiliate-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.article-main h3,
.feature-card h3,
.page-card h3,
.affiliate-card h3,
.simple-card h3 {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.article-main p,
.feature-card p,
.page-card p,
.affiliate-card p,
.simple-card p,
.sub-article p {
  color: var(--muted);
  font-size: 14px;
}
.timestamp {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sub-article {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}
.sub-article h4 {
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.sub-article:hover h4,
.article-main:hover h3,
.feature-card:hover h3,
.page-card:hover h3,
.affiliate-card:hover h3,
.simple-card:hover h3 { color: var(--accent); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card .content,
.page-card .content,
.affiliate-card .content,
.simple-card .content { padding: 18px; }

.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}
.simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.simple-card { padding: 18px; }

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price {
  font-weight: 700;
  font-size: 20px;
  margin: 10px 0;
}
.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45,216,129,.12);
  color: #9df3c3;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.link-arrow { font-weight: 700; color: var(--accent); }

.newsletter-box {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(10,20,16,.98), rgba(7,13,10,.98));
  box-shadow: var(--shadow);
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 18px;
}
.newsletter-form input,
.search-inline input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  background: rgba(5, 12, 9, 0.95);
  color: var(--text);
}
.newsletter-form input:focus,
.search-inline input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(45, 216, 129, 0.08);
}
.search-inline { display: none; padding: 0 0 18px; }
.search-inline.active { display: block; }
.search-inline form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }

.site-footer {
  margin-top: 42px;
  background: #020604;
  color: rgba(255,255,255,.86);
  border-top: 1px solid var(--border);
}
.footer-grid {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr .9fr;
  gap: 26px;
}
.footer-grid h4 { margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid p,
.footer-grid li,
.footer-grid a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-grid li + li { margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

.page-hero {
  padding: 34px 0 6px;
}
.page-hero-box {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(10,20,16,.98), rgba(7,13,10,.98));
  box-shadow: var(--shadow);
}
.page-hero-box p { max-width: 75ch; color: var(--muted); margin-top: 12px; }
.breadcrumbs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; color: var(--muted); font-size: 13px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }
.content-layout {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; padding: 22px 0 0;
}
.content-panel {
  border: 1px solid var(--border); border-radius: 24px; padding: 22px; background: var(--panel); box-shadow: var(--shadow);
}
.content-panel h2 { margin-bottom: 14px; font-size: 22px; }
.content-panel h3 { margin: 20px 0 10px; font-size: 18px; }
.content-panel p, .content-panel li { color: #bed0c7; }
.content-panel ul { list-style: disc; padding-left: 18px; }
.content-panel li + li { margin-top: 8px; }
.contact-form { display: grid; gap: 12px; }
.contact-form textarea { min-height: 170px; resize: vertical; }

@media (max-width: 1200px) {
  .hero-grid, .two-col, .content-layout { grid-template-columns: 1fr; }
  .news-grid, .affiliate-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .quick-links { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header {
    z-index: 30;
    isolation: isolate;
  }
  .header-row {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
  }
  .brand,
  .header-actions,
  .menu-toggle,
  .search-btn {
    position: relative;
    z-index: 31;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    position: fixed;
    top: var(--mobile-menu-top, 78px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100dvh - var(--mobile-menu-top, 78px));
    max-height: calc(100dvh - var(--mobile-menu-top, 78px));
    background: rgba(4, 10, 8, 0.985);
    border-top: 1px solid var(--border);
    padding: 12px 4% 20px;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 999999;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav > ul {
    display: grid;
    gap: 8px;
    padding-bottom: 56px;
  }
  .main-nav .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(8, 18, 14, 0.96);
    font-size: 15px;
  }
  .dropdown,
  .main-nav .has-dropdown .dropdown {
    position: static;
    display: grid;
    min-width: 100%;
    width: 100%;
    box-shadow: none;
    border-radius: 16px;
    margin-top: 8px;
    padding: 10px;
    background: rgba(6, 14, 11, 0.95);
  }
  .has-dropdown:hover .dropdown {
    display: grid;
  }
  .hero-card {
    grid-template-columns: 1fr;
  }
  .hero-image {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .news-grid, .affiliate-grid, .feature-grid, .simple-grid, .quick-links, .footer-grid { grid-template-columns: 1fr; }
  .header-row { min-height: 72px; }
  .brand { font-size: 24px; }
  .hero-content { padding: 24px; }
  .newsletter-form, .search-inline form { grid-template-columns: 1fr; }
}


.source-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.source-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  background: var(--panel);
  transition: .2s ease;
  box-shadow: var(--shadow);
}
.source-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.source-card h3 { font-size: 18px; line-height: 1.15; margin-bottom: 10px; }
.source-card p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.source-card ul { list-style: disc; padding-left: 18px; color: #bed0c7; }
.source-card li + li { margin-top: 7px; }
.note-box,
.info-note,
.support-card,
.pix-box {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(10,20,16,.98), rgba(7,13,10,.98));
  box-shadow: var(--shadow);
}
.note-box p,
.info-note p,
.support-card p,
.pix-box p,
.footer-contact,
.contact-list li { color: var(--muted); }
.info-note { margin-top: 18px; }
.article-list { display: grid; gap: 14px; margin-top: 18px; }
.article-list article {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: var(--panel);
}
.article-list h3 { font-size: 17px; margin-bottom: 8px; }
.article-list p { color: var(--muted); font-size: 14px; }
.contact-list { list-style: disc; padding-left: 18px !important; }
.contact-list li + li { margin-top: 8px; }
.pix-box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
}
.pix-box img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
}
.footer-contact { margin-top: 12px; font-size: 14px; }
.footer-bottom-links { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.72); }
.footer-bottom-links a:hover { color: #fff; }
@media (max-width: 1200px) {
  .source-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .pix-box { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .source-grid { grid-template-columns: 1fr; }
}


.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feed-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feed-panel-header {
  padding: 18px 18px 8px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.feed-panel-header h3 {
  font-size: 18px;
  line-height: 1.15;
}
.feed-panel-header p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}
.feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.feed-list {
  display: grid;
  gap: 0;
}
.feed-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
}
.feed-item:hover { background: rgba(45, 216, 129, 0.04); }
.feed-item a { font-weight: 700; line-height: 1.25; }
.feed-item p { color: var(--muted); font-size: 14px; }
.feed-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.feed-item-source {
  color: var(--accent);
  font-weight: 700;
}
.feed-panel-footer {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.feed-status {
  color: var(--muted);
  font-size: 12px;
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.integration-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(10,20,16,.98), rgba(7,13,10,.98));
  box-shadow: var(--shadow);
}
.integration-card h3 { font-size: 18px; margin-bottom: 10px; }
.integration-card p, .integration-card li { color: var(--muted); font-size: 14px; }
.integration-card ul { list-style: disc; padding-left: 18px; }
.code-inline {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(45,216,129,.12);
  color: #9df3c3;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .feed-grid { grid-template-columns: 1fr; }
}


/* ===== Live homepage / API-driven sections ===== */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tag-live {
  min-width: 180px;
  justify-content: center;
}

.live-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr);
  gap: 22px;
  align-items: stretch;
}

.live-hero-card,
.live-mini-card,
.live-story-card,
.live-category-card {
  background: linear-gradient(180deg, rgba(12, 24, 19, 0.96) 0%, rgba(6, 12, 10, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.live-hero-card {
  overflow: hidden;
  display: grid;
  min-height: 520px;
}

.live-card-media,
.live-story-media {
  display: block;
}

.live-card-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.live-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.live-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(45, 216, 129, .12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-card-body h3 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.live-card-body p {
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}

.live-meta-row,
.feed-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(232, 244, 238, .72);
}

.live-side-stack {
  display: grid;
  gap: 18px;
}

.live-mini-card,
.live-category-card {
  padding: 18px;
}

.live-mini-card h3,
.live-category-card h3,
.live-story-body h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 8px 0 10px;
}

.live-mini-card p,
.live-category-card p,
.live-story-body p {
  color: var(--muted);
  font-size: 14px;
}

.live-latest-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.live-story-card {
  grid-column: span 4;
  overflow: hidden;
}

.live-story-card.is-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1fr);
}

.live-story-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.live-story-card.is-wide .live-story-media img {
  height: 100%;
  min-height: 100%;
}

.live-story-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  border: 1px solid var(--border);
  background: rgba(10, 20, 16, 0.9);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: .2s ease;
}

.category-chip.is-active,
.category-chip:hover {
  background: var(--accent);
  color: #031009;
  border-color: transparent;
}

.live-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.badge-soft {
  background: rgba(255,255,255,.06);
}

.skeleton-card {
  min-height: 120px;
}

.skeleton-block {
  width: 100%;
  height: 100%;
  min-height: 110px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.1), rgba(255,255,255,.04));
  background-size: 240% 100%;
  animation: tgShimmer 1.4s linear infinite;
}

@keyframes tgShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 1180px) {
  .live-hero-grid,
  .live-story-card.is-wide {
    grid-template-columns: 1fr;
  }

  .live-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-story-card,
  .live-story-card.is-wide {
    grid-column: span 1;
  }

  .live-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .live-latest-grid,
  .live-category-grid {
    grid-template-columns: 1fr;
  }

  .live-card-media img {
    height: 220px;
  }

  .live-card-body,
  .live-story-body,
  .live-mini-card,
  .live-category-card {
    padding: 16px;
  }
}


.unified-news-shell {
  padding-top: 28px;
}

.unified-news-shell .section-head {
  margin-bottom: 20px;
}

.news-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.news-card-unified {
  background: linear-gradient(180deg, rgba(9, 21, 16, 0.96), rgba(3, 11, 9, 0.98));
  border: 1px solid rgba(31, 186, 111, 0.16);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.news-card-media-unified {
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 270px;
  max-height: 270px;
  background: #071510;
}

.news-card-media-unified img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body-unified {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-card-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 0.94rem;
}

.news-card-body-unified h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.16;
}

.news-card-body-unified h3 a {
  color: #f6f8f7;
  text-decoration: none;
}

.news-card-body-unified p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.news-card-meta-unified {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  margin-top: auto;
}

.page-news-grid {
  margin-top: 8px;
}


.feed-block-collapsing {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.feed-panel[hidden],
.section-block[hidden] {
  display: none !important;
}

.empty-feed-state {
  margin: 0;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
}

.section-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: -4px 0 18px;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 1080px) {
  .news-wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .news-wall-grid {
    grid-template-columns: 1fr;
  }
}


/* === TechNetGame vNext overrides === */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(45, 216, 129, 0.18);
  background: rgba(45, 216, 129, 0.04);
  color: #dff5e8;
  text-decoration: none;
  font-weight: 700;
}

.news-wall-grid,
.page-news-grid,
.feed-list.news-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 18px;
  align-items: start;
}

.news-card-unified {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 20, 16, 0.88);
  border: 1px solid rgba(45, 216, 129, 0.08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.news-card-unified:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 216, 129, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
}

.news-card-media-unified {
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: #08120e;
}

.news-card-media-unified img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body-unified {
  padding: 14px 14px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card-chip-row { margin-bottom: 0; }

.news-card-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: rgba(45, 216, 129, 0.09);
  color: #8cf0b8;
}

.news-card-body-unified h3 {
  font-size: 17px;
  line-height: 1.28;
  margin: 0;
  font-weight: 800;
}

.news-card-body-unified p {
  font-size: 14px;
  line-height: 1.55;
  color: #b2c6bc;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta-unified {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #93a89d;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: auto;
}

.featured-smart-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(8, 18, 14, 0.92);
  border: 1px solid rgba(45, 216, 129, 0.10);
  overflow: hidden;
}

.featured-smart-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.featured-smart-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-smart-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 216, 129, 0.10);
  color: #91f0bc;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.featured-smart-body h3 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.featured-smart-body h3 a {
  color: #eef8f2;
  text-decoration: none;
}

.featured-smart-body p {
  font-size: 17px;
  line-height: 1.65;
  color: #b8ccc1;
  margin-bottom: 16px;
}

.featured-smart-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  text-transform: uppercase;
  color: #93a89d;
}

.featured-smart-status { padding: 20px; color: #9fb4aa; }

.affiliate-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.affiliate-strip .affiliate-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  padding: 0;
  border-radius: 20px;
  text-decoration: none;
  color: #eef8f2;
  background: linear-gradient(180deg, rgba(10, 20, 16, 0.96), rgba(8, 15, 12, 0.98));
  border: 1px solid rgba(45, 216, 129, 0.12);
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.affiliate-strip .affiliate-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 216, 129, 0.42);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.affiliate-strip .affiliate-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.affiliate-strip .affiliate-card .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.affiliate-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #03140d;
  background: linear-gradient(90deg, #2dd881, #8af0b4);
}

.affiliate-strip .affiliate-card h3 {
  margin: 0;
  font-size: 22px;
}

.affiliate-strip .affiliate-card p {
  margin: 0;
  color: #a9bbb1;
}

.affiliate-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #dff9ea;
  font-size: 13px;
}

.affiliate-points li {
  position: relative;
  padding-left: 16px;
}

.affiliate-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2dd881;
}

.affiliate-disclaimer {
  margin: 14px 4px 0;
  color: #8ea39a;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .feed-panel .news-wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .featured-smart-card { grid-template-columns: 1fr; }
  .featured-smart-body h3 { font-size: 26px; }
  .featured-smart-body p { font-size: 15px; }
}

@media (max-width: 900px) {
  .affiliate-strip { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .news-wall-grid,
  .page-news-grid,
  .feed-list.news-wall-grid,
  .feed-panel .news-wall-grid { grid-template-columns: 1fr; }
}
/* =========================
   V17.1 MENU OVERLAY FINAL
========================= */

.site-header,
header {
  position: relative;
  z-index: 10;
}

body.nav-open .site-header {
  z-index: 20;
}

body.nav-open .container,
body.menu-open .container,
body.nav-open main,
body.nav-open footer,
body.nav-open .topbar {
  z-index: 0 !important;
}

/* fix definitivo para o menu real do projeto */
@media (max-width: 860px) {
  .main-nav {
    position: fixed !important;
    top: var(--mobile-menu-top, 78px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100dvh - var(--mobile-menu-top, 78px)) !important;
    max-height: calc(100dvh - var(--mobile-menu-top, 78px)) !important;
    z-index: 999999 !important;
    isolation: isolate;
    will-change: transform, opacity;
  }
}

/* compatibilidade com nomes antigos de menu */
.mobile-menu,
.mobile-nav,
.nav-mobile,
.menu-mobile,
.menu-panel,
.mobile-drawer,
.mobile-menu-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  z-index: 999999 !important;
  transform: none !important;
  will-change: auto !important;
  isolation: isolate;
}

body.menu-open,
body.nav-open {
  overflow: hidden;
}

/* ===== Games hub rebuild ===== */
.games-page .games-hub-shell .section-block,
.games-page .games-hub-shell .section-head,
.games-page .games-hub-shell .games-duo-grid,
.games-page .games-hub-shell .game-mini-grid,
.games-page .games-hub-shell .games-showcase-grid,
.games-page .games-hub-shell .creators-grid,
.games-page .games-hub-shell .video-day-grid,
.games-page .games-hub-shell .feature-links,
.games-page .games-hub-shell .creator-links,
.games-page .games-hub-shell .inline-links {
  min-width: 0;
}
.games-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.games-duo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
  align-items: start;
}
.game-spotlight-card,
.creator-rank-card,
.video-day-card,
.creator-feature-card,
.year-legacy-card {
  background: linear-gradient(180deg, rgba(8,18,14,.96), rgba(6,12,10,.98));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 0;
}
.game-spotlight-media,
.creator-feature-media,
.year-legacy-media {
  aspect-ratio: 16 / 9;
  background: rgba(9,16,13,.95);
}
.game-spotlight-media img,
.creator-feature-media img,
.year-legacy-media img,
.game-mini-card img,
.game-cover-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.game-spotlight-body,
.creator-feature-body,
.year-legacy-body,
.video-day-body {
  padding: 18px;
}
.game-meta-row,
.creator-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-strong);
  background: rgba(45,216,129,.08);
}
.game-spotlight-card h3,
.creator-rank-card h3,
.creator-feature-card h3,
.year-legacy-card h3,
.video-day-card h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.game-spotlight-card p,
.creator-rank-card p,
.creator-feature-card p,
.year-legacy-card p,
.video-day-card p {
  color: var(--muted);
}
.feature-links,
.creator-links,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.text-link-strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent);
}
.text-link-strong:hover { color: #fff; }
.game-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.game-mini-card {
  background: rgba(8,16,13,.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.game-mini-card img {
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
}
.game-mini-card .copy {
  padding: 16px;
  min-width: 0;
}
.game-mini-card h4 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.game-mini-card p {
  color: var(--muted);
  font-size: 14px;
}
.creators-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.creator-rank-card {
  padding: 18px;
  display: grid;
  gap: 14px;
}
.creator-rank-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.creator-avatar {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
  background: rgba(5,12,9,.98);
}
.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rank-badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,216,129,.14);
  color: var(--accent);
  font-weight: 900;
}
.creator-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.creator-stats .stat {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}
.creator-stats strong { display: block; font-size: 18px; }
.creator-stats span { color: var(--muted); font-size: 12px; }
.video-day-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: start;
}
.video-embed-shell {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.video-embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.ticker-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.ticker-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}
.ticker-item strong { color: #fff; }
.year-legacy-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.year-legacy-list li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--muted);
}
.year-legacy-list li strong { color: #fff; }
.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.anchor-pills a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(45,216,129,.08);
  border: 1px solid var(--border-strong);
  font-weight: 700;
}
@media (max-width: 1200px) {
  .games-showcase-grid,
  .creators-grid,
  .game-mini-grid,
  .games-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .games-page .games-hub-shell .games-duo-grid,
  .games-page .games-hub-shell .game-mini-grid,
  .games-page .games-hub-shell .games-showcase-grid,
  .games-page .games-hub-shell .creators-grid,
  .games-page .games-hub-shell .video-day-grid,
  .games-page .games-hub-shell .games-gallery-grid {
    grid-template-columns: 1fr;
  }

  .games-page .games-hub-shell .section-block {
    overflow: hidden;
  }

  .games-page .games-hub-shell .game-spotlight-card,
  .games-page .games-hub-shell .game-mini-card,
  .games-page .games-hub-shell .year-legacy-card,
  .games-page .games-hub-shell .creator-rank-card,
  .games-page .games-hub-shell .video-day-card,
  .games-page .games-hub-shell .creator-feature-card {
    width: 100%;
    max-width: 100%;
  }

  .games-page .games-hub-shell .game-spotlight-card h3,
  .games-page .games-hub-shell .year-legacy-card h3,
  .games-page .games-hub-shell .video-day-card h3 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .games-page .games-hub-shell .game-mini-card h4,
  .games-page .games-hub-shell .creator-rank-card h3 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .games-page .games-hub-shell .game-spotlight-card p,
  .games-page .games-hub-shell .game-mini-card p,
  .games-page .games-hub-shell .year-legacy-card p,
  .games-page .games-hub-shell .year-legacy-list li,
  .games-page .games-hub-shell .ticker-item,
  .games-page .games-hub-shell .creator-rank-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .games-page .games-hub-shell .feature-links,
  .games-page .games-hub-shell .creator-links,
  .games-page .games-hub-shell .inline-links {
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .games-page .games-hub-shell .page-hero-box {
    padding: 22px;
  }

  .games-page .games-hub-shell .game-spotlight-body,
  .games-page .games-hub-shell .creator-feature-body,
  .games-page .games-hub-shell .year-legacy-body,
  .games-page .games-hub-shell .video-day-body,
  .games-page .games-hub-shell .game-mini-card .copy,
  .games-page .games-hub-shell .creator-rank-card {
    padding: 16px;
  }
}

.games-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.game-cover-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(7, 16, 13, 0.94);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.game-cover-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.game-cover-card .copy {
  padding: 16px;
}
.game-cover-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.game-cover-card p {
  color: var(--muted);
}


/* ===== V17.3 production media + creator avatars ===== */
.creator-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.creator-rank-top {
  display: none;
}

.creator-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 56px;
  border: 2px solid rgba(0, 255, 150, 0.3);
  box-shadow: 0 0 10px rgba(0, 255, 150, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.creator-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(45, 216, 129, 0.12), 0 10px 20px rgba(0, 0, 0, 0.24);
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.creator-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,255,150,0.1);
  color: #00ff9c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.game-spotlight-card,
.game-mini-card,
.year-legacy-card,
.game-cover-card,
.creator-rank-card,
.creator-feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-spotlight-card:hover,
.game-mini-card:hover,
.year-legacy-card:hover,
.game-cover-card:hover,
.creator-rank-card:hover,
.creator-feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 255, 150, 0.15), 0 0 20px rgba(0, 255, 150, 0.08);
  border-color: rgba(45, 216, 129, 0.28);
}

.game-spotlight-media,
.year-legacy-media,
.game-cover-card,
.game-mini-card {
  position: relative;
  overflow: hidden;
}

.game-spotlight-media::after,
.year-legacy-media::after,
.game-mini-card::before,
.game-cover-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 62%);
  pointer-events: none;
}

.game-spotlight-media img,
.creator-feature-media img,
.year-legacy-media img,
.game-mini-card img,
.game-cover-card img,
.game-card img,
.game-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.game-spotlight-card:hover .game-spotlight-media img,
.game-mini-card:hover img,
.year-legacy-card:hover .year-legacy-media img,
.game-cover-card:hover img {
  transform: scale(1.05);
}

.game-mini-card .copy,
.game-cover-card .copy,
.year-legacy-body,
.game-spotlight-body {
  position: relative;
  z-index: 1;
}


/* ===== V18 premium hydration + netflix polish ===== */
.game-cover,
.creator-avatar img {
  background:
    linear-gradient(110deg, rgba(255,255,255,0.04) 8%, rgba(255,255,255,0.12) 18%, rgba(255,255,255,0.04) 33%),
    linear-gradient(180deg, rgba(8,18,14,.96), rgba(6,12,10,.98));
  background-size: 200% 100%, 100% 100%;
}

.game-cover.is-hydrating,
.creator-avatar img.is-hydrating {
  animation: tnShimmer 1.4s linear infinite;
  filter: saturate(.88) contrast(.96);
}

.game-cover.is-ready,
.creator-avatar img.is-ready {
  animation: none;
}

@keyframes tnShimmer {
  0% { background-position: 200% 0, 0 0; }
  100% { background-position: -200% 0, 0 0; }
}

.game-spotlight-card,
.game-mini-card,
.year-legacy-card,
.game-cover-card,
.creator-rank-card,
.video-day-card,
.creator-feature-card {
  backdrop-filter: blur(8px);
}

.game-spotlight-card:hover,
.game-mini-card:hover,
.year-legacy-card:hover,
.game-cover-card:hover,
.creator-rank-card:hover,
.video-day-card:hover,
.creator-feature-card:hover {
  transform: translateY(-7px) scale(1.012);
}

.game-spotlight-media,
.year-legacy-media,
.game-mini-card,
.game-cover-card {
  isolation: isolate;
}

.game-spotlight-media::before,
.year-legacy-media::before,
.game-mini-card::after,
.game-cover-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(45,216,129,.18), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

.creator-rank-card {
  position: relative;
}

.creator-rank-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(45,216,129,.24), rgba(45,216,129,0), rgba(45,216,129,.12));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.creator-stats .stat {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.creator-stats strong {
  line-height: 1.1;
}

.creator-rank-card h3,
.game-mini-card h4,
.game-cover-card h3 {
  text-wrap: balance;
}

.game-spotlight-card p,
.game-mini-card p,
.creator-rank-card p,
.year-legacy-card p {
  text-wrap: pretty;
}

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


/* ===== V18.1 especial 26 jogos 2026 ===== */
.games-2026-feature {
  position: relative;
}

.feature-head {
  margin-bottom: 1.4rem;
}

.feature-2026-hero {
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(32, 227, 145, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7,22,18,.96), rgba(5,12,10,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
  margin-bottom: 1.6rem;
}

.feature-hero-kicker {
  display: inline-flex;
  margin-bottom: .75rem;
  color: #8ebdaa;
  font-size: .92rem;
}

.feature-2026-hero h3 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  margin: 0 0 .8rem;
  text-wrap: balance;
}

.feature-2026-hero p,
.feature-2026-sidecard li {
  color: #b8cec4;
  line-height: 1.68;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}

.feature-badges span {
  padding: .65rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 227, 145, .18);
  background: rgba(8,25,20,.82);
  color: #dcfff1;
  font-weight: 700;
  font-size: .9rem;
}

.feature-2026-sidecard {
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10,27,22,.92), rgba(5,14,12,.96));
  border: 1px solid rgba(32, 227, 145, .14);
}

.feature-2026-sidecard h4 {
  margin: 0 0 .8rem;
  font-size: 1.2rem;
}

.feature-2026-sidecard ul {
  margin: 0 0 1rem 1rem;
  padding: 0;
}

.games-2026-list {
  display: grid;
  gap: 1.5rem;
}

.games-2026-group {
  display: grid;
  gap: 1rem;
}

.games-2026-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.games-2026-group-head h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.games-2026-group-head p {
  margin: .35rem 0 0;
  color: #a8c4b8;
}

.games-2026-count {
  color: #20e391;
  font-weight: 800;
  white-space: nowrap;
}

.games-2026-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.game-2026-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(32, 227, 145, 0.14);
  background: linear-gradient(180deg, rgba(6,17,14,.98), rgba(3,10,8,.99));
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.game-2026-copy {
  display: grid;
  gap: .85rem;
}

.game-2026-topline {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.game-2026-rank, .game-2026-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(8, 25, 20, 0.84);
  border: 1px solid rgba(32, 227, 145, 0.18);
  font-size: .82rem;
  font-weight: 700;
}

.game-2026-card h4 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.08;
  text-wrap: balance;
}

.game-2026-summary {
  margin: 0;
  color: #c0d5cb;
  line-height: 1.7;
}

.game-2026-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.game-2026-meta div {
  padding: .85rem .95rem;
  border-radius: 18px;
  background: rgba(10, 26, 22, 0.72);
  border: 1px solid rgba(32, 227, 145, 0.1);
}

.game-2026-meta span {
  display: block;
  color: #84b3a3;
  font-size: .8rem;
  margin-bottom: .25rem;
}

.game-2026-meta strong {
  color: #ecfff7;
  line-height: 1.35;
}

.game-2026-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.game-2026-trailer {
  display: grid;
  gap: .65rem;
}

.game-2026-trailer-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
  background: #08120f;
  border: 1px solid rgba(32, 227, 145, 0.12);
}

.game-2026-trailer-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-2026-trailer small {
  color: #8ebdaa;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .feature-2026-hero,
  .game-2026-card {
    grid-template-columns: 1fr;
  }
}

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

  .games-2026-group-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .feature-2026-hero {
    padding: 1rem;
  }

  .game-2026-card {
    padding: .9rem;
  }

  .game-2026-card h4 {
    font-size: 1.35rem;
  }

  .game-2026-meta {
    grid-template-columns: 1fr;
  }

  .game-2026-trailer-frame {
    min-height: 210px;
  }
}


/* ===== V22 final AAA jogos 2026 ===== */
.games-2026-list {
  display: grid;
  gap: 1.75rem;
}

.portal-group {
  gap: 1.2rem;
}

.portal-group-head {
  align-items: center;
}

.games-2026-portal-list {
  display: grid;
  gap: 1.15rem;
}

.game-2026-portal-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .9fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(32, 227, 145, 0.14);
  background: linear-gradient(180deg, rgba(6,17,14,.98), rgba(3,10,8,.99));
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

.game-2026-portal-main {
  display: grid;
  grid-template-columns: minmax(320px, 40%) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  min-width: 0;
}

.game-2026-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #091512;
  border: 1px solid rgba(32, 227, 145, .12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.game-2026-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.game-2026-cover-wrap:hover .game-2026-cover {
  transform: scale(1.03);
}

.game-2026-cover-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: .6rem;
  padding: .95rem;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.72));
}

.game-2026-portal-copy {
  display: grid;
  gap: .95rem;
  min-width: 0;
}

.game-2026-heading-row h4 {
  margin: 0 0 .55rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.05;
  text-wrap: balance;
}

.game-2026-summary {
  margin: 0;
  color: #c0d5cb;
  line-height: 1.72;
}

.game-2026-trailer-shell {
  display: grid;
  gap: .75rem;
}

.portal-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(32, 227, 145, .12);
  background: #08120f;
}

.game-2026-trailer-frame iframe,
.portal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-2026-trailer-launcher,
.game-2026-trailer-fallback {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1512;
  cursor: pointer;
  text-align: left;
}

.game-2026-trailer-launcher img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  filter: saturate(1.04);
}

.game-2026-trailer-launcher::after,
.game-2026-trailer-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.46));
}

.game-2026-trailer-play,
.game-2026-trailer-fallback-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.game-2026-trailer-play {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: rgba(8,25,20,.9);
  border: 1px solid rgba(32,227,145,.22);
  color: #f3fff8;
  font-weight: 800;
}

.game-2026-trailer-fallback {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(32, 227, 145, .12);
}

.game-2026-trailer-fallback-copy {
  display: grid;
  gap: .35rem;
}

.game-2026-trailer-fallback-copy strong {
  font-size: 1.1rem;
  color: #f3fff8;
}

.game-2026-trailer-fallback-copy p {
  margin: 0;
  color: #b8cec4;
  line-height: 1.5;
}

.game-2026-news-panel {
  display: grid;
  align-content: start;
  gap: .9rem;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7,22,18,.92), rgba(4,12,10,.96));
  border: 1px solid rgba(32, 227, 145, .12);
}

.game-2026-news-head {
  display: grid;
  gap: .3rem;
}

.game-2026-news-kicker {
  display: inline-flex;
  width: fit-content;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(8,25,20,.84);
  border: 1px solid rgba(32, 227, 145, 0.18);
  color: #7ef4b8;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.game-2026-news-head strong {
  font-size: 1.15rem;
}

.game-2026-news-list {
  display: grid;
  gap: .8rem;
}

.game-news-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: .75rem;
  padding: .75rem;
  border-radius: 18px;
  background: rgba(9, 25, 21, 0.86);
  border: 1px solid rgba(32, 227, 145, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.game-news-item:hover {
  transform: translateY(-1px);
  border-color: rgba(32, 227, 145, 0.22);
  background: rgba(10, 31, 25, 0.94);
}

.game-news-item img {
  width: 108px;
  height: 84px;
  object-fit: cover;
  border-radius: 14px;
  background: #08120f;
}

.game-news-copy {
  display: grid;
  gap: .35rem;
}

.game-news-copy span {
  color: #84b3a3;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.game-news-copy strong {
  color: #f3fff8;
  line-height: 1.28;
  font-size: .96rem;
}

.game-news-copy p {
  margin: 0;
  color: #a8c4b8;
  line-height: 1.45;
  font-size: .88rem;
}

.game-news-empty {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(9, 25, 21, 0.86);
  border: 1px solid rgba(32, 227, 145, 0.08);
}

.game-news-empty strong {
  display: block;
  margin-bottom: .35rem;
}

.game-news-empty p {
  margin: 0;
  color: #a8c4b8;
  line-height: 1.55;
}

.shimmer-block,
.shimmer-line {
  position: relative;
  overflow: hidden;
  background: rgba(9,25,21,.9);
}

.shimmer-block::after,
.shimmer-line::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  animation: portalShimmer 1.4s infinite;
}

.shimmer-block {
  border-radius: 20px;
  min-height: 220px;
}

.shimmer-line {
  border-radius: 14px;
  min-height: 74px;
}

.game-news-skeleton + .game-news-skeleton {
  margin-top: .65rem;
}

@keyframes portalShimmer {
  100% { transform: translateX(100%); }
}

@media (max-width: 1200px) {
  .game-2026-portal-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .game-2026-portal-main {
    grid-template-columns: 1fr;
  }

  .game-2026-cover-wrap {
    min-height: 220px;
    border-radius: 20px;
  }
}

@media (max-width: 760px) {
  .game-2026-cover-wrap {
    min-height: 190px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .game-2026-portal-card {
    padding: .85rem;
    border-radius: 22px;
  }

  .game-news-item {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .game-news-item img {
    width: 88px;
    height: 72px;
  }

  .game-2026-trailer-play {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    font-size: .92rem;
  }
}


/* V26 SEO + Performance */
.games-page .section-block {
  content-visibility: auto;
  contain-intrinsic-size: 1px 960px;
}

.games-page .games-2026-portal-card,
.games-page .game-mini-card,
.games-page .year-legacy-card,
.games-page .creator-rank-card {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.games-page img {
  height: auto;
}


/* V27 games news-only cards */
.game-2026-media-link {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.game-2026-media-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .6rem .9rem;
  border-radius: 999px;
  background: rgba(8, 25, 20, .88);
  border: 1px solid rgba(32, 227, 145, .18);
  color: #f3fff8;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
}

.game-2026-news-preview {
  min-height: 160px;
}

.game-2026-media-link:hover .game-2026-cover {
  transform: scale(1.03);
}



/* V28 home + hardware spotlights */

.home-spotlight-wrap,
.hardware-buyers-guide {
  margin-top: 2rem;
}

.spotlight-preview-grid,
.hardware-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.spotlight-preview-grid-hardware {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spotlight-preview-card,
.hardware-spotlight-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(32, 227, 145, .14);
  background: linear-gradient(180deg, rgba(7, 19, 15, .94), rgba(10, 27, 21, .98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
}

.spotlight-preview-card img,
.hardware-spotlight-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.spotlight-preview-card img {
  aspect-ratio: 16 / 9;
}

.hardware-spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
}

.hardware-spotlight-card img {
  height: 100%;
  min-height: 100%;
}

.spotlight-preview-body,
.hardware-spotlight-body {
  padding: 1rem 1rem 1.1rem;
}

.spotlight-preview-body h3,
.hardware-spotlight-body h3 {
  margin: .15rem 0 .55rem;
  font-size: 1.22rem;
}

.spotlight-preview-body p,
.hardware-spotlight-body p {
  margin: 0;
  color: rgba(232, 245, 238, .8);
  line-height: 1.65;
}

.spotlight-chip,
.hardware-chip {
  display: inline-flex;
  align-items: center;
  padding: .44rem .78rem;
  border-radius: 999px;
  background: rgba(32, 227, 145, .12);
  border: 1px solid rgba(32, 227, 145, .18);
  color: #bbf8d7;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.spotlight-cta-row,
.hardware-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.hardware-mini-list {
  margin: .9rem 0 0;
  padding-left: 1rem;
  color: rgba(232, 245, 238, .82);
}

.hardware-mini-list li + li {
  margin-top: .45rem;
}

@media (max-width: 1100px) {
  .hardware-spotlight-card {
    grid-template-columns: 1fr;
  }

  .hardware-spotlight-card img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  .spotlight-preview-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-preview-grid-hardware,
  .hardware-spotlight-grid {
    grid-template-columns: 1fr;
  }
}


.hardware-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.hardware-tier-card {
  background: linear-gradient(180deg, rgba(10, 30, 25, 0.96), rgba(8, 20, 18, 0.96));
  border: 1px solid rgba(32, 227, 145, 0.16);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.hardware-tier-card h3 {
  margin: 10px 0 10px;
}

.hardware-tier-card p {
  margin: 0;
  color: rgba(232, 244, 238, 0.82);
}


.hardware-spotlight-card > img,
.spotlight-preview-card > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Fix hardware cards layout */
.hardware-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hardware-card--compact {
  overflow: hidden;
  border-radius: 28px;
}

.hardware-card--compact img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hardware-card-content {
  padding: 22px 20px 24px;
}

.hardware-card-content h3 {
  margin: 12px 0 12px;
}

.hardware-card-content p {
  margin: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(12, 140, 90, 0.22);
  border: 1px solid rgba(0, 255, 170, 0.12);
  font-weight: 700;
}

/* Fix malformed home hardware CTA */
.home-hardware-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-hardware {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.btn-hardware::before,
.btn-hardware::after {
  content: none !important;
}

@media (max-width: 900px) {
  .hardware-preview {
    grid-template-columns: 1fr;
  }
}


a[href="/hardware.html"]:empty {
  display: none !important;
}



/* ===== Fix final: hardware guide cards ===== */
.hardware-spotlight-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.hardware-spotlight-card {
  display: block !important;
  overflow: hidden;
  border-radius: 28px;
}

.hardware-spotlight-card img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  display: block;
}

.hardware-spotlight-body {
  padding: 20px 20px 22px !important;
}

.hardware-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hardware-actions-row .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.home-spotlight-wrap .spotlight-cta-row .btn,
.home-hardware-actions .btn,
.home-hardware-actions .btn-games,
a.btn.btn-primary,
a.btn.btn-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .hardware-spotlight-grid {
    grid-template-columns: 1fr !important;
  }
}


.page-shell { min-height: 100vh; }
.article-hero--compact { padding: 72px 0 24px; }
.article-section { padding: 12px 0 72px; }
.container.article-content { max-width: 980px; }
.article-content h2 { margin-top: 34px; margin-bottom: 14px; }
.article-content p, .article-content li { line-height: 1.75; }
.seo-links-list { margin: 12px 0 0; }
.seo-links-list a { text-decoration: none; }


/* V24 REAL FIX — destaque das comparações essenciais */
.seo-content--featured {
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 0 20px;
}
.seo-panel {
  margin: 0 0 18px;
  padding: 20px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(5,22,19,.94), rgba(3,14,12,.98));
  border: 1px solid rgba(39, 255, 191, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}
.seo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}
.seo-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(4,19,16,.96), rgba(2,11,10,.98));
  border: 1px solid rgba(39, 255, 191, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}
.seo-card--primary {
  border-color: rgba(39, 255, 191, 0.22);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}
.seo-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(39, 255, 191, 0.25);
  color: var(--accent, #47f5c0);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.seo-content--featured h2,
.seo-content--featured h3 {
  margin: 0 0 12px;
}
.seo-content--featured p {
  margin: 0;
  line-height: 1.75;
}
.seo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 8px 0 18px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(49, 255, 198, 0.18), rgba(39, 255, 191, 0.08));
  border: 1px solid rgba(39, 255, 191, 0.24);
  color: #ecfff8;
  text-decoration: none;
  font-weight: 700;
}
.seo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.seo-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 33, 28, 0.95);
  border: 1px solid rgba(39, 255, 191, 0.16);
  color: #f4fffb;
  text-decoration: none;
  font-weight: 600;
}
.seo-pill:hover,
.seo-cta:hover,
.seo-link-stack a:hover {
  border-color: rgba(39, 255, 191, 0.34);
  box-shadow: 0 0 0 1px rgba(39, 255, 191, 0.08), 0 10px 24px rgba(2, 12, 10, 0.28);
}
.seo-link-stack {
  display: grid;
  gap: 12px;
}
.seo-link-stack a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 33, 28, 0.95);
  border: 1px solid rgba(39, 255, 191, 0.14);
  color: #f4fffb;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 980px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }
}
