/* Paleta y Fuentes */
:root {
    --bg-paper: #f4f1ea; /* Papel hueso/crema */
    --ink-black: #1a1a1a; /* Tinta oscura, no negro puro */
    --vintage-red: #c23b22;
    --vintage-blue: #1c2841;
}

body {
    background-color: var(--bg-paper);
    color: var(--ink-black);
    font-family: 'Courier Prime', monospace; /* Para los datos */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.newspaper-container {
    max-width: 800px;
    width: 100%;
    border: 4px double var(--ink-black);
    padding: 20px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABZJREFUeNpi2rV7928GBgYGBkAAgwAEtwJ8N1L8kAAAAABJRU5ErkJggg=='); /* Ruido muy sutil */
}

/* Encabezados */
.league-header {
    text-align: center;
    border-bottom: 3px solid var(--ink-black);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.issue-date {
    font-family: 'Rye', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.league-title {
    font-family: 'Playball', cursive;
    font-size: 4rem;
    color: var(--vintage-red);
    margin: 10px 0;
    text-shadow: 2px 2px 0px var(--ink-black);
}

.sub-headline {
    font-family: 'Rye', serif;
    font-size: 1.5rem;
    margin: 0;
}

/* La Pizarra de Posiciones */
table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid var(--ink-black);
}

th {
    font-family: 'Rye', serif;
    background-color: var(--vintage-blue);
    color: var(--bg-paper);
    padding: 12px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid var(--ink-black);
    font-weight: bold;
    font-size: 1.1rem;
}

.player-col {
    text-align: left;
    width: 40%;
}

/* Filas alternas para fácil lectura */
tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Destacar al Top 4 (La Mesa Final) */
tbody tr:nth-child(-n+4) {
    background-color: rgba(194, 59, 34, 0.1); /* Tinte rojo sutil */
}