/* ============================================================
   TERRITORIO TARTIERE — estilo Arcade / Retro-gaming
   Hereda la paleta del club (azul #0032A0) + acentos neón
   ============================================================ */

.tartiere-page {
  font-family: 'Maven Pro', sans-serif;
  color: #eaf1ff;
}

.tartiere-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(2, 8, 32, 0.92) 0%, rgba(0, 20, 70, 0.94) 55%, rgba(2, 8, 32, 0.97) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
  padding: 70px 20px 60px;
  text-align: center;
  overflow: hidden;
  border-top: 3px solid #ffd400;
  border-bottom: 3px solid #ffd400;
}

.tartiere-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

.tartiere-logo {
  position: relative;
  width: 300px;
  max-width: 60vw;
  filter: drop-shadow(0 0 18px rgba(0, 200, 255, 0.55)) drop-shadow(0 0 40px rgba(255, 212, 0, 0.25));
  margin-bottom: 18px;
}

.tartiere-eyebrow {
  position: relative;
  display: inline-block;
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: #ffd400;
  background: rgba(255, 212, 0, 0.08);
  border: 2px solid #ffd400;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(255, 212, 0, 0.35) inset;
}

.tartiere-title {
  position: relative;
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: clamp(1.6rem, 4vw, 3.1rem);
  color: #ffffff;
  margin: 0 0 18px;
  line-height: 1.4;
  text-shadow:
    0 0 8px rgba(0, 200, 255, 0.85),
    3px 3px 0 #0032A0,
    6px 6px 0 rgba(0,0,0,0.35);
}

.tartiere-subtitle {
  position: relative;
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #d7e6ff;
}

.tartiere-subtitle strong {
  color: #ffd400;
}

.tartiere-cta-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}

.tartiere-btn {
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: 0.7rem;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 6px;
  letter-spacing: 1px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-block;
}

.tartiere-btn-primary {
  background: #ffd400;
  color: #001a4d;
  box-shadow: 0 5px 0 #b89600, 0 8px 16px rgba(0,0,0,0.4);
}

.tartiere-btn-primary:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #b89600, 0 6px 12px rgba(0,0,0,0.4);
}

.tartiere-btn-ghost {
  background: transparent;
  color: #00e5ff;
  border: 2px solid #00e5ff;
  box-shadow: 0 5px 0 rgba(0,229,255,0.35);
}

.tartiere-btn-ghost:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0,229,255,0.35);
  color: #ffffff;
  border-color: #ffffff;
}

/* ---------- Cómo funciona (resumen rápido) ---------- */

.tartiere-summary {
  background-color: #f4f7fc;
  padding: 60px 20px;
}

.tartiere-summary-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.tartiere-section-title {
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: #0032A0;
  text-align: center;
  margin-bottom: 12px;
}

.tartiere-section-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}

.tartiere-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 10px;
}

.tartiere-stat-card {
  background: #ffffff;
  border: 3px solid #0032A0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(0, 50, 160, 0.15);
  transition: transform 0.2s ease;
}

.tartiere-stat-card:hover {
  transform: translateY(-4px);
}

.tartiere-stat-value {
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: 1.3rem;
  color: #0032A0;
  display: block;
  margin-bottom: 10px;
}

.tartiere-stat-label {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.4;
}

/* ---------- Bloque reglamento estilo "niveles de juego" ---------- */

.tartiere-rules {
  background:
    linear-gradient(180deg, #020818 0%, #001a4d 100%);
  padding: 70px 20px 80px;
}

.tartiere-rules-inner {
  max-width: 980px;
  margin: 0 auto;
}

.tartiere-rules .tartiere-section-title {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.6);
}

.tartiere-rules .tartiere-section-lead {
  color: #b9cdf5;
}

.tartiere-levels {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}

.tartiere-level {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid #00e5ff;
  border-radius: 10px;
  padding: 24px 26px 24px 90px;
  box-shadow: 0 0 0 rgba(0,229,255,0), inset 0 0 30px rgba(0, 229, 255, 0.04);
}

.tartiere-level-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #ffd400;
  color: #001a4d;
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 #b89600;
}

.tartiere-level h3 {
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: 1rem;
  color: #00e5ff;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}

.tartiere-level p, .tartiere-level li {
  color: #e4edff;
  line-height: 1.65;
  font-size: 0.98rem;
}

.tartiere-level ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.tartiere-level ul li {
  margin-bottom: 6px;
}

.tartiere-level .tartiere-plus {
  color: #6dff8f;
}

.tartiere-level .tartiere-minus {
  color: #ff6d6d;
}

.tartiere-vetusta-badge {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255, 212, 0, 0.12);
  border: 1px dashed #ffd400;
  color: #ffd400;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.tartiere-table-wrap {
  overflow-x: auto;
  margin-top: 14px;
}

.tartiere-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.tartiere-table th, .tartiere-table td {
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 10px 14px;
  text-align: left;
}

.tartiere-table th {
  background: rgba(0, 229, 255, 0.12);
  color: #00e5ff;
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: 0.65rem;
}

.tartiere-windows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.tartiere-window-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid #ffd400;
  border-radius: 8px;
  padding: 16px 18px;
}

.tartiere-window-card h4 {
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: 0.75rem;
  color: #ffd400;
  margin: 0 0 10px;
}

.tartiere-final-quote {
  margin-top: 44px;
  text-align: center;
  padding: 26px 20px;
  border: 2px dashed #ffd400;
  border-radius: 10px;
  background: rgba(255, 212, 0, 0.06);
}

.tartiere-final-quote p {
  font-size: 1.05rem;
  color: #fff8dd;
  line-height: 1.7;
  margin: 0;
}

.tartiere-cta-bottom {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .tartiere-level {
    padding: 70px 18px 20px 18px;
  }
  .tartiere-level-tag {
    top: -18px;
    left: 18px;
  }
}

Aquí tienes el código para pegar dentro del **Nivel 3** (sustituyendo o complementando la lista de puntos actual), más un pequeño añadido de CSS para que las filas de cabecera de grupo se vean bien.

### 1. HTML — pégalo dentro de `tartiere.html`, en el `tartiere-level` del Nivel 3 (por ejemplo justo después del `<span class="tartiere-vetusta-badge">...</span>`)```html
<div class="tartiere-table-wrap" style="margin-top:20px;">
    <table class="tartiere-table tartiere-points-table">
        <thead>
            <tr><th>Concepto</th><th>Puntos</th><th>Comentario</th></tr>
        </thead>
        <tbody>
            <tr class="tartiere-group-row"><td colspan="3">⚽ Para partidos del Real Oviedo</td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Por participación</td></tr>
            <tr><td>Titular (11 inicial)</td><td class="tartiere-plus">5</td><td></td></tr>
            <tr><td>Banquillo de inicio</td><td class="tartiere-plus">1</td><td></td></tr>
            <tr><td>Jugar +60 min</td><td class="tartiere-plus">3</td><td></td></tr>
            <tr><td>Jugar +25 min (25–60)</td><td class="tartiere-plus">2</td><td></td></tr>
            <tr><td>Jugar &lt;25 min</td><td class="tartiere-plus">1</td><td></td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Por acciones ofensivas</td></tr>
            <tr><td>Tiro a puerta</td><td class="tartiere-plus">3</td><td></td></tr>
            <tr><td>Tiro al palo</td><td class="tartiere-plus">2</td><td></td></tr>
            <tr><td>Gol</td><td class="tartiere-plus">10</td><td>7 gol + 3 tiro a puerta</td></tr>
            <tr><td>Gol de penalti</td><td class="tartiere-plus">8</td><td>5 gol + 3 tiro</td></tr>
            <tr><td>Asistencia</td><td class="tartiere-plus">4</td><td></td></tr>
            <tr><td>Falta recibida</td><td class="tartiere-plus">1</td><td></td></tr>
            <tr><td>Penalti forzado</td><td class="tartiere-plus">1</td><td></td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Por acciones defensivas (porteros y defensas)</td></tr>
            <tr><td>Portería a cero (+45 min)</td><td class="tartiere-plus">6</td><td></td></tr>
            <tr><td>Parada (porteros)</td><td class="tartiere-plus">3</td><td></td></tr>
            <tr><td>Penalti atajado</td><td class="tartiere-plus">7</td><td>10 contando la parada</td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Puntos negativos</td></tr>
            <tr><td>Roja directa</td><td class="tartiere-minus">-5</td><td></td></tr>
            <tr><td>Amarilla</td><td class="tartiere-minus">-2</td><td></td></tr>
            <tr><td>Doble amarilla</td><td class="tartiere-minus">-4</td><td></td></tr>
            <tr><td>Falta cometida</td><td class="tartiere-minus">-1</td><td></td></tr>
            <tr><td>Penalti cometido</td><td class="tartiere-minus">-3</td><td>-2 + falta</td></tr>
            <tr><td>Penalti fallado</td><td class="tartiere-minus">-4</td><td></td></tr>
            <tr><td>Gol en propia</td><td class="tartiere-minus">-3</td><td></td></tr>
            <tr><td>Gol encajado (DEF/POR)</td><td class="tartiere-minus">-2</td><td></td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Multiplicador</td></tr>
            <tr><td>Jugador de Vetusta que juegue con el 1er equipo</td><td class="tartiere-plus">3,0x</td><td>x3 solo suma; resta igual</td></tr>

            <tr class="tartiere-group-row"><td colspan="3">🌱 Para partidos de la Vetusta</td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Por participación</td></tr>
            <tr><td>Titular (11 inicial)</td><td class="tartiere-plus">4</td><td></td></tr>
            <tr><td>Jugar +60 min</td><td class="tartiere-plus">3</td><td></td></tr>
            <tr><td>Jugar +25 min (25–60)</td><td class="tartiere-plus">2</td><td></td></tr>
            <tr><td>Jugar &lt;25 min</td><td class="tartiere-plus">1</td><td></td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Por acciones ofensivas</td></tr>
            <tr><td>Gol</td><td class="tartiere-plus">5</td><td></td></tr>
            <tr><td>Gol de penalti</td><td class="tartiere-plus">4</td><td></td></tr>
            <tr><td>Asistencia</td><td class="tartiere-plus">3</td><td></td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Por acciones defensivas (porteros y defensas)</td></tr>
            <tr><td>Portería a cero (+45 min)</td><td class="tartiere-plus">3</td><td></td></tr>
            <tr><td>Penalti atajado</td><td class="tartiere-plus">4</td><td></td></tr>

            <tr class="tartiere-subgroup-row"><td colspan="3">Puntos negativos</td></tr>
            <tr><td>Roja directa</td><td class="tartiere-minus">-5</td><td></td></tr>
            <tr><td>Amarilla</td><td class="tartiere-minus">-2</td><td></td></tr>
            <tr><td>Doble amarilla</td><td class="tartiere-minus">-4</td><td></td></tr>
            <tr><td>Penalti fallado</td><td class="tartiere-minus">-4</td><td></td></tr>
            <tr><td>Gol en propia</td><td class="tartiere-minus">-3</td><td></td></tr>
            <tr><td>Gol encajado (DEF/POR)</td><td class="tartiere-minus">-2</td><td></td></tr>
        </tbody>
    </table>
</div>
```

### 2. CSS — añade esto al final de `tartiere.css`

```css
/* ---------- Tabla detallada del sistema de puntos (Nivel 3) ---------- */

.tartiere-points-table td:nth-child(2) {
  text-align: center;
  font-weight: 700;
}

.tartiere-points-table td.tartiere-plus {
  color: #6dff8f;
}

.tartiere-points-table td.tartiere-minus {
  color: #ff6d6d;
}

.tartiere-points-table .tartiere-group-row td {
  background: rgba(255, 212, 0, 0.15);
  color: #ffd400;
  font-family: 'Press Start 2P', 'Maven Pro', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  padding: 12px 14px;
  border-top: 2px solid #ffd400;
}

.tartiere-points-table .tartiere-subgroup-row td {
  background: rgba(0, 229, 255, 0.08);
  color: #00e5ff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
```

**Notas:**
- El `<span class="tartiere-vetusta-badge">` que ya tenías sobre el bonus de la Vetusta lo puedes dejar antes de la tabla, o quitarlo ya que ahora el multiplicador aparece dentro de la propia tabla ("Multiplicador" → x3,0).
- La tabla reutiliza las clases `tartiere-table` / `tartiere-table-wrap` que ya existen, así que hereda el scroll horizontal en móvil automáticamente.
- Los colores verde (positivo) / rojo (negativo) usan las mismas clases `tartiere-plus` / `tartiere-minus` que ya tenías en la lista de bullets, para mantener coherencia visual.