/*
Theme Name: TechBattle
Theme URI: https://techbattle.com.br
Author: TechBattle
Author URI: https://techbattle.com.br
Description: Arena de Batalhas Tech — visual anime/dark com cards estilo Pokémon
Version: 1.5
License: GNU General Public License v2 or later
Text Domain: techbattle
*/

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&family=Orbitron:wght@700;900&display=swap');

:root {
  --gold: #FFD700;
  --gold2: #FFA500;
  --gold-dark: #8B6914;
  --red: #FF3333;
  --red-dark: #8B0000;
  --blue: #4FC3F7;
  --blue-dark: #0D47A1;
  --purple: #CE93D8;
  --green: #69F0AE;
  --bg: #0A0A1A;
  --bg2: #0F0F28;
  --card: #12123A;
  --card2: #1A1A4E;
  --border: rgba(255,215,0,0.25);
  --white: #FFFFFF;
  --cream: #FFF9E6;
  --gray: #8888BB;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(255,215,0,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 55%, rgba(79,195,247,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 85%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 75%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 90%, rgba(255,215,0,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 60%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: starTwinkle 4s ease-in-out infinite alternate;
}
@keyframes starTwinkle { from{opacity:0.7} to{opacity:1} }

/* TICKER */
.ticker {
  background: linear-gradient(90deg, var(--red-dark), var(--red), #FF6B35, var(--red), var(--red-dark));
  border-bottom: 3px solid var(--gold);
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 100;
  box-shadow: 0 3px 15px rgba(255,51,51,0.4);
}
.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 1px;
}
@keyframes ticker { from{transform:translateX(100vw)} to{transform:translateX(-100%)} }

/* HEADER — MENU CORRIGIDO */
header,
#masthead,
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,5,20,0.97);
  border-bottom: 3px solid #FFD700;
  box-shadow: 0 4px 20px rgba(255,215,0,0.15);
  backdrop-filter: blur(10px);
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}
nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 0 !important;
  gap: 20px !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
  height: auto !important;
}
.logo {
  font-family: 'Fredoka One', cursive;
  font-size: 28px;
  text-decoration: none;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.logo-tech { color: var(--white); text-shadow: 0 0 20px rgba(255,255,255,0.3); }
.logo-battle { color: var(--gold); text-shadow: 2px 2px 0 var(--gold-dark), 0 0 20px rgba(255,215,0,0.5); }
.logo-excl {
  color: var(--red);
  text-shadow: 2px 2px 0 var(--red-dark), 0 0 15px rgba(255,51,51,0.6);
  animation: exclPulse 1.5s ease-in-out infinite;
}
@keyframes exclPulse {
  0%,100%{transform:scale(1) rotate(0deg)}
  50%{transform:scale(1.15) rotate(5deg)}
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  overflow: visible;
  flex: 1;
  justify-content: center;
}
.nav-links li {
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nav-links a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: #B8B8D8 !important;
  text-decoration: none !important;
  font-family: 'Fredoka One', cursive !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  padding: 7px 10px !important;
  border-radius: 20px !important;
  border: 2px solid transparent !important;
  transition: all 0.2s !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  min-width: unset !important;
  background: transparent !important;
  box-shadow: none !important;
}
.nav-links a:hover {
  color: #FFD700 !important;
  border-color: rgba(255,215,0,0.3) !important;
  background: rgba(255,215,0,0.07) !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}
.nav-cta {
  background: linear-gradient(135deg, var(--red), #CC2200) !important;
  color: white !important;
  border-color: rgba(255,100,100,0.5) !important;
  box-shadow: 0 4px 15px rgba(255,51,51,0.35) !important;
}
.nav-cta:hover {
  box-shadow: 0 4px 25px rgba(255,51,51,0.6) !important;
  transform: translateY(-2px) !important;
}
.nav-search {
  display: flex !important;
  align-items: center !important;
  background: rgba(255,255,255,0.05) !important;
  border: 2px solid rgba(255,215,0,0.2) !important;
  border-radius: 20px !important;
  padding: 6px 14px !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  min-width: 160px !important;
  transition: all 0.2s;
}
.nav-search:focus-within {
  border-color: rgba(255,215,0,0.5) !important;
  background: rgba(255,215,0,0.05) !important;
}
.nav-search input {
  background: none !important;
  border: none !important;
  outline: none !important;
  color: var(--white) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 13px !important;
  width: 140px !important;
}
.nav-search input::placeholder { color: var(--gray); }
.search-icon { color: var(--gray); font-size: 14px; }

/* ENERGY BAR */
.energy-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue), var(--purple), var(--green), var(--gold), var(--red));
  background-size: 300% 100%;
  animation: energyFlow 4s linear infinite;
  position: relative;
  z-index: 5;
}
@keyframes energyFlow { from{background-position:0%} to{background-position:300%} }

/* HERO */
.hero {
  position: relative;
  z-index: 5;
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(10,10,26,0.9) 0%, rgba(15,15,40,0.6) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,215,0,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 50%, rgba(79,195,247,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  position: relative;
}

/* POKEMON CARD */
.poke-card {
  background: linear-gradient(160deg, #FFEAA7 0%, #FDCB6E 40%, #E17055 100%);
  border: 5px solid var(--gold);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 0 0 2px var(--gold-dark), 0 0 30px rgba(255,215,0,0.3), inset 0 0 20px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  animation: cardFloat 3.5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100%{transform:rotate(-1.5deg) translateY(0)}
  50%{transform:rotate(1.5deg) translateY(-8px)}
}
.poke-card::before {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 220%; height: 220%;
  background: conic-gradient(transparent 0deg, rgba(255,255,255,0.12) 40deg, transparent 80deg, rgba(255,215,0,0.08) 120deg, transparent 160deg);
  animation: holoSpin 5s linear infinite;
}
@keyframes holoSpin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.pc-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:8px; position:relative; }
.pc-name { font-family:'Fredoka One',cursive; font-size:17px; color:#2D1500; line-height:1; }
.pc-sub { font-size:9px; color:#885500; font-weight:800; letter-spacing:1px; text-transform:uppercase; }
.pc-hp { font-family:'Fredoka One',cursive; font-size:18px; color:var(--red); text-shadow:1px 1px 0 rgba(0,0,0,0.2); }
.pc-hp span { font-size:10px; color:#885500; }
.pc-img {
  width:100%; height:90px;
  background:linear-gradient(135deg,#74B9FF,#0984E3,#2D3436);
  border-radius:8px; border:2px solid #885500;
  display:flex; align-items:center; justify-content:center;
  font-size:52px; margin:8px 0; position:relative; overflow:hidden;
}
.pc-img::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,0.15),transparent); }
.pc-type { background:linear-gradient(90deg,#885500,#CC8800,#885500); border-radius:3px; padding:2px 6px; font-size:9px; font-weight:800; color:var(--gold); letter-spacing:2px; text-align:center; margin-bottom:8px; }
.pc-stats { display:flex; flex-direction:column; gap:5px; position:relative; }
.stat-row { display:flex; align-items:center; gap:6px; }
.stat-label { width:28px; font-family:'Orbitron',monospace; font-size:8px; color:#885500; letter-spacing:0.5px; }
.stat-bar-bg { flex:1; height:5px; background:rgba(0,0,0,0.2); border-radius:3px; overflow:hidden; }
.stat-bar { height:100%; border-radius:3px; }
.stat-val { width:22px; text-align:right; font-family:'Orbitron',monospace; font-size:9px; color:#2D1500; font-weight:700; }
.pc-attack { border-top:1px solid rgba(136,85,0,0.3); margin-top:8px; padding-top:6px; position:relative; }
.atk-name { font-family:'Fredoka One',cursive; font-size:12px; color:#2D1500; margin-bottom:2px; }
.atk-desc { font-size:9px; color:#885500; line-height:1.3; }
.atk-dmg { float:right; font-family:'Fredoka One',cursive; font-size:20px; color:var(--red); margin-top:-18px; }
.pc-footer { display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(136,85,0,0.3); padding-top:6px; margin-top:6px; font-size:8px; color:#885500; font-weight:800; position:relative; }
.pc-rarity { color:var(--gold); font-size:13px; letter-spacing:2px; }

.sidebar-title { font-family:'Fredoka One',cursive; font-size:16px; color:var(--gold); letter-spacing:1px; display:flex; align-items:center; gap:8px; }
.sidebar-title::after { content:''; flex:1; height:2px; background:linear-gradient(90deg,rgba(255,215,0,0.4),transparent); }
.hero-sidebar { display:flex; flex-direction:column; gap:16px; }

/* FEATURED PLAYER */
.featured-player { position:relative; }
.featured-label {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,rgba(255,51,51,0.2),rgba(204,0,0,0.3));
  border:2px solid var(--red); border-radius:20px;
  color:#FF8888; font-family:'Fredoka One',cursive; font-size:12px; letter-spacing:1px;
  padding:5px 14px; margin-bottom:14px; animation:labelPulse 2s infinite;
}
@keyframes labelPulse { 0%,100%{box-shadow:0 0 8px rgba(255,51,51,0.3)} 50%{box-shadow:0 0 20px rgba(255,51,51,0.6)} }
.label-dot { width:7px; height:7px; background:var(--red); border-radius:50%; animation:labelPulse 1s infinite; }
.featured-title { font-family:'Fredoka One',cursive; font-size:22px; color:var(--cream); line-height:1.3; margin-bottom:10px; }
.featured-meta { display:flex; gap:16px; font-size:13px; color:var(--gray); font-weight:700; flex-wrap:wrap; }
.featured-info { margin-top:16px; }

/* MAIN */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 60px;
  position: relative;
  z-index: 5;
}

/* SECTION HEADERS */
.section-head { display:flex; align-items:center; gap:14px; margin:40px 0 20px; }
.section-tag { font-family:'Orbitron',monospace; font-size:10px; letter-spacing:3px; color:var(--gold); padding:4px 12px; border:1px solid rgba(255,215,0,0.3); background:rgba(255,215,0,0.05); border-radius:3px; text-transform:uppercase; white-space:nowrap; }
.section-title-main { font-family:'Fredoka One',cursive; font-size:28px; color:var(--white); text-shadow:2px 2px 0 rgba(0,0,0,0.5); }
.section-title-main span { color:var(--gold); text-shadow:2px 2px 0 var(--gold-dark); }
.section-line { flex:1; height:2px; background:linear-gradient(90deg,rgba(255,215,0,0.3),transparent); }
.section-more { font-family:'Fredoka One',cursive; font-size:13px; color:var(--blue); text-decoration:none; white-space:nowrap; transition:color 0.2s; }
.section-more:hover { color:var(--gold); }

/* ARTICLE GRID */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.art-card {
  background: var(--card);
  border: 2px solid rgba(255,215,0,0.12);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.art-card:hover {
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.08);
}
.art-thumb {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  position: relative;
  overflow: hidden;
}
.art-thumb::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,0.3)); }
.art-body { padding: 14px; }
.art-cat { font-family:'Fredoka One',cursive; font-size:10px; letter-spacing:2px; text-transform:uppercase; margin-bottom:6px; }
.art-title { font-family:'Fredoka One',cursive; font-size:14px; color:var(--cream); line-height:1.4; margin-bottom:8px; }
.art-footer { display:flex; justify-content:space-between; font-size:11px; color:var(--gray); font-weight:700; }

/* RANKING STRIP */
.ranking-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.rank-pill {
  background: var(--card2);
  border: 2px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.rank-pill::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--gold),transparent); opacity:0; transition:opacity 0.2s; }
.rank-pill:hover { border-color:var(--gold); transform:translateY(-4px); box-shadow:0 8px 25px rgba(255,215,0,0.12); }
.rank-pill:hover::before { opacity:1; }
.rank-num { font-family:'Orbitron',monospace; font-size:9px; color:rgba(255,215,0,0.35); letter-spacing:2px; margin-bottom:8px; }
.rank-icon { font-size:30px; margin-bottom:8px; }
.rank-name { font-family:'Fredoka One',cursive; font-size:13px; color:var(--cream); line-height:1.3; margin-bottom:4px; }
.rank-desc { font-size:11px; color:var(--gray); font-weight:600; }
.rank-badge { display:inline-block; margin-top:8px; padding:3px 10px; border-radius:20px; font-size:10px; font-family:'Fredoka One',cursive; letter-spacing:0.5px; }

/* SINGLE POST */
.single-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 60px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.single-content {
  background: var(--card);
  border: 2px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 32px;
}
.single-cat { font-family:'Fredoka One',cursive; font-size:11px; letter-spacing:3px; text-transform:uppercase; margin-bottom:12px; }
.single-title { font-family:'Fredoka One',cursive; font-size:32px; color:var(--cream); line-height:1.25; margin-bottom:16px; text-shadow:2px 2px 0 rgba(0,0,0,0.5); }
.single-meta { display:flex; gap:16px; font-size:12px; color:var(--gray); font-weight:700; margin-bottom:24px; padding-bottom:20px; border-bottom:2px solid rgba(255,215,0,0.1); }
.single-body { font-size:16px; line-height:1.8; color:#D0D0FF; }
.single-body h2 { font-family:'Fredoka One',cursive; font-size:22px; color:var(--gold); margin:24px 0 12px; }
.single-body h3 { font-family:'Fredoka One',cursive; font-size:18px; color:var(--cream); margin:20px 0 10px; }
.single-body p { margin-bottom:16px; }
.single-body a { color:var(--blue); }
.single-body strong { color:var(--gold); }
.single-sidebar { display:flex; flex-direction:column; gap:20px; }
.sidebar-widget { background:var(--card); border:2px solid rgba(255,215,0,0.15); border-radius:14px; padding:20px; }
.widget-title { font-family:'Fredoka One',cursive; font-size:15px; color:var(--gold); margin-bottom:14px; letter-spacing:1px; }

/* AFFILIATE BOX */
.aff-box {
  background: linear-gradient(135deg,rgba(255,215,0,0.08),rgba(255,107,0,0.08));
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.aff-btn {
  display:inline-block; margin-top:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#1A0A00; font-family:'Fredoka One',cursive; font-size:14px;
  padding:10px 20px; border-radius:20px; text-decoration:none;
  box-shadow:0 4px 15px rgba(255,215,0,0.3); transition:all 0.2s;
}
.aff-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(255,215,0,0.5); }

/* FOOTER */
footer {
  background: #050510;
  border-top: 3px solid var(--gold);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  z-index: 5;
  box-shadow: 0 -4px 20px rgba(255,215,0,0.1);
}
.footer-logo { font-family:'Fredoka One',cursive; font-size:38px; color:var(--gold); text-shadow:3px 3px 0 var(--gold-dark),0 0 20px rgba(255,215,0,0.4); margin-bottom:10px; letter-spacing:2px; }
.footer-sub { font-family:'Fredoka One',cursive; font-size:13px; color:var(--gray); letter-spacing:1px; margin-bottom:6px; }
.footer-disc { font-size:11px; color:rgba(136,136,187,0.5); }
.footer-cats { display:flex; justify-content:center; gap:20px; flex-wrap:wrap; margin:16px 0; }
.footer-cats a { font-family:'Fredoka One',cursive; font-size:13px; color:var(--gray); text-decoration:none; transition:color 0.2s; }
.footer-cats a:hover { color:var(--gold); }

/* PAGINATION */
.wp-pagenavi, .navigation { text-align:center; margin:40px 0; }
.wp-pagenavi a, .wp-pagenavi span,
.nav-links .page-numbers { display:inline-block; margin:0 4px; padding:8px 16px; background:var(--card2); border:2px solid rgba(255,215,0,0.2); border-radius:8px; color:var(--gray); text-decoration:none; font-family:'Fredoka One',cursive; transition:all 0.2s; }
.wp-pagenavi a:hover, .nav-links .page-numbers:hover { border-color:var(--gold); color:var(--gold); }
.wp-pagenavi span.current, .nav-links .page-numbers.current { background:var(--gold); color:#1A0A00; border-color:var(--gold); }

/* TABELA MARKDOWN CONVERTIDA */
.tb-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: 2px solid rgba(255,215,0,0.2);
}
.tb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tb-table th {
  background: linear-gradient(135deg,rgba(255,215,0,0.15),rgba(255,107,0,0.1));
  color: var(--gold);
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(255,215,0,0.3);
}
.tb-table td {
  padding: 9px 14px;
  color: #D0D0FF;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}
.tb-table tr:last-child td { border-bottom: none; }

/* ======== BATTLE CARD ARTICLE ======== */
.battle-card-article {
  background: linear-gradient(135deg, #0D0D2E, #1A1A4E);
  border: 2px solid rgba(255,215,0,0.35);
  border-radius: 16px;
  padding: 24px;
  margin: 32px auto;
  max-width: 480px;
  box-shadow: 0 0 30px rgba(255,215,0,0.1), inset 0 0 60px rgba(79,195,247,0.03);
  font-family: 'Nunito', sans-serif;
}
.bca-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,215,0,0.2);
}
.bca-type {
  background: rgba(255,215,0,0.12);
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.bca-name {
  color: var(--white);
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  line-height: 1.2;
}
.bca-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.bca-stat {
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  align-items: center;
  gap: 10px;
}
.bca-label {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.bca-bar {
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.bca-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.6s ease;
}
.bca-val {
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
  text-align: right;
}
.bca-price {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 10px;
  padding: 10px 16px;
  color: var(--gold);
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  text-align: center;
  margin-bottom: 14px;
}
.bca-ability {
  background: rgba(206,147,216,0.08);
  border-left: 3px solid var(--purple);
  padding: 10px 14px;
  border-radius: 0 10px 10px 0;
  color: #D0D0FF;
  font-size: 14px;
  line-height: 1.5;
}
.tb-table tr:hover td { background: rgba(255,215,0,0.04); }

/* SEPARADOR HR */
hr.tb-sep {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.4), transparent);
  margin: 24px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-sidebar { display:none; }
  .article-grid { grid-template-columns: repeat(2,1fr); }
  .ranking-strip { grid-template-columns: repeat(2,1fr); }
  .single-wrap { grid-template-columns: 1fr; }
  .nav-links { display:none !important; }
}
@media (max-width: 600px) {
  .article-grid { grid-template-columns: 1fr; }
  .ranking-strip { grid-template-columns: 1fr; }
  .main { padding:0 16px 40px; }
}

/* MENU HAMBURGUER — oculto no desktop */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 2px solid rgba(255,215,0,0.3);
  color: #FFD700;
  font-family: 'Fredoka One', cursive;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  /* Header */
  header, #masthead { padding: 0 16px !important; }

  /* Nav: linha 1 = logo + hamburger; linha 2 = search; linha 3 = menu aberto */
  nav {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 8px 0 !important;
    height: auto !important;
  }

  /* Logo ocupa espaço restante na linha 1 */
  .logo { flex: 1 !important; }

  /* Hamburguer visível */
  .menu-toggle { display: flex !important; order: 2; }

  /* Nav-links escondido — SEM !important no display do base agora, isso funciona */
  .nav-links {
    display: none !important;
    order: 4;
    width: 100% !important;
  }

  /* Quando aberto pelo JS */
  .nav-links.toggled {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    background: rgba(5,5,20,0.98) !important;
    padding: 10px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,215,0,0.2) !important;
    margin-top: 8px !important;
    gap: 2px !important;
  }
  .nav-links.toggled li { width: 100% !important; }
  .nav-links.toggled a {
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    height: auto !important;
  }

  /* Search: linha própria abaixo do logo+hamburger */
  .nav-search {
    order: 3 !important;
    width: 100% !important;
    min-width: unset !important;
    margin-top: 8px !important;
    box-sizing: border-box !important;
  }
  .nav-search input { width: 100% !important; }

  /* Hero mobile */
  .hero-thumb  { height: 200px !important; }
  .hero-title  { font-size: 18px !important; }
  .hero-info   { padding: 14px 16px !important; }
  .hero-read-btn { font-size: 11px !important; padding: 6px 12px !important; }
}

/* ===== AFFILIATE BLOCK ===== */
.affiliate-block {
  background: linear-gradient(135deg, #12123a, #1a1a4e);
  border: 2px solid #FFD700;
  border-radius: 16px;
  padding: 24px;
  margin: 40px 0;
  text-align: center;
}
.affiliate-block h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 16px;
}
.affiliate-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.aff-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-block;
}
.aff-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.aff-amazon {
  background: #FF9900;
  color: #000;
}
.aff-magalu {
  background: #0078D7;
  color: #fff;
}
.aff-ml {
  background: #FFE600;
  color: #000;
}
.aff-disclaimer {
  font-size: 11px;
  color: #8888BB;
  margin-top: 8px;
}

/* ===== BATTLE CARD — LABELS POR CATEGORIA ===== */
/* Celular */
.bca-celular .bca-stat:nth-child(1) .bca-label::before { content: "📸 CÂMERA "; }
.bca-celular .bca-stat:nth-child(2) .bca-label::before { content: "⚡ CHIP "; }
.bca-celular .bca-stat:nth-child(3) .bca-label::before { content: "🔋 BATERIA "; }
.bca-celular .bca-stat:nth-child(4) .bca-label::before { content: "💾 RAM "; }
.bca-celular .bca-stat:nth-child(5) .bca-label::before { content: "📺 TELA "; }

/* Notebook */
.bca-notebook .bca-stat:nth-child(1) .bca-label::before { content: "💻 CPU "; }
.bca-notebook .bca-stat:nth-child(2) .bca-label::before { content: "🎮 GPU "; }
.bca-notebook .bca-stat:nth-child(3) .bca-label::before { content: "💾 RAM "; }
.bca-notebook .bca-stat:nth-child(4) .bca-label::before { content: "💿 SSD "; }
.bca-notebook .bca-stat:nth-child(5) .bca-label::before { content: "🔋 BATERIA "; }

/* Console */
.bca-console .bca-stat:nth-child(1) .bca-label::before { content: "🎮 CPU "; }
.bca-console .bca-stat:nth-child(2) .bca-label::before { content: "🖥️ GPU "; }
.bca-console .bca-stat:nth-child(3) .bca-label::before { content: "📺 RESOLUÇÃO "; }
.bca-console .bca-stat:nth-child(4) .bca-label::before { content: "⚡ FPS "; }
.bca-console .bca-stat:nth-child(5) .bca-label::before { content: "💿 SSD "; }

/* Drone */
.bca-drone .bca-stat:nth-child(1) .bca-label::before { content: "📸 CÂMERA "; }
.bca-drone .bca-stat:nth-child(2) .bca-label::before { content: "⏱️ VOO "; }
.bca-drone .bca-stat:nth-child(3) .bca-label::before { content: "📡 ALCANCE "; }
.bca-drone .bca-stat:nth-child(4) .bca-label::before { content: "⚖️ PESO "; }
.bca-drone .bca-stat:nth-child(5) .bca-label::before { content: "💨 VELOCIDADE "; }

/* Fone */
.bca-fone .bca-stat:nth-child(1) .bca-label::before { content: "🔇 ANC "; }
.bca-fone .bca-stat:nth-child(2) .bca-label::before { content: "🔋 BATERIA "; }
.bca-fone .bca-stat:nth-child(3) .bca-label::before { content: "🔊 DRIVER "; }
.bca-fone .bca-stat:nth-child(4) .bca-label::before { content: "🎵 CODEC "; }
.bca-fone .bca-stat:nth-child(5) .bca-label::before { content: "📶 CONEXÃO "; }

/* Smartwatch */
.bca-smartwatch .bca-stat:nth-child(1) .bca-label::before { content: "📱 TELA "; }
.bca-smartwatch .bca-stat:nth-child(2) .bca-label::before { content: "🔋 BATERIA "; }
.bca-smartwatch .bca-stat:nth-child(3) .bca-label::before { content: "🛰️ GPS "; }
.bca-smartwatch .bca-stat:nth-child(4) .bca-label::before { content: "💧 RESISTÊNCIA "; }
.bca-smartwatch .bca-stat:nth-child(5) .bca-label::before { content: "🩺 SENSORES "; }

/* Câmera */
.bca-camera .bca-stat:nth-child(1) .bca-label::before { content: "📷 SENSOR "; }
.bca-camera .bca-stat:nth-child(2) .bca-label::before { content: "🎬 GRAVAÇÃO "; }
.bca-camera .bca-stat:nth-child(3) .bca-label::before { content: "🌙 ISO "; }
.bca-camera .bca-stat:nth-child(4) .bca-label::before { content: "⚖️ ESTAB. "; }
.bca-camera .bca-stat:nth-child(5) .bca-label::before { content: "📺 TELA "; }

/* Valor real: ocultar barra e mostrar texto completo */
.bca-celular .bca-val,
.bca-notebook .bca-val,
.bca-console .bca-val,
.bca-drone .bca-val,
.bca-fone .bca-val,
.bca-smartwatch .bca-val,
.bca-camera .bca-val {
  font-size: 11px;
  font-weight: 600;
  color: #00D4FF;
  white-space: normal;
  word-break: break-word;
  max-width: 140px;
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   BATTLE CARD v2 — FORMATO IMAGEM + POKEMON STYLE
   TechBattle 2026
═══════════════════════════════════════════════════════════════ */

/* Container para cards em comparação (2 lado a lado) */
.cards-battle-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px auto;
  max-width: 900px;
}
.cards-battle-container .battle-card-article {
  flex: 1 1 320px;
  max-width: 400px;
}

/* Card principal */
.battle-card-article {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  border: 3px solid #ffd700;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px #b8860b,
    0 8px 32px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,215,0,0.2);
  color: #fff;
  font-family: 'Segoe UI', system-ui, sans-serif;
  margin: 24px auto;
  max-width: 420px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

/* Reflexo holográfico */
.battle-card-article::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 50%,
    rgba(255,215,0,0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Header */
.battle-card-article .bca-header {
  background: linear-gradient(90deg, #ffd700 0%, #ffb800 50%, #ffd700 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
}
.battle-card-article .bca-rarity {
  color: #1a1a2e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.battle-card-article .bca-type {
  background: rgba(0,0,0,0.25);
  border-radius: 20px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  text-transform: uppercase;
}

/* Nome do produto */
.battle-card-article .bca-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.2;
  padding: 10px 14px 2px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Modelo/subtítulo */
.battle-card-article .bca-model {
  color: rgba(255,215,0,0.75);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0 14px 8px;
  text-align: center;
  text-transform: uppercase;
}

/* Área da imagem */
.battle-card-article .bca-image {
  background: linear-gradient(180deg, #0d1b2a 0%, #1a2a3a 100%);
  border-bottom: 2px solid rgba(255,215,0,0.3);
  border-top: 2px solid rgba(255,215,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  overflow: hidden;
  padding: 12px;
  position: relative;
}
.battle-card-article .bca-image img {
  border-radius: 8px;
  display: block;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  width: 100%;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.7));
  transition: transform 0.3s ease;
}
.battle-card-article .bca-image img:hover {
  transform: scale(1.04);
}

/* Barra de tipo */
.battle-card-article .bca-type-bar {
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.15), transparent);
  border-bottom: 1px solid rgba(255,215,0,0.2);
  color: rgba(255,215,0,0.8);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 5px 14px;
  text-align: center;
  text-transform: uppercase;
}

/* Stats */
.battle-card-article .bca-stats {
  padding: 8px 14px 4px;
}
.battle-card-article .bca-stat-row {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
}
.battle-card-article .bca-stat-row:last-child {
  border-bottom: none;
}
.battle-card-article .bca-stat-label {
  color: #ffd700;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  min-width: 72px;
  text-transform: uppercase;
}
.battle-card-article .bca-stat-value {
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Preço */
.battle-card-article .bca-price {
  background: rgba(255,215,0,0.08);
  border-top: 1px solid rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 9px 14px;
}
.battle-card-article .bca-price-label {
  color: rgba(255,215,0,0.7);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.battle-card-article .bca-price-value {
  color: #ffd700;
  font-size: 1.05rem;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(255,215,0,0.4);
}

/* Habilidade especial */
.battle-card-article .bca-ability {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-style: italic;
  line-height: 1.4;
  padding: 8px 14px;
}

/* Footer */
.battle-card-article .bca-footer {
  background: linear-gradient(90deg, #0a0a1a, #1a1a3e, #0a0a1a);
  border-top: 2px solid rgba(255,215,0,0.3);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: 1px;
  padding: 7px 14px;
  text-transform: uppercase;
}
.battle-card-article .bca-footer .bca-stars {
  color: #ffd700;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* Responsivo */
@media (max-width: 640px) {
  .cards-battle-container {
    flex-direction: column;
    align-items: center;
  }
  .cards-battle-container .battle-card-article {
    max-width: 100%;
    width: 100%;
  }
  .battle-card-article {
    max-width: 100%;
  }
}

/* ============================================================
   TIPOGRAFIA E LEGIBILIDADE DOS ARTIGOS — ATUALIZAÇÃO 2026
   ============================================================ */

/* TIPOGRAFIA GERAL DOS ARTIGOS */
.single-post .entry-content,
.single-post article,
article.post {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: #E8E8F0;
  max-width: 780px;
  margin: 0 auto;
}

/* PARÁGRAFOS */
.entry-content p {
  color: #D8D8EE;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 400;
}

/* TÍTULOS H2 */
.entry-content h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 26px;
  color: #FFD700;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,215,0,0.2);
  line-height: 1.3;
}

/* TÍTULOS H3 */
.entry-content h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  color: #4FC3F7;
  margin: 28px 0 12px;
  line-height: 1.3;
}

/* TEXTO EM NEGRITO */
.entry-content strong,
.entry-content b {
  color: #FFFFFF;
  font-weight: 800;
}

/* TEXTO EM ITÁLICO */
.entry-content em {
  color: #B8B8DD;
}

/* LISTAS */
.entry-content ul,
.entry-content ol {
  color: #D8D8EE;
  font-size: 17px;
  line-height: 1.85;
  padding-left: 24px;
  margin-bottom: 20px;
}

.entry-content li {
  margin-bottom: 8px;
  color: #D8D8EE;
}

/* LINKS NO CONTEÚDO */
.entry-content a {
  color: #4FC3F7;
  text-decoration: none;
  border-bottom: 1px solid rgba(79,195,247,0.3);
  transition: all 0.2s;
}

.entry-content a:hover {
  color: #FFD700;
  border-color: rgba(255,215,0,0.5);
}

/* TABELAS */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  overflow: hidden;
}

.entry-content th {
  background: rgba(255,215,0,0.1);
  color: #FFD700;
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(255,215,0,0.2);
}

.entry-content td {
  padding: 10px 16px;
  color: #D8D8EE;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
}

.entry-content tr:hover td {
  background: rgba(255,255,255,0.03);
}

/* CITAÇÕES / BLOCKQUOTE */
.entry-content blockquote {
  border-left: 4px solid #FFD700;
  background: rgba(255,215,0,0.05);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #C8C8E8;
}

/* CÓDIGO */
.entry-content code {
  background: rgba(255,255,255,0.08);
  color: #69F0AE;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

/* FUNDO DO ARTIGO */
.single-post,
body.single {
  background: #0A0A1A;
}

.single-post .site-main,
.single article {
  background: transparent;
}

/* CONTAINER DO ARTIGO */
.entry-content {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
  margin-top: 20px;
}

/* HEADER DO ARTIGO */
.entry-header h1,
.single h1.entry-title {
  font-family: 'Fredoka One', cursive;
  font-size: 36px;
  color: #FFFFFF;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  line-height: 1.25;
  margin-bottom: 16px;
}

/* META INFO (data, autor, categoria) */
.entry-meta,
.post-meta {
  font-size: 13px;
  color: #8888BB;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* SEPARADOR */
.entry-content hr {
  border: none;
  border-top: 1px solid rgba(255,215,0,0.2);
  margin: 32px 0;
}

/* RESPONSIVO MOBILE */
@media (max-width: 768px) {
  .entry-content {
    padding: 20px;
  }
  .entry-content h2 {
    font-size: 22px;
  }
  .entry-content p {
    font-size: 16px;
  }
  .single-post .entry-content {
    font-size: 16px;
  }
}

/* ══════════════════════════════════
   HERO BATALHA EM DESTAQUE
══════════════════════════════════ */
.hero-featured {
  margin-bottom: 40px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,51,51,0.15);
  border: 2px solid #FF3333;
  border-radius: 20px;
  color: #FF8888;
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 16px;
  margin-bottom: 16px;
  animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
  0%,100%{box-shadow:0 0 8px rgba(255,51,51,0.3)}
  50%{box-shadow:0 0 20px rgba(255,51,51,0.6)}
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: #FF3333;
  border-radius: 50%;
  animation: heroPulse 1s infinite;
}

.hero-card-link {
  text-decoration: none;
  display: block;
}

.hero-card {
  background: var(--card, #12123a);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-card:hover {
  border-color: #FFD700;
  box-shadow: 0 8px 40px rgba(255,215,0,0.2);
  transform: translateY(-3px);
}

.hero-thumb {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #0F0F28;
  position: relative;
}

.hero-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.7) 100%
  );
}

.hero-thumb-content {
  position: absolute;
  top: 16px;
  left: 16px;
}

.hero-cat-badge {
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: #FFD700;
  font-family: 'Fredoka One', cursive;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.hero-info {
  padding: 20px 24px;
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 14px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8888BB;
  font-weight: 700;
}

.hero-read-btn {
  background: linear-gradient(135deg, #FF3333, #CC0000);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255,51,51,0.3);
  transition: all 0.2s;
}

.hero-card:hover .hero-read-btn {
  box-shadow: 0 4px 20px rgba(255,51,51,0.5);
  transform: translateX(3px);
}

/* ══════════════════════════════════
   PAGINAÇÃO ESTILIZADA
══════════════════════════════════ */
.page-numbers,
.pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 48px 0 !important;
  flex-wrap: wrap !important;
}

.page-numbers a,
.page-numbers span,
.pagination a,
.pagination span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  background: #12123A !important;
  border: 2px solid rgba(255,215,0,0.2) !important;
  border-radius: 8px !important;
  color: #B0B0D0 !important;
  font-family: 'Fredoka One', cursive !important;
  font-size: 15px !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
  box-shadow: none !important;
}

.page-numbers a:hover,
.pagination a:hover {
  background: rgba(255,215,0,0.1) !important;
  border-color: #FFD700 !important;
  color: #FFD700 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255,215,0,0.15) !important;
}

.page-numbers.current,
.pagination .current {
  background: linear-gradient(135deg, #FFD700, #FFA500) !important;
  border-color: #FFD700 !important;
  color: #000000 !important;
  font-weight: 900 !important;
  box-shadow: 0 4px 15px rgba(255,215,0,0.35) !important;
}

.page-numbers.prev,
.page-numbers.next,
.pagination .prev,
.pagination .next {
  width: auto !important;
  padding: 0 16px !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
}

.page-numbers.prev::before { content: "← "; }
.page-numbers.next::after  { content: " →"; }

.page-numbers.dots {
  background: transparent !important;
  border-color: transparent !important;
  color: #606090 !important;
  cursor: default !important;
}

/* ══════════════════════════════════
   FOOTER LEGAL + COPYRIGHT
══════════════════════════════════ */
.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 16px 0 8px;
}
.footer-legal a {
  color: #8888BB;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #FFD700; }

.footer-copy {
  text-align: center;
  font-size: 11px;
  color: #555577;
  margin: 4px 0 0;
}

/* ══════════════════════════════════
   SLOTS DE ANÚNCIO ADSENSE
══════════════════════════════════ */
.ad-slot {
  clear: both;
  overflow: hidden;
  max-width: 100%;
}
.ad-slot.ad-top    { margin: 0 0 20px; }
.ad-slot.ad-mid    { margin: 24px 0; }
.ad-slot.ad-bottom { margin: 24px 0 0; }

@media (max-width: 768px) {
  .ad-slot { margin-left: -4px; margin-right: -4px; }
}