/* ==========================================================================
   AOMania · hoja de estilo del rediseño medieval
   Piedra, madera, hierro y pergamino. Colores heráldicos como acento.
   ========================================================================== */

:root {
  --piedra-1: #2b231d;
  --piedra-2: #191310;
  --madera-1: #4a3120;
  --madera-2: #2a1a10;
  --hierro-1: #3b3833;
  --hierro-2: #171513;
  --pergamino-1: #f0e2c0;
  --pergamino-2: #dcc99f;
  --oro-claro: #f4dc9c;
  --oro: #c9a24a;
  --oro-oscuro: #8a6521;
  --sangre: #8c2a30;
  --sangre-oscura: #460f13;
  --azul: #2c4a72;
  --verde: #3f6b3a;
  --crema: #f6e9cd;
  --crema-apagada: #c3b096;
  --tinta: #2c2014;
  --negro: #16100b;
  --serif: 'EB Garamond', Georgia, serif;
  --display: 'Cinzel Decorative', Georgia, serif;
  --titulo: 'Cinzel', Georgia, serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

.ao-body {
  position: relative;
  min-height: 100vh;
  background-color: var(--piedra-1);
  background-image: linear-gradient(180deg, var(--piedra-1) 0%, var(--piedra-2) 100%);
  font-family: var(--serif);
  color: #efe4d2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Capas de textura --------------------------------------------------------- */
.ao-muro,
.ao-grano {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ao-muro {
  background-image: url('../img/stone.png');
  background-size: 520px 520px;
  background-repeat: repeat;
  opacity: .12;
}
/* Capa de ruido eliminada: el filtro SVG feTurbulence a pantalla completa
   era el causante principal del scroll a tirones (rasterizado caro). */
.ao-grano {
  display: none;
}

.ao-main { position: relative; z-index: 1; }
.ao-container { max-width: 1300px; margin: 0 auto; padding: 0 30px; }

a { color: var(--oro); text-decoration: none; transition: color .16s ease; }
a:hover { color: var(--oro-claro); }

/* Tipografía compartida ---------------------------------------------------- */
.ao-eyebrow {
  font-family: var(--titulo);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9c8f77;
  margin: 0 0 8px;
}
.ao-eyebrow--gold { color: var(--oro-claro); font-size: 11px; letter-spacing: .24em; }
.ao-eyebrow--sepia { color: #7a5f2c; }

.ao-titulo {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 52px);
  margin: 0;
  color: var(--crema);
  text-shadow: 0 2px 0 rgba(0,0,0,.5);
}
.ao-intro {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--crema-apagada);
  margin: 0;
  max-width: 54ch;
  text-wrap: pretty;
}
.ao-intro--centro { margin: 0 auto; }

/* Botones ------------------------------------------------------------------ */
.ao-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--titulo);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 20px;
  border: 0;
  cursor: pointer;
  transition: filter .16s ease, transform .16s ease, box-shadow .16s ease;
}
.ao-btn--lg { font-size: 15px; padding: 18px 32px; font-weight: 700; }
.ao-btn--gold {
  color: #2a1a0c;
  font-weight: 700;
  background: linear-gradient(180deg, var(--oro-claro) 0%, var(--oro) 48%, var(--oro-oscuro) 100%);
  box-shadow: inset 0 1px 0 rgba(255,250,225,.8), inset 0 -2px 0 rgba(70,45,8,.5), 0 0 0 1px var(--negro), 0 6px 14px rgba(0,0,0,.5);
}
.ao-btn--gold:hover { filter: brightness(1.08); transform: translateY(-1px); color: #2a1a0c; }
.ao-btn--madera {
  color: var(--crema);
  background: linear-gradient(180deg, #463020 0%, #241710 100%);
  box-shadow: inset 0 1px 0 rgba(255,220,170,.14), 0 0 0 1px var(--negro), 0 8px 18px rgba(0,0,0,.45);
}
.ao-btn--madera:hover { color: var(--crema); box-shadow: inset 0 1px 0 rgba(255,220,170,.2), 0 0 0 1px var(--oro-oscuro), 0 8px 18px rgba(0,0,0,.5); }
.ao-btn--sangre {
  color: #fff4de;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 24px;
  background: linear-gradient(180deg, var(--sangre) 0%, #6e1d22 50%, var(--sangre-oscura) 100%);
  box-shadow: inset 0 1px 0 rgba(255,210,190,.2), 0 0 0 1px #360b0e, 0 12px 26px rgba(70,15,19,.45);
}
.ao-btn--sangre:hover { filter: brightness(1.12); transform: translateY(-1px); color: #fff4de; }

/* Cabecera ----------------------------------------------------------------- */
.ao-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #3a2617;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,.35) 0 2px, rgba(255,220,160,.03) 2px 7px, rgba(0,0,0,.18) 7px 13px),
    linear-gradient(180deg, var(--madera-1) 0%, var(--madera-2) 100%);
  border-bottom: 4px solid var(--negro);
  box-shadow: 0 10px 28px rgba(0,0,0,.6);
}
.ao-header__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 26px;
}
.ao-brand { display: flex; align-items: center; gap: 14px; color: var(--crema); }
.ao-brand__shield { height: 44px; width: auto; display: block; filter: drop-shadow(0 3px 8px rgba(0,0,0,.6)); }
.ao-brand__text { display: flex; flex-direction: column; }
.ao-brand__logo { height: 26px; width: auto; display: block; filter: drop-shadow(0 2px 3px rgba(0,0,0,.6)); }
.ao-brand__tagline {
  font-family: var(--titulo);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #a98f68;
  margin-top: 6px;
}
.ao-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.ao-nav__link {
  font-family: var(--titulo);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d9bd94;
  padding: 10px 15px;
  white-space: nowrap;
}
.ao-nav__link:hover { color: var(--crema); background: rgba(0,0,0,.28); }
.ao-nav__link.is-active {
  color: var(--crema);
  background: linear-gradient(180deg, #5b3d26, #33200f);
  box-shadow: inset 0 1px 0 rgba(255,220,170,.16), 0 0 0 1px var(--negro);
}
.ao-nav__cta { margin-left: 10px; }

.ao-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(201,162,74,.4);
  cursor: pointer;
}
.ao-burger span { display: block; width: 22px; height: 2px; background: var(--oro-claro); }

/* Banners ------------------------------------------------------------------ */
.ao-banner { position: relative; overflow: hidden; }
.ao-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ao-banner__velo { position: absolute; inset: 0; display: block; }
.ao-banner--hero { height: clamp(190px, 22vw, 320px); }
.ao-banner--hero img { object-position: 50% 42%; }
.ao-banner--sub { height: clamp(220px, 24vw, 340px); display: grid; place-items: center; }
.ao-banner--sub img { object-position: 50% 42%; }
.ao-banner__titulo { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.ao-banner__velo--hero { background: linear-gradient(180deg, rgba(16,12,10,.15) 0%, rgba(16,12,10,.1) 55%, var(--piedra-1) 100%); }
.ao-banner--noticias {
  height: clamp(250px, 27vw, 350px);
  margin-bottom: 26px;
  box-shadow: 0 0 0 1px var(--negro), 0 18px 44px rgba(0,0,0,.5);
}
.ao-banner--noticias img { object-position: 50% 12%; }
.ao-banner--noticias .ao-banner__velo { background: linear-gradient(180deg, rgba(16,12,10,.08) 0%, rgba(16,12,10,.1) 50%, rgba(36,29,24,.9) 100%); }

/* Banda de día de bonificación --------------------------------------------- */
.ao-banda {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 9px 0;
  background: linear-gradient(180deg, #6e1d22, var(--sangre-oscura));
  box-shadow: inset 0 1px 0 rgba(255,210,190,.18), 0 6px 18px rgba(0,0,0,.45);
}
.ao-banda__texto {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--titulo);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oro-claro);
  animation: ao-crawl 26s linear infinite;
}
@keyframes ao-crawl {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Hero --------------------------------------------------------------------- */
.ao-hero { position: relative; padding: 34px 0 0; }
.ao-hero__inner { text-align: center; }
.ao-hero__escudo {
  height: clamp(96px, 11vw, 148px);
  width: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.7)) drop-shadow(0 0 40px rgba(240,180,80,.18));
}
.ao-hero__titulo {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6.6vw, 86px);
  line-height: 1.02;
  margin: 0 0 8px;
  color: var(--crema);
  text-shadow: 0 3px 0 rgba(0,0,0,.55), 0 0 60px rgba(240,180,80,.18);
}
.ao-hero__titulo span { color: #f0d698; }
.ao-hero__titulo--sm { font-size: clamp(32px, 4.6vw, 60px); }
.ao-hero__sub {
  font-family: var(--titulo);
  font-size: clamp(15px, 1.7vw, 22px);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #c08d6a;
  margin-bottom: 26px;
}
.ao-hero__texto {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
  color: #dbc7a4;
  max-width: 62ch;
  margin: 0 auto 34px;
  text-wrap: pretty;
}
.ao-hero__acciones { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.ao-hero__nota {
  font-family: var(--titulo);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9a7f5e;
  margin-top: 16px;
}
.ao-antorcha {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ao-torch 3.6s ease-in-out infinite;
}
.ao-antorcha--izq { top: 40px; left: 6%; width: 180px; height: 180px; background: radial-gradient(circle, rgba(240,180,80,.22), transparent 70%); }
.ao-antorcha--der { top: 90px; right: 8%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(240,180,80,.18), transparent 70%); animation-duration: 4.1s; }
@keyframes ao-torch {
  0%, 100% { opacity: .5; transform: scale(1); }
  45% { opacity: .95; transform: scale(1.06); }
  72% { opacity: .66; transform: scale(.98); }
}

.ao-divisor { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 30px; }
.ao-divisor__linea { width: min(240px, 26vw); height: 1px; background: linear-gradient(90deg, transparent, var(--oro-oscuro)); }
.ao-divisor__linea:last-child { background: linear-gradient(270deg, transparent, var(--oro-oscuro)); }
.ao-divisor__rombos { display: flex; align-items: center; gap: 9px; }
.ao-rombo { display: block; width: 9px; height: 9px; transform: rotate(45deg); box-shadow: 0 0 0 1px var(--oro-oscuro); }
.ao-rombo--azul { background: var(--azul); }
.ao-rombo--rojo { width: 11px; height: 11px; background: var(--sangre); box-shadow: 0 0 0 1px var(--oro); }
.ao-rombo--verde { background: var(--verde); }

/* Secciones y rejillas ----------------------------------------------------- */
.ao-seccion { position: relative; padding: 70px 0 80px; scroll-margin-top: 120px; }
.ao-seccion--pegada { padding: 52px 0 0; }
.ao-seccion__head { margin-bottom: 36px; }
.ao-seccion__head--centro { text-align: center; }
.ao-seccion__head--centro .ao-titulo { margin-bottom: 12px; }
.ao-seccion__head--fila { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.ao-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; align-items: start; }
.ao-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }

/* Ventanal de arco --------------------------------------------------------- */
.ao-ventanal {
  position: relative;
  padding: 16px;
  background: linear-gradient(180deg, #4a3d33 0%, #241c17 100%);
  box-shadow: 0 0 0 1px var(--negro), 0 20px 50px rgba(0,0,0,.6);
}
.ao-ventanal__arco {
  position: relative;
  height: 100%;
  min-height: 360px;
  border-radius: 210px 210px 4px 4px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #6b552f, inset 0 0 60px rgba(0,0,0,.7);
}
.ao-ventanal__arco img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; display: block; }
.ao-ventanal__velo { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(16,12,10,.85) 100%); }
.ao-ventanal__pie { position: absolute; left: 22px; right: 22px; bottom: 20px; }
.ao-ventanal__titulo { font-family: var(--titulo); font-weight: 600; font-size: 19px; color: var(--crema); }

/* Placa de hierro ---------------------------------------------------------- */
.ao-iron {
  position: relative;
  padding: 30px;
  background: linear-gradient(180deg, var(--hierro-1) 0%, #22201d 55%, var(--hierro-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255,240,210,.12), 0 0 0 1px #0f0d0b, 0 22px 54px rgba(0,0,0,.6);
}
.ao-iron::after {
  content: '';
  position: absolute;
  inset: 9px;
  box-shadow: inset 0 0 0 1px rgba(201,162,74,.22);
  pointer-events: none;
}
.ao-iron__rivet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d3c3a4, #4a453b);
  z-index: 2;
}
.ao-iron__rivet--tl { top: 12px; left: 12px; }
.ao-iron__rivet--tr { top: 12px; right: 12px; }
.ao-iron__rivet--bl { bottom: 12px; left: 12px; }
.ao-iron__rivet--br { bottom: 12px; right: 12px; }
.ao-ventanal .ao-iron__rivet { width: 9px; height: 9px; top: 8px; }
.ao-ventanal .ao-iron__rivet--bl,
.ao-ventanal .ao-iron__rivet--br { top: auto; bottom: 8px; }
.ao-ventanal .ao-iron__rivet--tl, .ao-ventanal .ao-iron__rivet--bl { left: 8px; }
.ao-ventanal .ao-iron__rivet--tr, .ao-ventanal .ao-iron__rivet--br { right: 8px; }

.ao-estado {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,162,74,.2);
  margin-bottom: 20px;
}
.ao-estado__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7cbe6e;
  animation: ao-beat 2.4s ease-out infinite;
}
.ao-estado__dot.is-off { background: #c9787c; animation: none; }
.ao-estado__texto { font-family: var(--titulo); font-weight: 600; letter-spacing: .12em; color: var(--crema); }
@keyframes ao-beat {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,190,110,.5); }
  50% { box-shadow: 0 0 0 8px rgba(124,190,110,0); }
}

.ao-cifra {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(52px, 6.4vw, 72px);
  line-height: 1.05;
  color: #f0d698;
  text-shadow: 0 2px 0 rgba(0,0,0,.5), 0 0 34px rgba(240,180,80,.24);
}
.ao-iron__host { font-family: var(--serif); font-size: 15px; color: #a2947c; margin: 0 0 22px; }
.ao-multis { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,0,0,.5); }
.ao-multi { padding: 16px; background: rgba(255,240,210,.045); }
.ao-multi .ao-eyebrow { font-size: 9px; margin-bottom: 5px; }
.ao-multi__valor { font-family: var(--titulo); font-size: 19px; color: var(--crema); }

.ao-castillos { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(201,162,74,.2); }
.ao-castillos__lista { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ao-castillo {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  background: rgba(0,0,0,.35);
  box-shadow: inset 0 0 0 1px rgba(201,162,74,.14);
}
.ao-castillo__nombre { font-family: var(--titulo); font-size: 13px; letter-spacing: .06em; color: #e6d5b4; }
.ao-castillo__clan { font-family: var(--serif); font-size: 16px; color: #c9787c; }

/* Podio -------------------------------------------------------------------- */
.ao-podio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}
.ao-podio__escudo {
  position: relative;
  padding: 26px 20px 44px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 50% 100%, 0 74%);
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}
.ao-podio__escudo--plata { background: linear-gradient(180deg, #31435c 0%, #1a212c 100%); }
.ao-podio__escudo--bronce { background: linear-gradient(180deg, #33452c 0%, #1b2318 100%); }
.ao-podio__escudo--oro {
  padding: 26px 22px 52px;
  background: linear-gradient(180deg, var(--sangre) 0%, #5a1519 55%, #360b0e 100%);
  box-shadow: 0 20px 54px rgba(140,42,48,.3), 0 16px 40px rgba(0,0,0,.55);
}
.ao-podio__img { height: 56px; width: auto; margin: 0 auto 14px; display: block; filter: drop-shadow(0 6px 14px rgba(0,0,0,.55)); }
.ao-podio__puesto {
  font-family: var(--titulo);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .14em;
  line-height: 1;
  color: #bcd2ea;
  text-shadow: 0 2px 0 rgba(0,0,0,.5);
}
.ao-podio__escudo--bronce .ao-podio__puesto { color: #b9d3ab; }
.ao-podio__escudo--oro .ao-podio__puesto { font-size: 42px; color: var(--oro-claro); }
.ao-podio__linea { display: block; width: 34px; height: 1px; background: #6b552f; margin: 14px auto; }
.ao-podio__escudo--oro .ao-podio__linea { width: 44px; background: rgba(244,220,156,.5); margin: 16px auto; }
.ao-podio__nick { font-family: var(--titulo); font-weight: 600; font-size: 20px; margin: 0; color: var(--crema); }
.ao-podio__escudo--oro .ao-podio__nick { font-size: 25px; font-weight: 700; color: #fff4de; }
.ao-podio__clase { font-family: var(--serif); font-size: 15px; color: #a2947c; margin: 6px 0 10px; }
.ao-podio__escudo--oro .ao-podio__clase { font-size: 16px; color: #f0c9a0; }
.ao-podio__dato { font-family: var(--titulo); font-size: 14px; color: #e39a9e; }
.ao-podio__escudo--oro .ao-podio__dato { font-size: 15px; color: var(--oro-claro); }

/* Pergamino y tabla -------------------------------------------------------- */
.ao-pergamino { display: flex; flex-direction: column; }
.ao-pergamino__borde { height: 22px; margin: 0 -6px; }
.ao-pergamino__borde--top {
  background: linear-gradient(180deg, #c2a878 0%, #8a7248 60%, #6d5836 100%);
  box-shadow: 0 6px 14px rgba(0,0,0,.45);
}
.ao-pergamino__borde--bottom {
  background: linear-gradient(0deg, #c2a878 0%, #8a7248 60%, #6d5836 100%);
  box-shadow: 0 -6px 14px rgba(0,0,0,.4);
}
.ao-pergamino__hoja {
  position: relative;
  padding: 34px 0 24px;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(120,88,40,.14), transparent 60%),
    radial-gradient(120% 60% at 50% 100%, rgba(120,88,40,.16), transparent 60%),
    linear-gradient(180deg, var(--pergamino-1) 0%, #e6d5ae 45%, var(--pergamino-2) 100%);
  box-shadow: inset 0 0 60px rgba(140,105,50,.18), 0 22px 50px rgba(0,0,0,.5);
}
.ao-pergamino__hoja::after {
  content: '';
  position: absolute;
  inset: 12px;
  box-shadow: inset 0 0 0 1px rgba(90,64,26,.3), inset 0 0 0 4px rgba(90,64,26,.08);
  pointer-events: none;
}
.ao-pergamino__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 0 40px 20px;
}
.ao-pergamino__titulo { font-family: var(--titulo); font-weight: 700; font-size: 24px; color: var(--tinta); }

.ao-tabs { display: flex; box-shadow: 0 0 0 1px rgba(90,64,26,.4); }
.ao-tab {
  font-family: var(--titulo);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4a3720;
  background: transparent;
  border: 0;
  padding: 10px 18px;
  cursor: pointer;
}
.ao-tab + .ao-tab { border-left: 1px solid rgba(90,64,26,.4); }
.ao-tab:hover { background: rgba(90,64,26,.12); }
.ao-tab.is-active { color: var(--crema); background: linear-gradient(180deg, #6e1d22, var(--sangre-oscura)); }

.ao-tabpanel.is-hidden { display: none; }

.ao-tabla { width: 100%; border-collapse: collapse; }
.ao-tabla th {
  text-align: left;
  padding: 11px 14px;
  font-family: var(--titulo);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6d5124;
  font-weight: 600;
  background: rgba(90,64,26,.12);
}
.ao-tabla td { padding: 14px; border-bottom: 1px solid rgba(90,64,26,.22); }
.ao-tabla tbody tr:hover { background: rgba(140,42,48,.07); }
.ao-tabla__pos { padding-left: 40px !important; font-family: var(--titulo); font-weight: 700; font-size: 15px; letter-spacing: .12em; color: var(--oro-oscuro); }
.ao-tabla__ult { padding-right: 40px !important; }
.ao-tabla__num { text-align: right; font-family: var(--titulo); color: #3f3120; }
.ao-tabla__nick { font-family: var(--titulo); font-weight: 600; font-size: 17px; color: var(--tinta); }
.ao-tabla__clase { font-family: var(--serif); font-size: 17px; color: #5c4a2e; }
.ao-tabla__muertes { font-weight: 600; color: #7a2126; }
.ao-tabla__vacia { font-family: var(--serif); font-size: 17px; color: #5c4a2e; padding: 10px 40px 20px; margin: 0; }

/* Carteles de galería ------------------------------------------------------ */
.ao-cartel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px;
  background-color: #3a2617;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,.3) 0 2px, rgba(255,220,160,.03) 2px 7px, rgba(0,0,0,.16) 7px 13px),
    linear-gradient(180deg, var(--madera-1), #291a10);
  box-shadow: 0 0 0 1px var(--negro), 0 18px 44px rgba(0,0,0,.5);
}
.ao-cartel__marco {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: 130px 130px 3px 3px;
  box-shadow: inset 0 0 0 1px #6b552f;
}
.ao-cartel__marco img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ao-cartel__velo {
  position: absolute;
  inset: 0;
  border-radius: 130px 130px 3px 3px;
  box-shadow: inset 0 -40px 50px -20px rgba(16,12,10,.9), inset 0 0 0 1px rgba(201,162,74,.35);
}
.ao-cartel__pie { padding: 18px 8px 6px; }
.ao-cartel__titulo { font-family: var(--titulo); font-weight: 600; font-size: 19px; line-height: 1.25; margin: 0; color: var(--crema); }

/* Pergamino de descarga ---------------------------------------------------- */
.ao-parchment {
  position: relative;
  padding: 36px 36px 32px;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(120,88,40,.12), transparent 60%),
    linear-gradient(160deg, #f2e5c4 0%, #e6d5ae 55%, #d6c298 100%);
  box-shadow: 0 0 0 1px var(--oro-oscuro), 0 24px 60px rgba(0,0,0,.55);
}
.ao-parchment::after {
  content: '';
  position: absolute;
  inset: 10px;
  box-shadow: inset 0 0 0 1px rgba(90,64,26,.3);
  pointer-events: none;
}
.ao-parchment__titulo { font-family: var(--titulo); font-weight: 700; font-size: 27px; color: var(--tinta); line-height: 1.2; }
.ao-parchment__sub { font-family: var(--serif); font-size: 17px; line-height: 1.55; color: #5c4a2e; margin: 8px 0 0; }
.ao-parchment__nota {
  margin: 20px 0 0;
  padding-top: 18px;
  padding-right: 84px;
  border-top: 1px solid rgba(90,64,26,.3);
  font-family: var(--serif);
  font-size: 16px;
  color: #5c4a2e;
}
.ao-parchment__nota a { color: #7a2126; }
.ao-parchment__nota a:hover { color: var(--sangre-oscura); }
.ao-descargas { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 0; }
.ao-sello {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 34% 28%, #a82f35, #3d0f13);
  box-shadow: 0 0 0 1px var(--oro-oscuro), 0 10px 22px rgba(40,10,6,.5);
  z-index: 2;
  pointer-events: none;
}
.ao-sello img { height: 52px; width: auto; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,.6)); }

/* Pasos -------------------------------------------------------------------- */
.ao-iron--pasos { padding: 30px 32px; }
.ao-pasos { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.ao-paso { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; }
.ao-paso__n {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-family: var(--titulo);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .1em;
  color: #f0d698;
  background: linear-gradient(180deg, #4a3d33, #221c17);
  box-shadow: 0 0 0 1px #6b552f, 0 4px 10px rgba(0,0,0,.5);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.ao-paso__titulo { font-family: var(--titulo); font-weight: 600; font-size: 18px; margin: 0 0 6px; color: var(--crema); }
.ao-paso__texto { font-family: var(--serif); font-size: 17px; line-height: 1.5; color: var(--crema-apagada); margin: 0; text-wrap: pretty; }
.ao-paso__enlaces {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(201,162,74,.2);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}

/* Pie ---------------------------------------------------------------------- */
.ao-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #1a1512;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.5) 0 3px, rgba(255,255,255,.01) 3px 52px),
    linear-gradient(180deg, #211a15, #120d0b);
  border-top: 4px solid #0f0b09;
}
.ao-footer__marca { position: absolute; right: 4%; top: -30px; height: 280px; width: auto; opacity: .08; pointer-events: none; }
.ao-footer__inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 46px 30px 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.ao-footer__logo { height: 30px; width: auto; display: block; margin-bottom: 14px; opacity: .95; }
.ao-footer__texto { font-family: var(--serif); font-size: 17px; color: #a2947c; margin: 0; max-width: 44ch; text-wrap: pretty; }
.ao-footer__links { display: flex; flex-direction: column; gap: 9px; font-family: var(--serif); font-size: 17px; }
.ao-footer__legal { border-top: 1px solid rgba(201,162,74,.14); }
.ao-footer__legal > * { display: block; }
.ao-footer__legal {
  font-family: var(--titulo);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6d5f4c;
}
.ao-footer__legal span { display: inline-block; }
.ao-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 30px;
}

/* Páginas interiores: aviso, redes ----------------------------------------- */
.ao-aviso {
  margin-top: 40px;
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(180deg, rgba(140,42,48,.22), rgba(70,15,19,.3));
  box-shadow: inset 0 0 0 1px rgba(201,162,74,.24), 0 14px 34px rgba(0,0,0,.4);
}
.ao-aviso p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: #e2d0b2;
  margin: 0;
  max-width: 62ch;
  text-wrap: pretty;
}

.ao-redes { display: flex; flex-wrap: wrap; gap: 10px; }
.ao-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--titulo);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crema);
  padding: 12px 18px;
  background: linear-gradient(180deg, #463020, #241710);
  box-shadow: 0 0 0 1px var(--negro);
}
.ao-red:hover { color: var(--crema); box-shadow: 0 0 0 1px var(--oro-oscuro); }

/* Reglamento --------------------------------------------------------------- */
.ao-reglas { display: flex; flex-direction: column; gap: 22px; }
.ao-regla { padding: 30px 32px; }
.ao-regla__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(201,162,74,.2);
}
.ao-regla__titulo { font-family: var(--titulo); font-weight: 600; font-size: 22px; margin: 0; color: var(--crema); }
.ao-regla__lista { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ao-regla__lista li {
  position: relative;
  padding-left: 26px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--crema-apagada);
  text-wrap: pretty;
}
.ao-regla__lista li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--sangre);
  box-shadow: 0 0 0 1px var(--oro-oscuro);
}

/* Staff -------------------------------------------------------------------- */
.ao-staff { align-items: stretch; }
.ao-miembro { display: grid; grid-template-columns: 92px 1fr; gap: 22px; align-items: start; padding: 30px 32px; }
.ao-miembro__escudo {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 34% 28%, #4a3d33, #1c1712);
  box-shadow: 0 0 0 1px #6b552f, 0 6px 16px rgba(0,0,0,.5);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.ao-miembro__escudo img { height: 54px; width: auto; display: block; }
.ao-miembro__nick { font-family: var(--titulo); font-weight: 700; font-size: 24px; margin: 0; color: var(--crema); }
.ao-miembro__rango { font-family: var(--titulo); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #c9787c; margin-top: 4px; }
.ao-miembro__texto { font-family: var(--serif); font-size: 17px; line-height: 1.55; color: var(--crema-apagada); margin: 12px 0 0; text-wrap: pretty; }

/* Donaciones --------------------------------------------------------------- */
.ao-tabs--centro { justify-content: center; width: fit-content; margin: 0 auto 8px; }
.ao-tabs--centro .ao-tab { color: #d9bd94; padding: 13px 24px; }
.ao-tabs--centro .ao-tab:hover { background: rgba(0,0,0,.28); }
.ao-tabs--centro .ao-tab.is-active { color: var(--crema); }
.ao-tabpanel__nota { margin: 0 auto 30px; text-align: center; font-size: 17px; }
.ao-oferta { display: flex; flex-direction: column; padding: 28px 26px 26px; }
.ao-oferta__nombre { font-family: var(--titulo); font-weight: 700; font-size: 22px; margin: 0; color: var(--tinta); }
.ao-oferta__precio {
  font-family: var(--display);
  font-weight: 900;
  font-size: 34px;
  color: #7a2126;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(90,64,26,.3);
}
.ao-oferta__btn { margin-top: 16px; }

/* Páginas legales ---------------------------------------------------------- */
.ao-legal { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.ao-legal__indice {
  position: sticky;
  top: 110px;
  padding: 26px 24px;
  background: linear-gradient(180deg, var(--hierro-1) 0%, var(--hierro-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255,240,210,.1), 0 0 0 1px #0f0d0b, 0 14px 34px rgba(0,0,0,.45);
}
.ao-legal__indice ol { list-style: none; counter-reset: sec; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ao-legal__indice li { counter-increment: sec; font-family: var(--serif); font-size: 16px; line-height: 1.35; }
.ao-legal__indice li::before { content: counter(sec) ". "; color: var(--oro-oscuro); font-family: var(--titulo); font-size: 13px; }
.ao-legal__indice a { color: var(--crema-apagada); }
.ao-legal__indice a:hover { color: var(--oro-claro); }
.ao-legal__fecha {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(201,162,74,.2);
  font-family: var(--titulo);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8a7c66;
  line-height: 1.8;
}
.ao-legal__fecha strong { color: var(--oro-claro); font-weight: 600; }
.ao-legal__cuerpo { padding: 42px 46px; }
.ao-legal__intro {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: #4a3a22;
  margin: 0 0 8px;
  text-wrap: pretty;
}
.ao-legal__seccion { padding-top: 28px; scroll-margin-top: 120px; }
.ao-legal__titulo {
  font-family: var(--titulo);
  font-weight: 700;
  font-size: 21px;
  color: var(--tinta);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(90,64,26,.28);
}
.ao-legal__titulo span { color: var(--oro-oscuro); }
.ao-legal__seccion p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.62;
  color: #5c4a2e;
  margin: 0 0 12px;
  text-wrap: pretty;
}

/* Responsive --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ao-burger { display: flex; }
  .ao-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(201,162,74,.2);
    margin-top: 6px;
  }
  .ao-nav.is-open { display: flex; }
  .ao-nav__link { padding: 14px 12px; }
  .ao-nav__cta { margin-left: 0; margin-top: 8px; }
}

@media (max-width: 760px) {
  .ao-container { padding: 0 18px; }
  .ao-header__inner { padding: 10px 18px; }
  .ao-seccion { padding: 48px 0 56px; }
  .ao-pergamino__head { padding: 0 20px 18px; }
  .ao-tabla th, .ao-tabla td { padding: 11px 10px; font-size: 15px; }
  .ao-tabla__pos { padding-left: 20px !important; }
  .ao-tabla__ult { padding-right: 20px !important; }
  .ao-tabla__clase { display: none; }
  .ao-tabla thead th:nth-child(3) { display: none; }
  .ao-parchment { padding: 28px 24px; }
  .ao-parchment__nota { padding-right: 0; padding-bottom: 56px; }
  .ao-iron { padding: 26px 22px; }
  .ao-antorcha { display: none; }
  .ao-legal { grid-template-columns: 1fr; }
  .ao-legal__indice { position: static; }
  .ao-legal__cuerpo { padding: 30px 24px; }
  .ao-miembro { grid-template-columns: 1fr; gap: 16px; }
  .ao-regla { padding: 26px 22px; }
  .ao-aviso { padding: 22px; }
  .ao-tabs--centro { width: 100%; flex-wrap: wrap; }
  .ao-tabs--centro .ao-tab { flex: 1 1 auto; }
}

/* Noticias (tarjetas) — añadido para la web moderna --------------------------- */
.ao-noticias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.ao-noticia {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #241d17, #1a140f);
  border: 1px solid rgba(201, 162, 74, .28);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.ao-noticia__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 74, .25);
}
.ao-noticia__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.ao-noticia:hover .ao-noticia__media img { transform: scale(1.05); }
.ao-noticia__body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.ao-noticia__titulo { font-family: var(--titulo); font-size: 19px; margin: 6px 0 8px; line-height: 1.25; }
.ao-noticia__titulo a { color: var(--crema); }
.ao-noticia__titulo a:hover { color: var(--oro-claro); }
.ao-noticia__extracto { color: var(--crema-apagada); font-size: 14px; line-height: 1.55; flex: 1; margin: 0 0 12px; }
.ao-noticia__leer { font-family: var(--titulo); font-size: 12px; letter-spacing: .06em; color: var(--oro); }
.ao-noticia__leer:hover { color: var(--oro-claro); }
