        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #121212;
            color: #f0f0f0;
            overflow-x: hidden;
        }
        
        .racing-gradient {
            background: linear-gradient(135deg, #fea23d 0%, #d67a15 100%);
        }
        
        .checkered-flag {
            background-image: 
                linear-gradient(45deg, #000 25%, transparent 25%),
                linear-gradient(-45deg, #000 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #000 75%),
                linear-gradient(-45deg, transparent 75%, #000 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #fea23d;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .active::after {
            width: 100%;
        }
        
        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(254, 162, 61, 0.2);
        }
        
        .speedometer {
            position: relative;
            width: 100px;
            height: 50px;
            overflow: hidden;
            display: inline-block;
        }
        
        .speedometer::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 5px solid #fea23d;
            border-top-color: transparent;
            border-right-color: transparent;
            bottom: 0;
            left: 0;
        }
        
        .speedometer::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 40px;
            background-color: #f0f0f0;
            bottom: 5px;
            left: 48px;
            transform-origin: bottom;
            transform: rotate(45deg);
            animation: speedometer 3s ease-in-out infinite;
        }
        
        @keyframes speedometer {
            0% { transform: rotate(-45deg); }
            50% { transform: rotate(45deg); }
            100% { transform: rotate(-45deg); }
        }
        
        .racing-line {
            height: 4px;
            background: repeating-linear-gradient(
                to right,
                #fea23d,
                #fea23d 20px,
                transparent 20px,
                transparent 40px
            );
            animation: moveLine 2s linear infinite;
        }
        
        @keyframes moveLine {
            0% { background-position: 0 0; }
            100% { background-position: 40px 0; }
        }
        
        .social-icon {
            transition: transform 0.3s ease, color 0.3s ease;
        }
        
        .social-icon:hover {
            transform: scale(1.2);
            color: #fea23d;
        }
        
        .schedule-item {
            transition: transform 0.3s ease;
        }
        
        .schedule-item:hover {
            transform: translateX(10px);
        }
        .thumbnail {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .thumbnail:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .modal {
            transition: opacity 0.3s ease;
        }
        .modal-content {
            transition: transform 0.3s ease;
        }
        .modal.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal.active .modal-content {
            transform: scale(1);
        }
