/* ── VARIABLES ── */
:root {
    --bg: #0a0e18;
    --g2: #111827;
    --g3: #1a2234;
    --g4: #243044;
    --white: #ffffff;
    --mid: #d1d5db;
    --muted: #6b7280;
    --border: #1f2937;
    --lime: #b8ff2e;
    --lime-dark: #8bc34a;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background: var(--bg);
    color: var(--mid);
    font-family: "Barlow", sans-serif;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}
.eq-name-link {
    transition: color 0.3s ease;
}

.eq-name-link:hover {
    color: var(--lime);
}

.eq-escudo-link {
    display: block;
    transition: transform 0.3s ease;
}

.eq-escudo-link:hover {
    transform: scale(1.05);
}

/* ════════════════════════════════════════════════════════════════ */
/* HEADER CON IMAGEN DE FONDO                                    */
/* ════════════════════════════════════════════════════════════════ */
.header-moderno {
    background: linear-gradient(135deg, rgba(10, 14, 24, 0.82), rgba(10, 14, 24, 0.92)),
        var(--header-bg, url("{{ asset("images/torneo-default-bg.jpg") }}"));
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.header-moderno::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), #a8e600, var(--lime));
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%,
    100% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

.header-moderno .header-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.header-moderno .badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.header-moderno .badge-edicion {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(180, 255, 0, 0.08);
    color: var(--lime);
    border: 1px solid rgba(180, 255, 0, 0.15);
}

.header-moderno .header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}

.header-moderno h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-moderno h1 em {
    color: var(--lime);
    font-style: normal;
}

.header-moderno .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.header-moderno .meta i {
    color: var(--lime);
    width: 16px;
}

.header-moderno .header-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.header-moderno .btn-share {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-moderno .btn-share:hover {
    background: rgba(180, 255, 0, 0.12);
    border-color: var(--lime);
    color: var(--lime);
}

/* ── STATS ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.stat-card {
    background: rgba(26, 34, 52, 0.75);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--lime);
    transform: translateY(-3px);
    background: rgba(26, 34, 52, 0.9);
}

.stat-card .num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--white);
    line-height: 1.2;
}

.stat-card .num.lime {
    color: var(--lime);
}
.stat-card .num.gold {
    color: #fbbf24;
}

.stat-card .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

/* ── SECCIONES RÁPIDAS ── */
.quick-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
}

.quick-tabs::-webkit-scrollbar {
    display: none;
}

.quick-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.quick-tab:hover {
    border-color: var(--lime);
    color: var(--white);
}

.quick-tab.active {
    background: var(--lime);
    color: var(--bg);
    border-color: var(--lime);
}

.quick-tab i {
    font-size: 14px;
}

/* ── CARD PANEL ── */
.panel {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.panel:hover {
    border-color: rgba(180, 255, 0, 0.08);
}

.panel .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.panel .panel-header h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel .panel-header h3 .icon {
    font-size: 20px;
}
.panel .panel-header .ver-todo {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}
.panel .panel-header .ver-todo:hover {
    color: var(--lime);
}

.lider-tabs {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

/* ── LAYOUT DE 2 COLUMNAS ── */
.two-col {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
}

.two-col > *,
.panel {
    min-width: 0;
}

/* ── TABLA CLASIFICACIÓN ── */
.clas-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.clas-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 13px;
}

.clas-table thead th {
    text-align: left;
    padding: 8px 6px;
    color: var(--muted);
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.clas-table thead th.center {
    text-align: center;
}
.clas-table tbody td {
    padding: 8px 6px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.clas-table tbody tr {
    transition: var(--transition);
}
.clas-table tbody tr:hover {
    background: var(--g3);
}

.clas-table .pos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    background: var(--g3);
    color: var(--muted);
}

.clas-table .pos.gold {
    background: #fbbf24;
    color: #000;
}
.clas-table .pos.silver {
    background: #9ca3af;
    color: #000;
}
.clas-table .pos.bronze {
    background: #d97706;
    color: #fff;
}

.clas-table .team-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.clas-table .team-cell .escudo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: contain;
    background: white;
    padding: 2px;
}

.clas-table .team-cell .name {
    font-weight: 500;
    color: var(--white);
    font-size: 13px;
}

.clas-table .pts {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    color: var(--lime);
    text-align: center;
    display: block;
}

/* ── GOLEADORES ── */
.gol-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gol-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: default;
}

.gol-item:hover {
    border-color: var(--lime);
}

.gol-item .rank {
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    min-width: 26px;
    color: var(--muted);
}

.gol-item .rank.gold {
    color: #fbbf24;
}
.gol-item .rank.silver {
    color: #9ca3af;
}
.gol-item .rank.bronze {
    color: #d97706;
}

.gol-item .foto {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--g2);
    border: 2px solid var(--border);
    object-fit: cover;
}

.gol-item .info {
    flex: 1;
}
.gol-item .info .name {
    font-weight: 500;
    color: var(--white);
    font-size: 13px;
}
.gol-item .info .team {
    font-size: 10px;
    color: var(--muted);
}

.gol-item .goles {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    color: var(--lime);
}

/* ── LÍDERES GRID ── */
.lider-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    min-width: 0;
}

.lider-col {
    min-width: 0;
    overflow: hidden;
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.lider-col .lider-title {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.lider-col .lider-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 3px 0;
    font-size: 12px;
    color: var(--mid);
    border-bottom: 1px solid var(--border);
}

.lider-col .lider-item:last-child {
    border-bottom: none;
}

.lider-col .lider-item .lider-name {
    color: var(--white);
    font-weight: 400;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lider-col .lider-item .lider-val {
    flex: 0 0 auto;
    font-weight: 600;
    color: var(--lime);
    font-size: 13px;
}

/* ── EQUIPOS (con acordeón) ── */
.equipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.eq-card {
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.eq-card:hover {
    border-color: var(--lime);
}

.eq-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--g2);
    border-bottom: 1px solid var(--border);
}

.eq-header .eq-escudo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: contain;
    background: white;
    padding: 4px;
    flex-shrink: 0;
}

.eq-header .eq-name {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.eq-header .eq-pais {
    font-size: 11px;
    color: var(--muted);
}

/* ── Estadísticas del equipo ── */
.eq-stats-row {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    background: var(--g2);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.eq-stat {
    text-align: center;
    padding: 2px 8px;
    flex: 1;
    min-width: 30px;
}

.eq-stat .eq-stat-val {
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    color: var(--white);
    line-height: 1.2;
}

.eq-stat .eq-stat-val.lime {
    color: var(--lime);
}
.eq-stat .eq-stat-val.am {
    color: #eab308;
}
.eq-stat .eq-stat-val.roj {
    color: #ef4444;
}

.eq-stat .eq-stat-lbl {
    font-size: 7px;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.5px;
}

/* ── Acordeón del equipo ── */
.eq-accordion {
    padding: 4px 0;
}

.eq-accordion .acc-item {
    border-bottom: 1px solid var(--border);
}

.eq-accordion .acc-item:last-child {
    border-bottom: none;
}

.acc-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: var(--mid);
    font-family: "Barlow", sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.acc-trigger:hover {
    color: var(--white);
    background: var(--g2);
}

.acc-trigger .acc-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.acc-trigger.open .acc-arrow {
    transform: rotate(90deg);
}

.acc-body {
    display: none;
    padding: 0 16px 12px;
}

.acc-body.open {
    display: block;
}

.eq-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.eq-info-block h6 {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.eq-info-row {
    font-size: 12px;
    color: var(--mid);
    padding: 2px 0;
}

.eq-info-row b {
    color: var(--muted);
}

.eq-info-row a {
    color: var(--lime);
    text-decoration: none;
}

.eq-info-row a:hover {
    text-decoration: underline;
}

/* ── Plantilla de jugadores ── */
.jugador-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.jugador-row:hover {
    background: var(--g2);
    border-radius: 4px;
}

.jugador-row .jugador-foto {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--g2);
    border: 2px solid var(--border);
}

.jugador-row .jugador-foto-ph {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--g2);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 14px;
}

.jugador-row .jugador-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    min-width: 24px;
}

.jugador-row .jugador-name {
    font-size: 13px;
    color: var(--white);
}

.jugador-row .jugador-apodo {
    font-size: 10px;
    color: var(--muted);
}

.estadio-foto {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.estadio-foto-ph {
    width: 100%;
    height: 120px;
    background: var(--g3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 32px;
}

/* ── CALENDARIO ── */
.calendario-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jornada-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.jornada-tabs::-webkit-scrollbar {
    display: none;
}

.jtab {
    padding: 6px 16px;
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--muted);
    font-family: "Barlow", sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.jtab:hover {
    border-color: var(--lime);
    color: var(--white);
}
.jtab.active {
    background: var(--lime);
    color: var(--bg);
    border-color: var(--lime);
}

.partido-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    transition: var(--transition);
    cursor: default;
}

.partido-item.clickable {
    cursor: pointer;
}

.partido-item.clickable:hover {
    border-color: var(--lime);
    background: var(--g2);
}

.partido-item .equipos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.partido-item .equipos .escudo {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    object-fit: contain;
    background: white;
    padding: 2px;
}

.partido-item .equipos .nombre {
    font-weight: 500;
    color: var(--white);
    font-size: 13px;
}

.partido-item .resultado {
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    color: var(--white);
    padding: 0 12px;
}

.partido-item .estado {
    font-size: 9px;
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partido-item .estado.finalizado {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}
.partido-item .estado.pendiente {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}
.partido-item .estado.en-curso {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.partido-item .estado.wo {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.partido-item .fecha {
    font-size: 10px;
    color: var(--muted);
    white-space: nowrap;
}

/* ── EMPTY STATE ── */
.empty-box {
    text-align: center;
    padding: 48px 20px;
}

.empty-box .empty-icon {
    font-size: 48px;
    color: var(--border);
    margin-bottom: 12px;
}

.empty-box .empty-text {
    color: var(--muted);
    font-size: 15px;
}

/* ── MODALES ── */
.nmod-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(4, 8, 18, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.nmod-overlay.open {
    display: flex;
}

.nmod-box {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeUp 0.3s ease both;
    overflow: hidden;
}

.nmod-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--muted);
    transition: all 0.2s ease;
}

.nmod-close:hover {
    border-color: var(--lime);
    color: var(--white);
}

.nmod-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
}

#nmod-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.nmod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nmod-img-ph {
    width: 100%;
    height: 100%;
    background: var(--g3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 48px;
}

.nmod-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

.nmod-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

.nmod-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.nmod-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
    white-space: pre-wrap;
}

.nmod-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

.nmod-stat i {
    margin-right: 4px;
}

.jugador-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(4, 8, 18, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.jugador-modal-overlay.open {
    display: flex;
}

.jugador-modal {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeUp 0.3s ease both;
    overflow: hidden;
}

.jugador-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.jugador-modal-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.jugador-modal-close {
    width: 32px;
    height: 32px;
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.2s ease;
}

.jugador-modal-close:hover {
    border-color: var(--lime);
    color: var(--white);
}

.jugador-modal-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
}

.jugador-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.jugador-modal-loading {
    text-align: center;
    padding: 40px 0;
    color: var(--muted);
    font-size: 14px;
}

.jugador-perfil {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.jugador-perfil-foto {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--g3);
    border: 2px solid var(--border);
}

.jugador-perfil-foto-ph {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--g3);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 32px;
}

.jugador-perfil-nombre {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: var(--white);
    line-height: 1.2;
}

.jugador-perfil-equipo {
    color: var(--lime);
    font-size: 14px;
}

.jugador-perfil-apodo {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.jugador-equipo-escudo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: contain;
    background: white;
    padding: 8px;
    flex-shrink: 0;
}

.jugador-equipo-escudo-ph {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: var(--g3);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 32px;
}

.jugador-detalle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.jugador-detalle-item {
    background: var(--g3);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: center;
}

.jugador-detalle-item label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}

.jugador-detalle-item span {
    font-weight: 500;
    color: var(--white);
    font-size: 14px;
}

.jugador-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.jugador-stat-card {
    background: var(--g3);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: center;
}

.jugador-stat-val {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--lime);
    line-height: 1.2;
}

.jugador-stat-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}

.resumen-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(4, 8, 18, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.resumen-overlay.open {
    display: flex;
}

.resumen-modal {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeUp 0.3s ease both;
    overflow: hidden;
}

.resumen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.resumen-header span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.resumen-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.res-scoreboard {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.res-team {
    text-align: center;
}

.res-team .res-team-escudo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    padding: 4px;
    margin: 0 auto 4px;
    display: block;
}

.res-team .res-team-name {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.res-team .res-team-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.res-score {
    text-align: center;
}

.res-score .res-score-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.res-score .res-score-sep {
    color: var(--muted);
}

.res-score .res-score-estado {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.res-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.res-col-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.res-event {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 13px;
    color: var(--mid);
}

.res-event .res-event-min {
    font-size: 11px;
    color: var(--muted);
    min-width: 30px;
}

.res-event .res-event-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.res-event .res-event-icon.ev-gol {
    color: #22c55e;
}
.res-event .res-event-icon.ev-am {
    color: #eab308;
}
.res-event .res-event-icon.ev-roj {
    color: #ef4444;
}
.res-event .res-event-icon.ev-auto {
    color: #f59e0b;
}

.res-event .res-event-name {
    font-weight: 500;
    color: var(--white);
}

.res-event .res-event-accion {
    font-size: 11px;
    color: var(--muted);
}

.res-col-empty {
    text-align: center;
    padding: 16px 0;
    color: var(--muted);
    font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .lider-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .eq-info-grid {
        grid-template-columns: 1fr;
    }

    .equipos-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-moderno {
        padding: 20px;
    }
    .header-moderno h1 {
        font-size: 28px;
    }

    .header-moderno .header-content {
        flex-direction: column;
    }

    .header-moderno .header-actions {
        width: 100%;
    }

    .header-moderno .btn-share {
        flex: 1;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stat-card .num {
        font-size: 22px;
    }

    .panel {
        padding: 16px;
    }
    .panel .panel-header {
        gap: 10px;
        flex-wrap: wrap;
    }
    .panel .panel-header h3 {
        font-size: 18px;
    }

    .lider-grid {
        grid-template-columns: 1fr;
    }

    .partido-item {
        flex-wrap: wrap;
        gap: 4px;
        padding: 8px 12px;
    }

    .partido-item .equipos {
        flex: 1 1 100%;
        justify-content: center;
    }
    .partido-item .resultado {
        order: 2;
    }
    .partido-item .estado {
        order: 3;
    }
    .partido-item .fecha {
        flex: 1 1 100%;
        text-align: center;
    }

    .clas-table {
        font-size: 11px;
        min-width: 520px;
    }
    .clas-table thead th,
    .clas-table tbody td {
        padding: 4px 3px;
    }
    .clas-table .team-cell .name {
        font-size: 11px;
    }
    .clas-table .pts {
        font-size: 16px;
    }
    .clas-table .team-cell .escudo {
        width: 18px;
        height: 18px;
    }

    .equipos-grid {
        grid-template-columns: 1fr;
    }

    .eq-header .eq-name {
        font-size: 14px;
    }

    .quick-tab {
        font-size: 11px;
        padding: 8px 14px;
    }

    .res-cols {
        grid-template-columns: 1fr;
    }

    .res-scoreboard {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .res-score .res-score-num {
        font-size: 28px;
    }

    .jugador-detalle-grid {
        grid-template-columns: 1fr 1fr;
    }
    .jugador-perfil {
        flex-direction: column;
        text-align: center;
    }
    .jugador-equipo-escudo {
        width: 60px;
        height: 60px;
    }
    .jugador-equipo-escudo-ph {
        width: 60px;
        height: 60px;
    }

    .nmod-body {
        padding: 16px 18px;
    }
    .nmod-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-card {
        padding: 8px 10px;
    }
    .stat-card .num {
        font-size: 18px;
    }
    .stat-card .label {
        font-size: 8px;
    }

    .lider-grid {
        grid-template-columns: 1fr;
    }

    .gol-item {
        padding: 6px 10px;
    }
    .gol-item .goles {
        font-size: 16px;
    }

    .partido-item .equipos .nombre {
        font-size: 12px;
    }
    .partido-item .resultado {
        font-size: 15px;
    }

    .header-moderno h1 {
        font-size: 22px;
    }
    .header-moderno .meta {
        font-size: 11px;
        gap: 6px 12px;
    }
    .header-moderno .badge,
    .header-moderno .badge-edicion {
        font-size: 8px;
        padding: 2px 10px;
    }
    .header-moderno .btn-share {
        font-size: 11px;
        padding: 6px 12px;
    }

    .quick-tab {
        font-size: 10px;
        padding: 6px 10px;
    }
    .quick-tab i {
        font-size: 11px;
    }

    .eq-header .eq-escudo {
        width: 32px;
        height: 32px;
    }
    .eq-header .eq-name {
        font-size: 13px;
    }

    .jugador-detalle-grid {
        grid-template-columns: 1fr;
    }
    .jugador-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .jugador-stat-val {
        font-size: 22px;
    }

    .nmod-title {
        font-size: 18px;
    }
    .nmod-text {
        font-size: 14px;
    }

    .res-score .res-score-num {
        font-size: 24px;
    }
}

/* ── EDICIONES ANTERIORES ── */
.historial-ediciones {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.btn-historial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(180, 255, 0, 0.08);
    color: var(--lime);
    border: 1px solid rgba(180, 255, 0, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Barlow', sans-serif;
}

.btn-historial:hover {
    background: rgba(180, 255, 0, 0.15);
    border-color: var(--lime);
    transform: translateY(-1px);
}

.btn-historial .badge-count {
    background: var(--lime);
    color: #0a0e18;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 12px;
    margin-left: 2px;
}

.ediciones-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.edicion-preview-item {
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edicion-preview-item:hover {
    border-color: var(--lime);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(180, 255, 0, 0.05);
}

.edicion-preview-item .ep-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.edicion-preview-item .ep-temporada {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.edicion-preview-item .ep-edicion {
    font-size: 10px;
    color: var(--muted);
    background: var(--g2);
    padding: 1px 10px;
    border-radius: 10px;
}

.edicion-preview-item .ep-body {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--mid);
    margin-bottom: 6px;
}

.edicion-preview-item .ep-campeon {
    color: var(--gold);
}

.edicion-preview-item .ep-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    border-top: 1px solid var(--border);
}

.edicion-preview-item .ep-badge {
    font-size: 9px;
    padding: 1px 10px;
    border-radius: 12px;
}

.edicion-preview-item .ep-badge.finalizada {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.edicion-preview-item .ep-badge.activa {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.edicion-preview-item .ep-ver {
    font-size: 10px;
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.edicion-preview-item:hover .ep-ver {
    gap: 8px;
}

.edicion-preview-item.more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g3);
    border-style: dashed;
}

.edicion-preview-item.more:hover {
    border-color: var(--lime);
}

.edicion-preview-item .ep-more-content {
    text-align: center;
    color: var(--muted);
}

.edicion-preview-item .ep-more-content i {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.edicion-preview-item .ep-more-content span {
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
}

.edicion-preview-item .ep-more-content small {
    display: block;
    font-size: 10px;
    color: var(--muted);
}

/* ── MODAL HISTORIAL ── */
.historial-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(4, 8, 18, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.historial-overlay.open {
    display: flex;
}

.historial-modal {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: fadeUp 0.3s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.historial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.historial-header .historial-titulo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.historial-header .historial-titulo .icon {
    font-size: 20px;
}

.historial-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--white);
    margin: 0;
}

.historial-close {
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s ease;
}

.historial-close:hover {
    border-color: var(--lime);
    color: var(--white);
}

.historial-body {
    padding: 16px 24px 20px;
    overflow-y: auto;
    flex: 1;
}

.edicion-historial-card {
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.edicion-historial-card:hover {
    border-color: var(--lime);
    transform: translateY(-2px);
}

.edicion-historial-card.activa {
    border-color: rgba(34, 197, 94, 0.3);
}

.edicion-historial-card .eh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 6px;
}

.edicion-historial-card .eh-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.edicion-historial-card .eh-edicion {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.edicion-historial-card .eh-temporada {
    font-size: 13px;
    color: var(--mid);
}

.edicion-historial-card .eh-badge {
    font-size: 9px;
    padding: 2px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.edicion-historial-card .eh-badge.finalizada {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.edicion-historial-card .eh-badge.activa {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.edicion-historial-card .eh-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.edicion-historial-card .eh-stat {
    text-align: center;
}

.edicion-historial-card .eh-stat-val {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--white);
}

.edicion-historial-card .eh-stat-label {
    font-size: 8px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edicion-historial-card .eh-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.edicion-historial-card .eh-btn {
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
}

.edicion-historial-card .eh-btn-primary {
    background: rgba(180, 255, 0, 0.1);
    color: var(--lime);
    border: 1px solid rgba(180, 255, 0, 0.15);
}

.edicion-historial-card .eh-btn-primary:hover {
    background: rgba(180, 255, 0, 0.2);
    border-color: var(--lime);
}

.edicion-historial-card .eh-btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.edicion-historial-card .eh-btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
}

.historial-footer {
    padding: 12px 24px 16px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.historial-sub {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin: 0;
    font-style: italic;
}

.historial-sub i {
    color: var(--lime);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ediciones-preview {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .historial-modal {
        max-width: 100%;
        margin: 12px;
        border-radius: 16px;
    }

    .historial-header {
        padding: 12px 16px;
    }

    .historial-header h3 {
        font-size: 18px;
    }

    .historial-body {
        padding: 12px 16px 16px;
    }

    .edicion-historial-card {
        padding: 12px 14px;
    }

    .edicion-historial-card .eh-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .edicion-historial-card .eh-actions {
        flex-direction: column;
    }

    .edicion-historial-card .eh-btn {
        justify-content: center;
    }

    .btn-historial {
        font-size: 11px;
        padding: 4px 12px;
    }

    .edicion-preview-item .ep-body {
        flex-direction: column;
        gap: 2px;
    }
}

@media (max-width: 480px) {
    .ediciones-preview {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .edicion-preview-item {
        padding: 10px 12px;
    }

    .edicion-preview-item .ep-temporada {
        font-size: 11px;
    }
}

/* ── BADGE DE GRUPO EN PARTIDOS ── */
.partido-grupo-badge {
    font-size: 8px;
    background: #3b82f6;
    color: #fff;
    padding: 1px 8px;
    border-radius: 10px;
    margin-right: 6px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ── TABS DE GRUPOS ── */
.grupos-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    flex-wrap: wrap;
}

.grupo-tab {
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 8px 8px 0 0;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Barlow', sans-serif;
}

.grupo-tab:hover {
    background: var(--g2);
    color: var(--white);
}

.grupo-tab.active {
    background: var(--lime);
    color: #0a0e18;
    border-color: var(--lime);
}

.grupo-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.grupo-panel {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── TABS DE GRUPOS ── */
.grupos-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    flex-wrap: wrap;
}

.grupo-tab {
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 8px 8px 0 0;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Barlow', sans-serif;
}

.grupo-tab:hover {
    background: var(--g2);
    color: var(--white);
}

.grupo-tab.active {
    background: var(--lime);
    color: #0a0e18;
    border-color: var(--lime);
}

.grupo-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.grupo-panel {
    animation: fadeIn 0.3s ease;
}

.grupos-content {
    margin-top: 4px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.table-responsive {
    overflow-x: auto;
}

.res-event-icon.ev-asistencia {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── NOTICIAS EN TORNEO ── */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.noticia-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(180, 255, 0, 0.06);
}

.noticia-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-categoria {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .noticias-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .noticias-grid {
        grid-template-columns: 1fr;
    }
}