        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #E63946;
            --primary-dark: #B8202C;
            --gold: #F4A100;
            --dark: #1D1D2C;
            --darker: #14141F;
            --light: #F8F9FA;
            --glass: rgba(29, 29, 44, 0.9);
        }
        body { font-family: 'Source Sans Pro', sans-serif; background: var(--darker); color: var(--light); overflow: hidden; }
        #map { width: 100%; height: 100vh; z-index: 1; }
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(180deg, #ffffffed, transparent 100%); padding: 20px 30px 40px; pointer-events: none; }
        .header-content { display: flex; align-items: center; gap: 20px; pointer-events: auto; }
        .logo-badge { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4); }
        .logo-badge svg { width: 32px; height: 32px; fill: white; }
        .title-group h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 2px; color: rgba(29, 29, 44, 0.9); text-shadow: 0 2px 10px rgba(0,0,0,0.5); line-height: 1; }
        .title-group .subtitle { font-size: 0.95rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
        .info-panel { position: fixed; bottom: 30px; left: 30px; z-index: 1000; background: var(--glass); backdrop-filter: blur(20px); border-radius: 8px; padding: 24px; max-width: 340px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
        .info-panel h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 1px; margin-bottom: 0px; display: flex; align-items: center; gap: 10px; }
        .info-panel h3::before { content: ''; width: 4px; height: 24px; background: var(--primary); border-radius: 2px; }
        .time-block { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; margin-bottom: 16px; }
        .time-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
        .time-row:last-child { margin-bottom: 0; }
        .time-icon { width: 32px; height: 32px; background: var(--dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
        .time-icon svg { width: 18px; height: 18px; fill: var(--gold); }
        .time-text { flex: 1; }
        .time-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
        .time-value { font-weight: 700; font-size: 1rem; }
        .legend-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.1); }
        .legend-line { width: 40px; height: 6px; background: var(--primary); border-radius: 3px; box-shadow: 0 0 10px rgba(230, 57, 70, 0.5); }
        .legend-line.divieto { background: #ff9900; box-shadow: 0 0 10px rgba(255, 0, 153, 0.5); }
        .stats { display: flex; gap: 16px; margin-top: 16px; }
        .stat-box { flex: 1; background: rgba(255,255,255,0.05); border-radius: 10px; padding: 12px; text-align: center; }
        .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
        .stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
        .source-info { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: rgba(255,255,255,0.7); }
        .source-info a { color: var(--gold); text-decoration: none; transition: all 0.2s ease; }
        .source-info a:hover { color: var(--primary); text-decoration: underline; }
        .traffic-restrictions-btn { width: 100%; margin-top: 12px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border: none; border-radius: 10px; padding: 12px 16px; color: white; font-family: 'Source Sans Pro', sans-serif; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3); }
        .traffic-restrictions-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4); }
        .traffic-restrictions-btn svg { width: 20px; height: 20px; fill: white; }

        /* Sezione crediti collassabile */
        .credits-section { margin-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
        .credits-toggle { padding: 12px 0; cursor: pointer; user-select: none; display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); transition: color 0.2s ease; }
        .credits-toggle:hover { color: var(--gold); }
        .credits-icon { font-size: 0.7rem; transition: transform 0.3s ease; color: var(--gold); }
        .credits-section.collapsed .credits-icon { transform: rotate(-180deg); }
        .credits-content { max-height: 200px; overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; opacity: 1; padding-top: 8px; }
        .credits-section.collapsed .credits-content { max-height: 0; opacity: 0; padding-top: 0; }
        .credits-content p { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
        .credits-content a { color: var(--gold); text-decoration: none; transition: all 0.2s ease; }
        .credits-content a:hover { color: var(--primary); text-decoration: underline; }
        .map-controls { position: fixed; bottom: 30px; right: 30px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; }
        .control-btn { width: 42px; height: 42px; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
        .control-btn:hover { background: var(--primary); transform: scale(1.05); }
        .control-btn svg { width: 22px; height: 22px; fill: white; }
        .street-list-toggle { position: fixed; top: 100px; right: 30px; z-index: 1000; }
        .toggle-btn { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 20px; color: white; font-family: 'Source Sans Pro', sans-serif; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
        .toggle-btn:hover { background: var(--primary); }
        .toggle-btn svg { width: 18px; height: 18px; fill: currentColor; }
        .street-panel { position: fixed; top: 150px; right: 30px; bottom: 100px; width: 320px; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; z-index: 1100; overflow: hidden; display: none; }
        .street-panel.active { display: block; }
        .street-panel-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .street-panel-header h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 1px; }
        .street-list { padding: 10px; height: calc(100% - 70px); overflow-y: auto; }
        .street-list::-webkit-scrollbar { width: 6px; }
        .street-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; }
        .street-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
        .street-item { padding: 12px 14px; border-radius: 10px; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
        .street-item:hover { background: rgba(255,255,255,0.1); }
        .street-item::before { content: ''; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
        .street-item.divieto::before { background: rgb(255, 153, 0); }
        .street-item.not-found::before { background: rgba(255,255,255,0.3); }
        .street-item.not-found { color: rgba(255,255,255,0.4); }
        .leaflet-control-zoom { display: none !important; }
        .leaflet-popup-content-wrapper { background: var(--dark); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
        .leaflet-popup-content { color: white; font-family: 'Source Sans Pro', sans-serif; margin: 14px 18px; }
        .leaflet-popup-tip { background: var(--dark); }
        .popup-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
        .popup-status { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        .custom-marker { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 50%; border: 3px solid white; box-shadow: 0 4px 15px rgba(230, 57, 70, 0.5); display: flex; align-items: center; justify-content: center; }
        .custom-marker svg { width: 20px; height: 20px; fill: white; }
        /* Stili per header collassabile mobile */
        .info-panel h3 { position: relative; cursor: pointer; user-select: none; padding-right: 35px; }
        .info-panel h3 .toggle-icon { position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.2rem; transition: transform 0.3s ease; color: var(--gold); }
        .info-panel.collapsed h3 .toggle-icon { transform: translateY(-50%) rotate(-180deg); }
        .info-panel-content { max-height: 1000px; overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease; opacity: 1; }
        .info-panel.collapsed .info-panel-content { max-height: 0; opacity: 0; }

        @media (max-width: 768px) {
            .header { padding: 15px 20px 30px; }
            .logo-badge { width: 50px; height: 50px; }
            .title-group h1 { font-size: 1.6rem; }
            .info-panel { left: 15px; right: 15px; bottom: 40px; max-width: none; padding: 10px; }
            .info-panel.collapsed { padding-bottom: 10px; }
            .street-list-toggle { top: 90px; right: 15px; }
            .street-panel { left: 15px; right: 15px; top: 140px; bottom: 200px; width: auto; }
            .map-controls { bottom: auto; top: 90px; right: auto; left: 15px; flex-direction: row; }
        }

        /* Desktop - nascondi icona toggle */
        @media (min-width: 769px) {
            .info-panel h3 { cursor: default; }
            .info-panel h3 .toggle-icon { display: none; }
        }

        /* Modal Styles */
        .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px); }
        .modal.active { display: block; }
        .modal-content { background: var(--glass); backdrop-filter: blur(20px); margin: 5% auto; padding: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; max-width: 900px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); animation: modalSlideIn 0.3s ease; }
        @keyframes modalSlideIn { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
        .modal-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 30px; border-bottom: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); border-radius: 16px 16px 0 0; }
        .modal-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 1px; color: var(--light); margin: 0; }
        .modal-close { background: none; border: none; color: var(--light); font-size: 2.5rem; font-weight: 300; cursor: pointer; transition: all 0.2s ease; line-height: 1; padding: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
        .modal-close:hover { background: var(--primary); color: white; transform: rotate(90deg); }
        .modal-body { padding: 30px; max-height: 70vh; overflow-y: auto; color: var(--light); }
        .modal-body::-webkit-scrollbar { width: 8px; }
        .modal-body::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
        .modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
        .modal-body::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }
        .modal-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 1px; color: var(--gold); margin-top: 24px; margin-bottom: 12px; }
        .modal-body h3:first-child { margin-top: 0; }
        .modal-body p { line-height: 1.8; margin-bottom: 16px; color: rgba(255,255,255,0.9); }
        .modal-body ul, .modal-body ol { margin-left: 20px; margin-bottom: 16px; line-height: 1.8; }
        .modal-body li { margin-bottom: 8px; color: rgba(255,255,255,0.9); }
        .modal-body strong { color: var(--gold); font-weight: 700; }
        .modal-body hr { border: none; border-top: 2px solid rgba(255,255,255,0.1); margin: 30px 0; }

        @media (max-width: 768px) {
            .modal-content { margin: 10px; max-width: none; }
            .modal-header { padding: 20px; }
            .modal-header h2 { font-size: 1.4rem; }
            .modal-body { padding: 20px; max-height: 65vh; }
            .modal-body h3 { font-size: 1.2rem; }
        }
		
		.fa {font-size: x-large; color: #fff;}