/* assets/css/giocatori.css - TEMA 2026 */

/* --- Font Setup --- */
@font-face { 
    font-family: 'DrukWide'; 
    src: url('/assets/doc/DrukTextWide-MediumItalic-Trial.otf') format('opentype');
    font-weight: bold; 
    font-style: italic; 
}
@font-face { 
    font-family: 'HelveticaBold'; 
    src: url('/assets/doc/HelveticaBold.ttf') format('truetype'); 
    font-weight: bold; 
    font-style: normal; 
}

/* --- Stili Globali e Variabili --- */
:root {
    --rosa-elettrico: #ff19ff;
    --viola: #790cfd;
    --testo-bianco: #ffffff;
    --sfondo-scuro: rgba(18, 0, 40, 0.85);
    --sfondo-scuro-2: rgba(18, 0, 40, 0.5);
    --bordo-sottile: 1px solid rgba(255, 255, 255, 0.15);
}

body {
    background-color: #120028 !important;
    color: var(--rosa-elettrico);
    font-family: 'HelveticaBold', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: linear-gradient(rgba(18, 0, 40, 0.7), rgba(18, 0, 40, 0.7)), url('/assets/imm/gradiente26.jpg') center/cover no-repeat;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

/* --- Layout Giocatori --- */
.giocatori-container {
    background-color: var(--sfondo-scuro);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(18, 0, 40, 0.5);
    margin: 13px auto;
    padding: 10px;
    width: 95%;
    max-width: 670px;
    border: 1px solid var(--bordo-sottile);
}

.giocatori-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: var(--bordo-sottile);
}

.giocatori-title {
    font-family: 'DrukWide', Arial, sans-serif;
    font-style: italic;
    font-weight: bold;
    color: var(--rosa-elettrico);
    font-size: 1.2rem;
    margin: 0;
    text-transform: uppercase;
}

.giocatori-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'HelveticaBold', Arial, sans-serif;
}


.giocatori-table thead th {
    font-family: 'DrukWide', Arial, sans-serif;
    background-color: rgba(18, 0, 40, 0.95);
    color: var(--rosa-elettrico);
    padding: 8px 10px;
    text-align: left;
    font-style: italic;
    font-weight: bold;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.67px;
}

.giocatori-table tbody tr {
    background-color: var(--sfondo-scuro-2);
    border-bottom: var(--bordo-sottile);
    transition: background-color 0.3s ease;
}

.giocatori-table tbody tr:nth-child(even) {
    background-color: rgba(121, 12, 253, 0.15);
}

.giocatori-table tbody tr.extra-row:nth-child(even),
.giocatori-table tbody tr.extra-row:nth-child(odd) {
    background-color: rgba(18, 0, 40, 0.95) !important;
}

.giocatori-table tbody tr:hover:not(.extra-row) {
    background-color: rgba(255, 25, 255, 0.15);
}

.giocatori-table tbody td {
    font-size: 0.55rem;
}
.giocatori-table td {
    padding: 8px 10px;
    color: var(--testo-bianco);
    vertical-align: middle;
    text-transform: uppercase;
}

.posizione-cell {
    font-family: 'DrukWide', Arial, sans-serif;
    font-style: italic;
    font-weight: bold;
    color: var(--rosa-elettrico);
    font-size: 0.74rem;
    text-align: center;
    width: 34px;
}

.giocatore-cell {
    display: flex;
    align-items: center;
    gap: 7px;
}

.giocatore-foto {
    width: 34px; 
    height: 34px; 
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid transparent; 
}

.squadra-logo {
    width: 17px; 
    height: 17px; 
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 3px;
    border: none; 
}

/* --- Testi Ridotti come richiesto --- */
.giocatore-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giocatore-nome {
    font-size: 0.35rem; /* Grandezza dimezzata */
    line-height: 1.2;
    text-transform: uppercase;
}

.giocatore-cognome {
    font-size: 0.45rem; /* Grandezza dimezzata */
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
}

.punti-cell {
    font-family: 'DrukWide', Arial, sans-serif;
    font-style: italic;
    font-weight: bold;
    font-size: 0.74rem;
    text-align: right;
    padding-right: 17px;
}

.toggle-cell {
    text-align: center;
    width: 34px;
}

.toggle-button {
    background: linear-gradient(135deg, var(--rosa-elettrico) 0%, var(--viola) 100%);
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(255, 25, 255, 0.3);
}

.toggle-button:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(255, 25, 255, 0.5);
}

.toggle-icon {
    width: 9px;
    height: 9px;
    filter: brightness(0) invert(1);
}

.extra-row {
    background-color: rgba(18, 0, 40, 0.95) !important;
}

.extra-content {
    padding: 10px;
    color: var(--testo-bianco);
    text-align: left;
    font-size: 0.45rem; /* Testo Bonus/Malus dimezzato */
    line-height: 1.4;
}

/* Responsive Media Queries */
@media (max-width: 515px) {
    .giocatori-table td { padding: 4px 3px; }
    .posizione-cell { width: 17px; padding-right: 1px; font-size: 0.6rem; }
    .giocatore-container { display: flex; align-items: center; position: relative; gap: 3px; }
    .giocatore-foto-container { position: relative; margin-right: 0px; }
    .giocatore-foto { width: 21px; height: 21px; }
    .squadra-logo-mobile { bottom: -1px; right: -1px; width: 10px; height: 10px; }
    .giocatore-info { flex-grow: 1; min-width: 0; }
    .giocatore-nome { font-size: 0.3rem; }
    .giocatore-cognome { font-size: 0.4rem; }
    .giocatori-title { font-size: 0.87rem; }
    .punti-cell { font-size: 0.6rem; padding-right: 7px; white-space: nowrap; }
    .toggle-cell { width: 20px; }
    .toggle-button { width: 13px; height: 13px; }
    .toggle-icon { width: 8px; height: 8px; }
    .extra-content { font-size: 0.4rem; }
}

@media (max-width: 322px) {
    .giocatori-table { font-size: 0.5rem; }
    .giocatori-table td { padding: 3px 2px; }
    .giocatore-foto { width: 19px; height: 19px; }
    .squadra-logo-mobile { width: 8px; height: 8px; }
    .giocatore-nome { font-size: 0.28rem; }
    .giocatore-cognome { font-size: 0.35rem; }
    .punti-cell { font-size: 0.57rem; }
}