/* perche guardi?? */


body {
    background-color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #000000;
    padding: 15px;
    box-sizing: border-box;
}

.contenitore-app {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border: 2px solid #ffffff;
    padding: 20px;
    border-radius: 24px;
    box-sizing: border-box;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.intestazione-brand {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    font-weight: 900;
    font-size: 32px;
    color: #000000;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

h1 {
    font-size: 20px;
    margin: 5px 0;
    
    color: #fd9712;
    display: inline-block;
    padding: 4px 7px;
    border-radius: 100px;
    letter-spacing: 1px;
    font-weight: 800;
}

.suggerimento-pulsanti {
    font-size: 11px;
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
}

.suggerimento-pulsanti span {
    display: block;
    font-size: 14px;
    color: #000000;
    margin-top: 2px;
}

.contenitore-filtri {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.pulsante-filtro {
    flex: 1;
    padding: 14px 5px;
    border: 1px solid #ff6600;
    background: #ffffff;
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    outline: none;
}

.pulsante-filtro.attivo {
    background: #000000;
    color: #ffffff;
    border-color: #f17f15;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.timer-principale {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.slot-tempo {
    border: 1px solid #222;
    padding: 15px 0;
    text-align: center;
    background: #1a1a1a;
    border-radius: 16px;
}

.numero {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.numero1 {
    font-size: 40px;
    font-weight: 800;
    color: #ff5f02;
    font-variant-numeric: tabular-nums;
}
.numero2 {
    font-size: 40px;
    font-weight: 800;
    color: #ff9102;
    font-variant-numeric: tabular-nums;
}

.etichetta {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.riquadro-riepilogo {
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.elemento-stat {
    display: block;
}

.valore-stat {
    display: inline-flex;
    align-items: center;  
    justify-content: center;
    gap: 8px;           
    font-weight: 700;
    font-size: 20px; 
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
}



.etichetta-stat {
    font-size: 13px;
    color: #999;
}


.sezione-crediti {
    font-size: 12px;
    text-align: center;
    padding: 15px 0;
    line-height: 1.5;
    color: #777;
    border-top: 1px solid #222;
}

.sezione-crediti strong {
    color: #fff;
}

.crediti-tiron {
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, #853500, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.area-sponsor {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
}

.titolo-sponsor {
    font-size: 10px;
    font-weight: 800;
    color: #444;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lista-sponsor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.nome-sponsor {
    font-size: 11px;
    color: #aaa;
    background: #1a1a1a;
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 600;
    border: 1px solid #222;
    transition: 0.2s;
}



