/* ==========================================================================
   PWA Shared — Eagles Golf
   File: /assets/css/pwa-shared.css
   ========================================================================== */

/* --- Reset & Base -------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #010A10;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

/* --- Page shell ---------------------------------------------------------- */
.pwa-page {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0 16px 80px;
    max-width: 420px;
    margin: 0 auto;
}
@media (display-mode: standalone) {
    .pwa-page {
        padding-top: env(safe-area-inset-top, 20px);
        padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    }
}

/* --- Page header --------------------------------------------------------- */
.pwa-page-header {
    text-align: center;
    padding: 20px 0 16px;
}
.pwa-page-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #C10206;
}
.pwa-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* --- Tab pills ----------------------------------------------------------- */
.pwa-tabs {
    display: flex;
    gap: 8px;
    padding: 0 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.pwa-tabs::-webkit-scrollbar { display: none; }
.pwa-tab {
    flex-shrink: 0;
    padding: 7px 18px;
    border-radius: 20px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.15s;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
}
.pwa-tab--active {
    background: #C10206;
    color: #fff;
}

/* --- Section Hero -------------------------------------------------------- */
.pwa-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    padding: 40px 24px 28px;
    text-align: center;
    margin-bottom: 20px;
}
.pwa-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.2) 0 1px, transparent 1.5px 100%);
    background-size: 12px 12px;
    pointer-events: none;
}
.pwa-hero--tpc { background: linear-gradient(170deg, #155D98 0%, #0a2a4a 50%, #010A10 100%); }
.pwa-hero--mp { background: linear-gradient(170deg, #C10206 0%, #6b0104 50%, #010A10 100%); }
.pwa-hero--reg { background: linear-gradient(170deg, #1a2332 0%, #0d1520 50%, #010A10 100%); }
.pwa-hero--tools { background: linear-gradient(170deg, #2a1a0a 0%, #1a1008 50%, #010A10 100%); }
.pwa-hero-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.pwa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.pwa-hero-badge-bar {
    width: 3px;
    height: 12px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
}
.pwa-hero--tpc .pwa-hero-badge-bar { background: #5ba3d9; }
.pwa-hero--mp .pwa-hero-badge-bar { background: #ff6b6b; }
.pwa-hero--tools .pwa-hero-badge-bar { background: #d4a44a; }
.pwa-hero-badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.pwa-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.pwa-hero-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
}
.pwa-hero-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}
.pwa-hero--tpc .pwa-hero-glow { background: #155D98; top: -40px; right: -40px; }
.pwa-hero--mp .pwa-hero-glow { background: #C10206; top: -40px; left: -40px; }
.pwa-hero--tools .pwa-hero-glow { background: #d4a44a; bottom: -40px; right: -20px; }

/* --- Card button (vertical list) ----------------------------------------- */
.pwa-card-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: #fff;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.pwa-card-btn:active {
    transform: scale(0.97);
    background: rgba(255,255,255,0.07);
}
.pwa-card-btn--accent-tpc {
    background: linear-gradient(135deg, rgba(21,93,152,0.25), rgba(21,93,152,0.05));
    border-color: rgba(21,93,152,0.3);
}
.pwa-card-btn--accent-mp {
    background: linear-gradient(135deg, rgba(193,2,6,0.25), rgba(193,2,6,0.05));
    border-color: rgba(193,2,6,0.3);
}
.pwa-card-btn--future {
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.12);
    opacity: 0.35;
    pointer-events: none;
}
.pwa-card-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.pwa-card-btn-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.3) 0 1px, transparent 1.5px 100%);
    background-size: 8px 8px;
}
.pwa-card-btn-icon--tpc { background: linear-gradient(135deg, #155D98, #0d3d6a); }
.pwa-card-btn-icon--mp { background: linear-gradient(135deg, #C10206, #8a0104); }
.pwa-card-btn-icon--default { background: rgba(255,255,255,0.06); }
.pwa-card-btn-icon--gold { background: linear-gradient(135deg, #8a6914, #5a440e); }
.pwa-card-btn-icon--green { background: linear-gradient(135deg, #1a5c2a, #0e3a18); }
.pwa-card-btn-icon svg,
.pwa-card-btn-icon img { width: 22px; height: 22px; }
.pwa-card-btn-text { flex: 1; min-width: 0; }
.pwa-card-btn-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.pwa-card-btn-desc {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}
.pwa-card-btn-arrow {
    color: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.pwa-card-btn-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Card grid (2x2) ----------------------------------------------------- */
.pwa-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.pwa-grid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: #fff;
    transition: all 0.15s;
}
.pwa-grid-card:active {
    transform: scale(0.96);
    background: rgba(255,255,255,0.07);
}
.pwa-grid-card--mp {
    background: linear-gradient(180deg, #C10206, #6b0104);
    border-color: rgba(193,2,6,0.4);
}
.pwa-grid-card-icon { font-size: 24px; }
.pwa-grid-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* --- List item ----------------------------------------------------------- */
.pwa-list { display: flex; flex-direction: column; gap: 8px; }
.pwa-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: #fff;
}
.pwa-list-item-rank {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: rgba(255,255,255,0.3);
    min-width: 28px;
    text-align: center;
}
.pwa-list-item-rank--top3 { color: #C10206; }
.pwa-list-item-name {
    font-size: 13px;
    font-weight: 700;
    flex: 1;
}
.pwa-list-item-meta {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}
.pwa-list-item-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
}

/* --- Search bar ---------------------------------------------------------- */
.pwa-search {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #010A10;
    padding: 12px 0;
}
.pwa-search input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
}
.pwa-search input::placeholder { color: rgba(255,255,255,0.3); }
.pwa-search input:focus { border-color: #C10206; }
.pwa-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    pointer-events: none;
}

/* --- Badge --------------------------------------------------------------- */
.pwa-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 6px;
}
.pwa-badge--tpc { background: rgba(21,93,152,0.3); color: #5ba3d9; }
.pwa-badge--concluded { background: rgba(76,175,80,0.15); color: #66bb6a; }
.pwa-badge--scheduled { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }

/* --- Empty state --------------------------------------------------------- */
.pwa-empty {
    text-align: center;
    padding: 48px 16px;
    color: rgba(255,255,255,0.25);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* --- Accordion (regolamenti) --------------------------------------------- */
.pwa-accordion { display: flex; flex-direction: column; gap: 6px; }
.pwa-accordion details {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}
.pwa-accordion summary {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pwa-accordion summary::after {
    content: '+';
    font-size: 18px;
    color: rgba(255,255,255,0.3);
    transition: transform 0.2s;
}
.pwa-accordion details[open] summary::after {
    content: '\2212';
    color: #C10206;
}
.pwa-accordion .pwa-accordion-body {
    padding: 0 16px 16px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

/* --- Grid inner (identica alla home pwa.php) ----------------------------- */
.pwa-grid-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 14px;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}
.pwa-grid-inner .pwa-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: #fff;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
    padding: 24px 12px;
    aspect-ratio: auto;
}
.pwa-grid-inner .pwa-card:active {
    transform: scale(0.96);
    background: rgba(255,255,255,0.07);
}
.pwa-grid-inner .pwa-card--tpc {
    background: linear-gradient(180deg, rgba(21,93,152,0.95), rgba(16,18,24,0.95));
    border-color: rgba(21,93,152,0.4);
}
.pwa-grid-inner .pwa-card--mp {
    background: linear-gradient(180deg, #C10206, #6b0104);
    border-color: rgba(193,2,6,0.4);
}
.pwa-grid-inner .pwa-card--louisiana {
    background: linear-gradient(180deg, rgba(247,148,32,0.85), rgba(16,18,24,0.95));
    border-color: rgba(247,148,32,0.4);
}
.pwa-grid-inner .pwa-card--future {
    opacity: 0.35;
    border-style: dashed;
    pointer-events: none;
}
.pwa-grid-inner .pwa-card-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.pwa-grid-inner .pwa-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

/* --- Section title ------------------------------------------------------- */
.pwa-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.25);
    padding: 16px 0 8px;
}

/* --- Player avatar ------------------------------------------------------- */
.pwa-player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.pwa-player-avatar-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.pwa-player-chevron {
    color: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.pwa-player-item {
    cursor: pointer;
}

/* --- Modal --------------------------------------------------------------- */
.pwa-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.pwa-modal.hidden { display: none; }
.pwa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.pwa-modal-content {
    position: relative;
    background: #0D1117;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px 20px 0 0;
    padding: 32px 24px 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: pwa-modal-slide 0.3s ease;
}
@keyframes pwa-modal-slide {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.pwa-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}
.pwa-modal-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.pwa-modal-avatar img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.pwa-modal-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.pwa-modal-details {
    text-align: left;
}
.pwa-modal-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pwa-modal-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}
.pwa-modal-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 900;
}

/* --- Tab bar bottom ------------------------------------------------------ */
.pwa-bottom-bar {
    display: none;
}
@media (display-mode: standalone) {
    .pwa-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(1,10,16,0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 6px 0;
        padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
        justify-content: space-around;
        align-items: center;
    }
}
.pwa-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 20px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: none;
    border: none;
    cursor: pointer;
}
.pwa-bottom-item:active { color: rgba(255,255,255,0.8); }
.pwa-bottom-item--home { color: #C10206; }

/* --- Tab panel visibility ------------------------------------------------ */
.pwa-tab-panel { display: none; }
.pwa-tab-panel--active { display: block; }

/* --- Race card (gare prossima) ------------------------------------------- */
.pwa-race-hero {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}
.pwa-race-hero-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #C10206;
    margin-bottom: 12px;
}
.pwa-race-hero-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 0.9;
    color: #fff;
}
.pwa-race-hero-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #C10206;
}
.pwa-race-hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-top: 10px;
}
.pwa-race-hero-location {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* --- Race list item (legacy — kept for retrocompatibility) --------------- */
.pwa-race-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: #fff;
}
.pwa-race-item-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 44px;
}
.pwa-race-item-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}
.pwa-race-item-month {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #C10206;
}
.pwa-race-item-info { flex: 1; min-width: 0; }
.pwa-race-item-name {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pwa-race-item-location {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

/* --- Race card cinematic ------------------------------------------------- */
.pwa-race-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.pwa-race-card:active { transform: scale(0.98); }

/* Varianti */
.pwa-race-card--tpc {
    background: linear-gradient(170deg, rgba(21,93,152,0.2) 0%, rgba(1,10,16,0.95) 100%);
    border: 1px solid rgba(21,93,152,0.15);
}
.pwa-race-card--tpc-next {
    background: linear-gradient(170deg, rgba(21,93,152,0.3) 0%, rgba(1,10,16,0.95) 100%);
    border: 1px solid rgba(21,93,152,0.25);
}
.pwa-race-card--plain {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

/* Glow */
.pwa-race-card-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #155D98;
    filter: blur(50px);
    opacity: 0.1;
    pointer-events: none;
}
.pwa-race-card--tpc-next .pwa-race-card-glow { opacity: 0.15; }

/* Date block */
.pwa-race-card-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 52px;
}
.pwa-race-card-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 0.9;
}
.pwa-race-card-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

/* Club logo */
.pwa-race-card-logo { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; opacity: 0.55; }
.pwa-race-card-logo img { width: 44px; height: 44px; object-fit: contain; }

/* Content */
.pwa-race-card-content { flex: 1; min-width: 0; }
.pwa-race-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.pwa-race-card-stage {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.pwa-race-card-stage--concluded { color: rgba(255,255,255,0.5); }
.pwa-race-card-stage--next { color: #5ba3d9; }
.pwa-race-card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pwa-race-card-location {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Icona classifiche Eagles su card con risultati */
.pwa-rc-classifica {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.pwa-race-card:active .pwa-rc-classifica {
    background: rgba(76,175,80,0.15);
    border-color: rgba(76,175,80,0.3);
}
