/* =========================================================
   ArcadeXpress — Main Stylesheet
   ========================================================= */

/* ── FUENTES SELF-HOSTED ─────────────────────────────────── */
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani/rajdhani-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani/rajdhani-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani/rajdhani-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/inter-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Share Tech Mono';
  src: url('../fonts/share-tech-mono/share-tech-mono-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --red:  #C62828;  --rdk: #8B1A1A;
  --blue: #1565C0;  --cyn: #00838F;
  --ylw:  #FFDD00;
  --nvy:  #1A1A2E;  --nvd: #0D0D1A;
  --wht:  #fff;
  --g50:  #F8F8F6;  --g100: #EEEDE8;
  --brd:  #E2E1DC;  --brs: #C4C3BC;
  --txt:  #1A1A18;  --muted: #666663;  --fnt: #999996;
  --cw:   1100px;
}

/* ── CONTENEDOR CENTRAL ─────────────────────────────────── */
.ax-container {
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--txt);
  font-size: 15px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/* ── HEADER ─────────────────────────────────────────────── */
.ax-header {
  background: #fff;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
/* Spacer que ocupa el espacio del header fijo en el flow */
.ax-header-spacer {
  height: 79px;
}
.ax-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

/* ── HAMBURGUESA ───────────────────────────────────────── */
.ax-ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 201;
  background: none;
  border: none;
}
.ax-ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--txt);
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.ax-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ax-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ax-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HEADER LEFT ──────────────────────────────────────── */
.ax-header__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ax-hdr-links {
  display: flex;
  gap: 0;
}
.ax-hdr-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--txt);
  padding: 6px 12px;
  letter-spacing: 1px;
  border-right: 1px solid var(--brd);
  transition: color .15s;
}
.ax-hdr-links a:first-child { border-left: 1px solid var(--brd); }
.ax-hdr-links a:hover { color: var(--red); }

/* ── LOGO ─────────────────────────────────────────────── */
.ax-header__logo {
  text-align: center;
  flex: 1;
}
.ax-logo--wordmark { display: inline-block; }
.ax-logo__main {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  display: block;
}
.ax-logo__r { color: var(--red); }
.ax-logo__b { color: var(--blue); }
.ax-logo__sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--fnt);
  letter-spacing: 2px;
  display: block;
}
.ax-logo img { max-height: 55px; width: auto; }

/* ── HEADER RIGHT ─────────────────────────────────────── */
.ax-hdr-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ax-srch {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--brs);
  border-radius: 3px;
  padding: 7px 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--fnt);
  min-width: 160px;
}
.ax-srch-icon { width: 13px; height: 13px; flex-shrink: 0; }
.ax-srch input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--txt);
  min-width: 0;
}
.ax-srch input[type="search"]::placeholder { color: var(--fnt); }
.ax-srch-submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--fnt);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color .15s;
}
.ax-srch-submit:hover { color: var(--red); }
.ax-srch-submit__ico { width: 13px; height: 13px; }
.ax-btn-t {
  background: var(--blue);
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 2px;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: background .15s;
}
.ax-btn-t:hover { background: #0D47A1; color: #fff; }
.ax-srch-ico {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--brs);
  border-radius: 3px;
  color: var(--fnt);
  cursor: pointer;
  flex-shrink: 0;
}
.ax-srch-ico.open { border-color: var(--red); color: var(--red); }
.ax-lang-sel {
  display: flex;
  gap: 2px;
  border: 1px solid var(--brd);
  border-radius: 3px;
  overflow: hidden;
}
.ax-lang {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  padding: 5px 8px;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .5px;
}
.ax-lang:hover { color: var(--txt); background: var(--g50); }
.ax-lang.on { background: var(--nvy); color: var(--ylw); }

/* ── SEARCH BAR MOBILE ────────────────────────────────── */
.ax-srch-bar {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s cubic-bezier(.4,0,.2,1), padding .25s;
  padding: 0 20px;
}
.ax-srch-bar.open { max-height: 72px; padding: 12px 20px; }
.ax-srch-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--brs);
  border-radius: 3px;
  padding: 8px 12px;
}
.ax-srch-bar__inner form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.ax-srch-bar__inner input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--txt);
  background: transparent;
}
.ax-srch-bar__inner input::placeholder { color: var(--fnt); }
.ax-srch-close {
  cursor: pointer;
  color: var(--fnt);
  font-size: 16px;
  line-height: 1;
  transition: color .15s;
  flex-shrink: 0;
  background: none;
  border: none;
}
.ax-srch-close:hover { color: var(--red); }

/* ── SCORE BAR ────────────────────────────────────────── */
.ax-score-bar {
  background: var(--nvy);
  border-bottom: 2px solid rgba(198,40,40,0.3);
  padding: 4px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  letter-spacing: 1px;
}
.ax-score { color: var(--ylw); letter-spacing: 2px; }

@keyframes ax-cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes ax-crt-flicker  { 0%,96%,100%{opacity:1} 97%{opacity:.94} 98%{opacity:1} 99%{opacity:.96} }
@keyframes ax-invader-bob  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.ax-blink { animation: ax-cursor-blink 1s step-end infinite; }

/* ── NAV BAR (categorías) ─────────────────────────────── */
.ax-nav { background: var(--nvy); }
.ax-nav-in {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.ax-nav-in::-webkit-scrollbar { display: none; }
.ax-nav-link {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  padding: 10px 16px;
  letter-spacing: 1px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.06);
  display: block;
  transition: color .15s;
}
.ax-nav-link:first-child { border-left: 1px solid rgba(255,255,255,.06); }
.ax-nav-link:hover, .ax-nav-link.on { color: var(--ylw); }
.ax-nav-link.on::before { content: '▶ '; animation: ax-cursor-blink 1.5s step-end infinite; }

/* ── DRAWER ───────────────────────────────────────────── */
.ax-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 198;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.ax-drawer-overlay.open { opacity: 1; pointer-events: all; }

.ax-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: var(--nvd);
  border-right: 2px solid var(--red);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.ax-drawer.open { transform: translateX(0); }

.ax-drw-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.ax-drw-logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.ax-drw-r { color: var(--red); }
.ax-drw-b { color: var(--blue); }

.ax-drw-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Share Tech Mono', monospace;
  font-size: 16px;
  color: rgba(255,255,255,.5);
  background: none;
  transition: border-color .15s, color .15s;
}
.ax-drw-close:hover { border-color: var(--red); color: var(--red); }

.ax-drw-score {
  padding: 8px 20px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
}

.ax-drw-srch { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ax-drw-srch input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  padding: 9px 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  outline: none;
  transition: border-color .15s;
}
.ax-drw-srch input:focus { border-color: var(--red); }
.ax-drw-srch input::placeholder { color: rgba(255,255,255,.3); }

.ax-drw-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.25);
  padding: 14px 20px 6px;
}

.ax-drw-nav { flex: 1; }
.ax-drw-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .15s, background .15s;
}
.ax-drw-link:hover { color: var(--ylw); background: rgba(255,255,255,.03); }
.ax-drw-link.on { color: var(--ylw); }
.ax-drw-link.on::before { content: '▶ '; animation: ax-cursor-blink 1.5s step-end infinite; }
.ax-drw-ct {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  padding: 2px 6px;
  border-radius: 2px;
}

.ax-drw-lang {
  display: flex;
  gap: 6px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ax-drw-lang .ax-lang { flex: 1; text-align: center; border-radius: 2px; border: 1px solid rgba(255,255,255,.12); }
.ax-drw-lang .ax-lang.on { background: var(--nvy); color: var(--ylw); }

.ax-drw-cta {
  margin: 16px 20px;
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 12px;
  border-radius: 2px;
  transition: background .15s;
}
.ax-drw-cta:hover { background: var(--rdk); color: #fff; }

.ax-drw-foot {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: center;
}

/* ── INSERT COIN / ARCADE MOTIFS ──────────────────────── */
.ax-insert-coin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--ylw);
  letter-spacing: 2px;
}
.ax-coin-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ylw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--nvd);
  font-weight: 700;
  animation: ax-cursor-blink 1.2s ease-in-out infinite;
}

/* ── BREADCRUMB ───────────────────────────────────────── */
.ax-breadcrumb {
  border-bottom: 1px solid var(--brd);
  padding: 10px 20px;
}
.ax-breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
}
.ax-breadcrumb li {
  flex-shrink: 0;
}
.ax-breadcrumb li:last-child {
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ax-breadcrumb li + li::before { content: '›'; margin-right: 6px; }
.ax-breadcrumb a { color: var(--red); transition: color .15s; }
.ax-breadcrumb a:hover { color: var(--nvy); }

/* ── SECTION HEADER ────────────────────────────────────── */
.ax-sec-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.ax-sec-mk {
  width: 4px;
  height: 18px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}
.ax-sec-ttl {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--muted);
  white-space: nowrap;
}
.ax-sec-ln {
  flex: 1;
  height: 1px;
  background: var(--brd);
}
.ax-sec-ct {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--fnt);
  border: 1px solid var(--brd);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  background: transparent;
  margin: 0;
}
.ax-hi-score {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--ylw);
  background: var(--nvy);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  letter-spacing: .5px;
}

/* ── BADGES ───────────────────────────────────────────── */
.ax-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ax-badge--red  { background: var(--red);  color: #fff; }
.ax-badge--blue { background: var(--blue); color: #fff; }
.ax-badge--cyan { background: var(--cyn);  color: #fff; }
.ax-badge--navy { background: var(--nvy);  color: var(--ylw); }

/* ── CARDS ────────────────────────────────────────────── */
.ax-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ax-card {
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.ax-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.ax-card__media {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.ax-card__media > a:first-child { display: block; width: 100%; height: 100%; }
.ax-card__media .ax-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  margin-bottom: 0;
}
.ax-card__img   { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.ax-card:hover .ax-card__img { transform: scale(1.03); }
.ax-card__img--placeholder { background: var(--g100); width: 100%; height: 100%; display: block; }
.ax-card__body  { padding: 16px 18px 18px; }
.ax-card__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ax-card__title a { color: var(--nvy); transition: color .15s; }
.ax-card__title a:hover { color: var(--red); }
.ax-card__excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.ax-card__ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--brd);
}
.ax-card__dt {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--fnt);
}
.ax-card__rd {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--red);
  transition: color .15s;
}
.ax-card__rd:hover { color: var(--rdk); }

/* Featured card */
.ax-card--featured .ax-card__title { font-size: 24px; }
.ax-card--featured .ax-card__excerpt { font-size: 15px; }

/* ── FILTER TABS ──────────────────────────────────────── */
.ax-flt-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.ax-flt-lbl {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--fnt);
  white-space: nowrap;
  flex-shrink: 0;
}
.ax-flt {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border: 1px solid var(--brd);
  border-radius: 3px;
  background: #fff;
  flex-shrink: 1;
  min-width: 0;
}
.ax-flt::-webkit-scrollbar { display: none; }
.ax-ft {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  border: none;
  border-right: 1px solid var(--brd);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: background .15s, color .15s;
  flex-shrink: 0;
  position: relative;
}
.ax-ft:last-child { border-right: none; }
.ax-ft:hover:not(.on) { background: var(--g50); color: var(--txt); }
.ax-ft.on {
  background: var(--nvy);
  color: var(--ylw);
}
.ax-ft.on::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

/* ── HERO HOME ────────────────────────────────────────── */
.ax-hero {
  background: var(--nvd);
  border-bottom: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
.ax-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}
.ax-hero__in {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  position: relative;
  z-index: 1;
}

/* Columna izquierda: texto */
.ax-hero__c {
  padding: 40px 32px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ax-hero__eye {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.ax-hero__dot {
  width: 7px;
  height: 7px;
  background: var(--ylw);
  border-radius: 1px;
  flex-shrink: 0;
  animation: ax-cursor-blink 1.2s ease-in-out infinite;
}
.ax-hero__tag {
  background: var(--red);
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  padding: 3px 10px;
  letter-spacing: 1.5px;
  border-radius: 2px;
  transition: background .15s;
}
.ax-hero__tag:hover { background: var(--rdk); color: #fff; }
.ax-hero__ttl {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
  animation: ax-crt-flicker 8s infinite;
}
.ax-hero__meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.ax-hero__exc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ax-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  padding: 11px 20px;
  border-radius: 2px;
  letter-spacing: 1px;
  width: fit-content;
  transition: background .15s;
}
.ax-hero__cta:hover { background: var(--rdk); color: #fff; }

/* Columna derecha: imagen */
.ax-hero__img {
  background: linear-gradient(135deg, #111120, #1a0808);
  border-left: 2px solid rgba(198,40,40,.3);
  overflow: hidden;
  position: relative;
  /* Forzar que el panel ocupe toda la altura del grid */
  align-self: stretch;
}
/* Efecto lineatura CRT sobre la imagen */
.ax-hero__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,.18) 0px,
    rgba(0,0,0,.18) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 1;
}
.ax-hero__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ax-hero__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ax-hero__sprites {
  display: flex;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── MAIN LAYOUT ──────────────────────────────────────── */
.ax-main {
  padding-top: 40px;
  padding-bottom: 40px;
}
.ax-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--nvy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ax-section-title::before { content: '▶'; color: var(--red); font-size: 14px; }

/* ── NEWSLETTER ───────────────────────────────────────── */
.ax-newsletter {
  background: var(--nvy);
  border-top: 3px solid var(--red);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.ax-newsletter__in {
  padding-top: 36px;
  padding-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.ax-newsletter__copy { flex: 1; min-width: 0; }
.ax-newsletter__title {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 5px;
  line-height: 1.2;
}
.ax-newsletter__desc {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  letter-spacing: 1px;
}
.ax-newsletter__form-wrap { flex-shrink: 0; }
.ax-newsletter__form {
  display: flex;
  gap: 8px;
}
.ax-newsletter__form input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  padding: 10px 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  width: 220px;
  outline: none;
  transition: border-color .15s;
}
.ax-newsletter__form input:focus { border-color: var(--ylw); }
.ax-newsletter__form input::placeholder { color: rgba(255,255,255,.3); }
.ax-newsletter__form button {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 10px 16px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.ax-newsletter__form button:hover { background: var(--rdk); }

/* ── SINGLE POST ──────────────────────────────────────── */
.ax-progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0,0,0,.1);
  z-index: 999;
}
.ax-progress {
  height: 100%;
  background: var(--red);
  width: 0;
  transition: width .1s linear;
}

.ax-single {
  padding-top: 36px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 44px;
  align-items: start;
}
.ax-single__main { min-width: 0; max-width: 100%; }
.ax-single__sidebar { position: sticky; top: 80px; }

.ax-post-header { margin-bottom: 22px; }
.ax-post-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--nvy);
  margin-bottom: 14px;
  animation: ax-crt-flicker 8s infinite;
}
.ax-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brd);
  margin-bottom: 22px;
}
/* bloque 1: autor */
.ax-post-meta__author {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ax-post-meta__av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--nvy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--ylw);
  flex-shrink: 0;
  font-weight: 700;
}
.ax-post-meta__nm {
  font-size: 13px;
  font-weight: 500;
  color: var(--fnt);
}
/* bloque 2: fecha + tiempo de lectura */
.ax-post-meta__info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ax-post-meta__sep { color: var(--brs); }
.ax-post-meta__item {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* bloque 3: share — ocupa el espacio restante, botones a la derecha */
.ax-post-meta__share {
  display: flex;
  gap: 5px;
  margin-left: auto;
}
.ax-post-meta__sbtn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--brs);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  text-decoration: none;
  transition: border-color .15s, color .15s;
  cursor: pointer;
}
.ax-post-meta__sbtn:hover { border-color: var(--red); color: var(--red); }
/* ── SIDEBAR RELACIONADOS ─────────────────────────────── */
.ax-related-sidebar {
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.ax-related-sidebar__hd {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--fnt);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ax-related-sidebar__hd::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 12px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}
.ax-related-sidebar__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brd);
  text-decoration: none;
  color: var(--txt);
  outline: none;
}
.ax-related-sidebar__item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.ax-related-sidebar__thumb {
  width: 54px;
  height: 46px;
  min-width: 54px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--g100);
  display: block;
}
.ax-related-sidebar__thumb--ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ax-related-sidebar__body { flex: 1; min-width: 0; display: block; }
.ax-related-sidebar__title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--txt);
  line-height: 1.3;
  margin-bottom: 3px;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .15s;
}
.ax-related-sidebar__item:hover .ax-related-sidebar__title { color: var(--red); }
.ax-related-sidebar__date {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--fnt);
  display: block;
}
/* ── NEWSLETTER SIDEBAR ───────────────────────────────── */
.ax-nl-sidebar {
  background: var(--nvy);
  border: 1px solid rgba(198,40,40,.35);
  border-radius: 8px;
  padding: 16px;
}
.ax-nl-sidebar__label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.ax-nl-sidebar__desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  line-height: 1.55;
}
.ax-nl-sidebar input[type="email"] {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  padding: 8px 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  outline: none;
  margin-bottom: 7px;
  display: block;
  box-sizing: border-box;
}
.ax-nl-sidebar input::placeholder { color: rgba(255,255,255,.35); }
.ax-nl-sidebar__btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  padding: 8px;
  border: none;
  border-radius: 2px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .15s;
}
.ax-nl-sidebar__btn:hover { background: #b71c1c; }

.ax-featured-img {
  width: 100%;
  position: relative;
  line-height: 0;
}
/* Ocultar cuando no hay imagen */
.ax-featured-img:not(:has(img)) { display: none; }
/* Cuando hay imagen */
.ax-featured-img:has(img) {
  background: var(--nvd);
  border-bottom: 3px solid var(--red);
  border-top: 3px solid var(--brd)
}
.ax-featured-img:has(img)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,rgba(0,0,0,0.12) 0px,rgba(0,0,0,0.12) 1px,transparent 1px,transparent 3px);
  pointer-events: none;
  z-index: 1;
}
.ax-featured-img figure.wp-block-post-featured-image {
  display: block;
  margin: 0;
  line-height: 0;
}
.ax-featured-img figure.wp-block-post-featured-image img,
.ax-featured-img img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* ── TOC ──────────────────────────────────────────────── */
.ax-toc {
  background: var(--nvy);
  border-radius: 6px;
  border-left: 4px solid var(--red);
  padding: 16px 18px;
  margin-bottom: 24px;
}
.ax-toc__hd {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ylw);
  margin-bottom: 12px;
}
.ax-toc__list { list-style: none; }
.ax-toc__list li {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  padding: 3px 0 3px 10px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.ax-toc__list a {
  color: rgba(255,255,255,.6);
  text-decoration: none !important;
  border: none !important;
  transition: color .15s;
}
.ax-toc__list a:hover { color: rgba(255,255,255,.9); }
.ax-toc__sub { padding-left: 22px !important; }
.ax-toc__sub a { font-size: 12px; color: rgba(255,255,255,.35); }

/* ── POST CONTENT ─────────────────────────────────────── */
.ax-post-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--txt);
}
.ax-post-content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--nvy);
  margin: 30px 0 12px;
  border-left: 4px solid var(--red);
  padding-left: 12px;
  line-height: 1.2;
}
.ax-post-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--nvy);
  margin: 22px 0 8px;
}
.ax-post-content p  { margin-bottom: 18px; }
.ax-post-content ul, .ax-post-content ol { padding-left: 20px; margin-bottom: 18px; }
.ax-post-content li { font-size: 14px; line-height: 1.75; margin-bottom: 5px; }
.ax-post-content a  { color: var(--blue); border-bottom: 1px solid rgba(21,101,192,.3); transition: border-color .15s; }
.ax-post-content a:hover { border-color: var(--blue); }
.ax-post-content img { max-width: 100%; height: auto; border-radius: 3px; }

/* Contención proporcional de todos los media y bloques dentro del single.
   !important necesario para ganar a: CSS inline de WP (max-width: 780px),
   inline style="width: Npx" del editor clásico, y width seteado via JS por lazy loaders. */
.ax-single__main img,
.ax-single__main figure,
.ax-single__main .wp-caption,
.ax-single__main video,
.ax-single__main iframe,
.ax-single__main table,
.ax-single__main .wp-block-image,
.ax-single__main .wp-block-embed__wrapper { max-width: 100% !important; }
.ax-single__main img { height: auto !important; }
.ax-post-content blockquote {
  border-left: 3px solid var(--red);
  padding: 12px 20px;
  background: var(--g50);
  margin: 24px 0;
  font-style: italic;
  color: var(--muted);
}
.ax-post-content code {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  background: var(--g100);
  padding: 2px 6px;
  border-radius: 2px;
}
.ax-post-content pre {
  background: var(--nvd);
  color: rgba(255,255,255,.85);
  padding: 20px;
  border-radius: 3px;
  overflow-x: auto;
  margin: 24px 0;
}
.ax-post-content pre code { background: none; padding: 0; color: inherit; }

/* ── SIDEBAR ──────────────────────────────────────────── */
.ax-sidebar-widget {
  background: var(--g50);
  border: 1px solid var(--brd);
  border-radius: 3px;
  padding: 20px;
  margin-bottom: 24px;
}
.ax-sidebar-widget__title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 14px;
}

/* ── PRODUCT CTA ──────────────────────────────────────── */
.ax-product-cta {
  background: var(--nvy);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 3px;
  padding: 20px;
  margin-bottom: 24px;
}
.ax-product-cta__eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ylw);
  margin-bottom: 8px;
}
.ax-product-cta__name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.ax-product-cta__price {
  font-family: 'Share Tech Mono', monospace;
  font-size: 20px;
  color: var(--ylw);
  margin-bottom: 14px;
}
.ax-product-cta__btn {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 11px;
  border-radius: 2px;
  transition: background .15s;
}
.ax-product-cta__btn:hover { background: var(--rdk); color: #fff; }

/* ── AUTHOR BIO (single) ──────────────────────────────── */
.ax-author-bio {
  background: var(--nvy);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  padding: 20px;
  margin-top: 48px;
}
.ax-author-bio__hd {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.ax-author-bio__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
  flex-shrink: 0;
  object-fit: cover;
}
.ax-author-bio__name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 2px;
}
.ax-author-bio__name a { color: inherit; }
.ax-author-bio__name a:hover { color: var(--red); }
.ax-author-bio__title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: 1.5px;
}
.ax-author-bio__desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 12px; }
.ax-author-bio__links { display: flex; gap: 7px; flex-wrap: wrap; }
.ax-author-bio__link {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  color: rgba(255,255,255,.45);
  transition: all .15s;
}
.ax-author-bio__link:hover { border-color: var(--red); color: var(--red); }
.ax-soc-ico { width: 14px; height: 14px; }

/* ── RELATED ARTICLES ─────────────────────────────────── */
.ax-related { margin-top: 56px; }
.ax-related__title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brd);
}
.ax-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── AUTHOR PAGE ──────────────────────────────────────── */
.ax-author-hero {
  background: linear-gradient(135deg, var(--nvy) 0%, var(--nvd) 100%);
  border-bottom: 3px solid var(--red);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.ax-author-hero__in {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
}
.ax-author-hero__av {
  flex-shrink: 0;
  align-self: start;
}
.ax-author-hero__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.1);
  object-fit: cover;
  display: block;
}
.ax-author-hero__name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 5px;
}
.ax-author-hero__title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--ylw);
  margin-bottom: 12px;
}
.ax-author-hero__bio { font-size: 14px; color: rgba(255,255,255,.58); max-width: 500px; margin-bottom: 16px; }
.ax-author-hero__socials { display: flex; gap: 7px; flex-wrap: wrap; }
.ax-author-hero__abtn {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: .5px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  color: rgba(255,255,255,.45);
  transition: all .15s;
}
.ax-author-hero__abtn:hover { border-color: var(--red); color: var(--red); }
.ax-author-hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.ax-author-hero__stats {
  display: flex;
  flex-direction: row;
  gap: 28px;
  text-align: center;
}
.ax-author-stat { text-align: center; }
.ax-author-stat__num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 30px;
  color: var(--ylw);
  display: block;
  line-height: 1;
}
.ax-author-stat__label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.28);
  display: block;
  margin-top: 4px;
}

/* ── FAV GAMES ────────────────────────────────────────── */
.ax-fav-games { width: 230px; }
.ax-fav-games__hd {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.35);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ax-fav-games__hd::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--ylw);
  border-radius: 1px;
  flex-shrink: 0;
}
.ax-fav-game {
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,221,0,.18);
  border-radius: 4px;
  padding: 9px 12px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}
.ax-fav-game:last-child { margin-bottom: 0; }
.ax-fav-game:hover { border-color: rgba(255,221,0,.45); }
.ax-fav-game::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,rgba(0,0,0,.12) 0px,rgba(0,0,0,.12) 1px,transparent 1px,transparent 3px);
  pointer-events: none;
}
.ax-fav-game__rank {
  font-family: 'Share Tech Mono', monospace;
  font-size: 18px;
  color: var(--ylw);
  min-width: 22px;
  text-align: center;
  line-height: 1;
  text-shadow: 0 0 8px rgba(255,221,0,.5);
  flex-shrink: 0;
}
.ax-fav-game__info { flex: 1; min-width: 0; }
.ax-fav-game__name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ax-fav-game__meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,.38);
  letter-spacing: .5px;
  margin-top: 2px;
}

/* ── AUTHOR TABS BAR ──────────────────────────────────── */
.ax-author-tabs-bar { border-top: 1px solid var(--brd); }
.ax-author-sec-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  margin-bottom: 22px;
}

/* ── AUTHOR TABS ──────────────────────────────────────── */
.ax-author-tabs {}
.ax-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--brd);
  margin-bottom: 32px;
}
.ax-tab {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.ax-tab:hover { color: var(--txt); }
.ax-tab.on { color: var(--red); border-bottom-color: var(--red); }

/* ── CATEGORY PAGE ────────────────────────────────────── */
.ax-cat-header {
  background: var(--nvy);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.ax-cat-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.ax-cat-header__in {
  position: relative;
  z-index: 1;
}
.ax-cat-header__eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ylw);
  margin-bottom: 10px;
}
.ax-cat-header__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}
.ax-cat-header__count {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
}

/* ── NO POSTS ─────────────────────────────────────────── */
.ax-no-posts {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--fnt);
  padding: 40px;
  text-align: center;
  grid-column: 1/-1;
}

/* ── FOOTER ───────────────────────────────────────────── */
.ax-pacman-strip {
  background: var(--nvd);
  border-top: 2px solid rgba(198,40,40,0.5);
  height: 32px;
  overflow: hidden;
  position: relative;
}
#ax-pacman-canvas { display: block; width: 100%; height: 32px; }

.ax-footer {
  background: var(--nvd);
  padding: 36px 0 0;
}
.ax-footer__grid {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.ax-footer__logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 10px;
}
.ax-footer__logo span { color: var(--blue); }
.ax-footer__desc {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ax-footer__socials { display: flex; gap: 7px; }
.ax-footer__soc {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  color: rgba(255,255,255,.4);
  transition: all .15s;
}
.ax-footer__soc:hover { border-color: var(--red); color: var(--red); }
.ax-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
/* Reset wp-block-group wrapper inside columns */
.ax-footer__cols .wp-block-group {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ax-footer__col h4,
.ax-footer__col .wp-block-html h4 {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.4) !important;
  margin-bottom: 12px;
  margin-top: 0;
  text-transform: uppercase;
}
/* Reset WordPress block wrappers inside footer columns */
.ax-footer__col .wp-block-html { margin: 0; padding: 0; }
.ax-footer__col .wp-block-navigation {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  align-items: flex-start !important;
}
.ax-footer__col .wp-block-navigation__container {
  display: block !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
  flex-direction: unset !important;
}
.ax-footer__col .wp-block-navigation-item {
  list-style: none;
  padding: 0;
  margin: 0;
  float: none !important;
}
.ax-footer__col a,
.ax-footer__col .wp-block-navigation-item__content {
  display: block;
  font-size: 12px !important;
  color: rgba(255,255,255,.3) !important;
  margin-bottom: 7px;
  padding: 0 !important;
  background: none !important;
  transition: color .15s;
}
.ax-footer__col a:hover,
.ax-footer__col .wp-block-navigation-item__content:hover { color: rgba(255,255,255,.65) !important; }
.ax-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ax-footer__copy {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* ── ICONS ────────────────────────────────────────────── */
.ax-icon { width: 16px; height: 16px; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1023px) {
  .ax-lang-sel, .ax-btn-t { display: none; }
  .ax-srch { min-width: 120px; }
  .ax-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .ax-footer__cols { grid-template-columns: repeat(3, 1fr); }
  .ax-single { grid-template-columns: 1fr; }
  /* Hero: quitar panel imagen, texto a full ancho */
  .ax-hero__in { grid-template-columns: 1fr; }
  .ax-hero__img { display: none; }
  .ax-hero__c { padding: 36px 20px; }
  .ax-hero__ttl { font-size: 30px; }
  .ax-single__sidebar { position: static; }
  .ax-newsletter__in { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 16px; }
  .ax-newsletter__form-wrap { width: 100%; }
  .ax-newsletter__form { flex-direction: column; }
  .ax-newsletter__form input { width: 100%; }
  .ax-newsletter__form button { width: 100%; text-align: center; }
  .ax-newsletter__title { font-size: 20px; }
}
@media (max-width: 900px) {
  .ax-author-hero__in { grid-template-columns: auto 1fr; }
  .ax-author-hero__right { display: none; }
}
@media (max-width: 767px) {
  .ax-hdr-links, .ax-lang-sel, .ax-btn-t, .ax-srch { display: none; }
  .ax-srch-ico { display: flex; }
  .ax-hdr-right { gap: 8px; }
  /* Logo centrado absolutamente para que no dependa de los anchos laterales */
  .ax-header__inner { position: relative; }
  .ax-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: none;
  }
  .ax-header__logo p { margin: 0; }
  .ax-logo__main { font-size: 22px; }
  /* Post meta: evitar overflow horizontal */
  .ax-post-meta { flex-wrap: wrap; gap: 8px 10px; }
  .ax-post-meta__share { margin-left: auto; }
  /* Imágenes flotadas del editor clásico: quitar float en móvil */
  .ax-single__main .alignleft,
  .ax-single__main .alignright {
    float: none;
    display: block;
    margin: 0 auto 18px !important;
  }
  /* Hero mobile */
  .ax-hero__in { min-height: auto; }
  .ax-hero__c { padding: 28px 16px; }
  .ax-hero__ttl { font-size: 26px; }
  .ax-hero__exc { font-size: 13px; }
  .ax-score-bar .ax-s1up, .ax-score-bar .ax-s2up { display: none; }
  .ax-score-bar { justify-content: center; }
  .ax-nav-link { font-size: 11px; padding: 9px 12px; letter-spacing: .5px; }
  .ax-drawer { width: min(300px, 90vw); }
  .ax-hi-score { display: none; }
  .ax-sec-hd { flex-wrap: wrap; gap: 8px; }
  .ax-flt-wrap { gap: 8px; }
  .ax-flt-lbl { display: none; }
  .ax-flt { border-radius: 0; border-left: none; border-right: none; width: 100%; }
  .ax-ft { font-size: 11px; padding: 8px 12px; }
  .ax-grid { grid-template-columns: 1fr; }
  .ax-related__grid { grid-template-columns: 1fr; }
  .ax-footer__grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px 24px; }
  .ax-footer__cols { grid-template-columns: 1fr 1fr; gap: 18px; }
  .ax-footer__bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; padding: 14px 16px; }
  .ax-author-hero__in { grid-template-columns: 1fr; gap: 20px; }
  .ax-author-hero__avatar { width: 80px; height: 80px; }
  .ax-author-hero__name { font-size: 28px; }
  .ax-newsletter__form { flex-direction: column; }
}
@media (max-width: 479px) {
  .ax-footer__cols { grid-template-columns: 1fr; }
  .ax-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ax-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-related__grid { grid-template-columns: repeat(2, 1fr); }
}
