body {
            background-color: #05080f;
            color: #e2e8f0;
            display: flex;
            height: 100vh;
            overflow: hidden;
        }

        .glass-panel {
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 1rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .progress-bar-bg {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 9999px;
            height: 8px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            transition: width 1s ease;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: #00e5ff;
            border-radius: 10px;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* MENU DE NAVIGATION HYPER-INTERACTIF */
        .nav-item {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 4px solid transparent;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            text-align: left;
            font-weight: bold;
            color: #9CA3AF;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 229, 255, 0.15) 0%, transparent 100%);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .nav-item:hover::before,
        .nav-item.active::before {
            width: 100%;
        }

        .nav-item:hover,
        .nav-item.active {
            border-left-color: #00e5ff;
            color: #fff;
            transform: translateX(8px);
        }

        .nav-item i {
            width: 1.5rem;
            font-size: 1.25rem;
            text-align: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s;
        }

        .nav-item:hover i,
        .nav-item.active i {
            transform: scale(1.3);
            filter: brightness(1.5) drop-shadow(0 0 5px currentColor);
        }

        .ring-loader {
            position: absolute;
            inset: 0;
            border: 12px solid rgba(0, 229, 255, 0.1);
            border-top-color: #00e5ff;
            border-radius: 50%;
            animation: spin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .logo-pulse {
            animation: neonPulse 2s infinite alternate ease-in-out;
        }

        @keyframes flashLightning {

            0%,
            100% {
                opacity: 0;
            }

            5%,
            7% {
                opacity: 1;
                filter: drop-shadow(0 0 30px #00e5ff) brightness(2);
            }

            10%,
            15% {
                opacity: 0;
            }

            17%,
            20% {
                opacity: 1;
                filter: drop-shadow(0 0 20px #00e5ff) brightness(1.5);
            }

            25% {
                opacity: 0;
            }
        }

        .lightning-fx {
            animation: flashLightning 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;
            z-index: 5;
            height: 95%;
            object-fit: contain;
            pointer-events: none;
        }

        .lightning-left {
            left: -15%;
            transform: rotate(-25deg);
            bottom: 5%;
        }

        .lightning-right {
            right: -15%;
            transform: scaleX(-1) rotate(-25deg);
            bottom: 5%;
        }

        @keyframes neonPulse {
            from {
                filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
                transform: scale(0.95);
            }

            to {
                filter: drop-shadow(0 0 120px rgba(0, 229, 255, 1));
                transform: scale(1.08);
            }
        }

        .flatpickr-calendar {
            background: #111827 !important;
            border: 1px solid #00e5ff !important;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.3) !important;
        }

        .flatpickr-day.selected {
            background: #00e5ff !important;
            border-color: #00e5ff !important;
            color: #0a0f1a !important;
            font-weight: bold;
        }

        .clickable-player:hover {
            border-color: #00e5ff;
            transform: scale(1.02);
            box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
            cursor: pointer;
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .ice-rink {
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%), url('https://www.transparenttextures.com/patterns/cubes.png');
            border: 2px solid #A855F7;
            border-radius: 50% / 15%;
            position: relative;
            height: 250px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 20px;
            box-shadow: inset 0 0 50px rgba(168, 85, 247, 0.2);
        }

        .rink-line {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: rgba(255, 51, 51, 0.3);
            left: 50%;
            transform: translateX(-50%);
        }

        .player-slot {
            width: 100px;
            height: 120px;
            border: 2px dashed rgba(168, 85, 247, 0.5);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10;
            margin-top: auto;
            margin-bottom: auto;
        }

        .player-slot:hover {
            border-color: #A855F7;
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
            background: rgba(168, 85, 247, 0.1);
        }

        .player-slot.filled {
            border-style: solid;
            border-color: #A855F7;
            background: rgba(168, 85, 247, 0.2);
        }

        .lab-player-item {
            transition: all 0.2s;
            cursor: pointer;
        }

        .lab-player-item:hover {
            background: rgba(168, 85, 247, 0.2);
            border-left: 4px solid #A855F7;
        }

        @keyframes flashNeon {
            0% {
                box-shadow: 0 0 5px #4ADE80;
                border-color: #4ADE80;
            }

            50% {
                box-shadow: 0 0 20px #4ADE80, inset 0 0 10px #4ADE80;
                border-color: #fff;
            }

            100% {
                box-shadow: 0 0 5px #4ADE80;
                border-color: #4ADE80;
            }
        }

        .value-bet-card {
            animation: flashNeon 2.5s infinite alternate;
        }

        @keyframes cyberGlow {
            0% {
                text-shadow: 0 0 10px #EC4899;
            }

            50% {
                text-shadow: 0 0 30px #EC4899, 0 0 50px #EC4899;
            }

            100% {
                text-shadow: 0 0 10px #EC4899;
            }
        }

        .mc-counter-text {
            animation: cyberGlow 0.5s infinite;
        }

        /* Stats Split Buttons */
        .split-btn {
            background: #1F2937;
            color: #9CA3AF;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: bold;
            transition: all 0.2s;
            border: 1px solid #374151;
        }

        .split-btn.active {
            background: #EAB308;
            color: #0a0f1a;
            box-shadow: 0 0 10px rgba(234, 179, 8, 0.5);
            border-color: #EAB308;
        }

        .split-btn:hover:not(.active) {
            color: #fff;
            background: #374151;
            cursor: pointer;
        }

        /* MATRICE DE CONSTANCE (HEATMAP) */
        .heatmap-grid {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .heat-box {
            width: 22px;
            height: 22px;
            border-radius: 4px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: crosshair;
            position: relative;
        }

        .heat-hit {
            background: #4ADE80;
            box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
            border-color: #4ADE80;
        }

        .heat-miss {
            background: rgba(255, 51, 51, 0.2);
            border-color: rgba(255, 51, 51, 0.5);
        }

        .heat-box:hover {
            transform: scale(1.3);
            z-index: 10;
        }

        /* SLIDER TEMPOREL CYBERPUNK */
        .momentum-slider {
            -webkit-appearance: none;
            appearance: none;
            /* LA LIGNE AJOUTÉE POUR COMPATIBILITÉ */
            width: 100%;
            height: 8px;
            background: #1F2937;
            border-radius: 5px;
            outline: none;
            border: 1px solid #374151;
            margin-top: 15px;
        }

        .momentum-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #00e5ff;
            cursor: pointer;
            box-shadow: 0 0 15px #00e5ff;
            border: 3px solid #0a0f1a;
            transition: transform 0.1s;
        }

        .momentum-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }

        /* Tooltips Interactifs pour les Stats Props */
        .tooltip-container {
            position: relative;
            display: inline-flex;
            align-items: center;
            cursor: help;
            border-bottom: 1px dotted #EAB308;
        }

        .tooltip-container .tooltip-text {
            visibility: hidden;
            width: 220px;
            background-color: #1F2937;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 8px;
            position: absolute;
            z-index: 50;
            bottom: 130%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
            font-size: 10px;
            font-weight: normal;
            text-transform: none;
            line-height: 1.4;
            border: 1px solid #4B5563;
        }

        .tooltip-container .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #374151 transparent transparent transparent;
        }

        .tooltip-container:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }