 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #7ea7df 0%, #acc5e6 100%);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
        }
        header {
            background-color: #e10600;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            background: white;
            color: #e10600;
            padding: 0 5px;
            margin-right: 5px;
            border-radius: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        section {
            text-align: center;
            padding: 20px 0;
            margin-bottom: 30px;
        }
        
        .logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .logo i {
            font-size: 42px;
            color: #e10600;
            margin-right: 15px;
        }
        
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(to right, #e10600, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #ccc;
            margin-top: 10px;
        }
        
        .race-info {
            background: rgba(30, 58, 95, 0.8);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .circuit-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .circuit-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .circuit-details {
            flex: 1;
            min-width: 300px;
        }
        
        .circuit-details h2 {
            color: #e10600;
            margin-bottom: 15px;
            border-bottom: 2px solid #e10600;
            padding-bottom: 10px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .info-item {
            background: rgba(14, 26, 43, 0.7);
            padding: 15px;
            border-radius: 8px;
        }
        
        .info-item h3 {
            color: #e10600;
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .info-item p {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .year-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .year-btn {
            background-color: #e10600;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .year-btn:hover {
            background-color: #c10500;
        }
        
        .results-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .results-section {
            background: rgba(30, 58, 95, 0.8);
            border-radius: 10px;
            padding: 20px;
            min-width: 300px;
            flex: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .results-section h2 {
            color: #e10600;
            border-bottom: 2px solid #e10600;
            padding-bottom: 10px;
            margin-top: 0;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .results-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        
        .results-table th {
            background-color: #e10600;
            color: white;
            padding: 12px;
            text-align: left;
        }
        
        .results-table td {
            padding: 12px;
            border-bottom: 1px solid #2d4d80;
        }
        
        .results-table tr:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        /* Team-specific row colors */
        .red-bull { background-color: rgba(54, 113, 198, 0.2); }
        .mercedes { background-color: rgba(108, 211, 191, 0.2); }
        .ferrari { background-color: rgba(249, 21, 54, 0.2); }
        .mclaren { background-color: rgba(245, 128, 32, 0.2); }
        .alpine { background-color: rgba(34, 153, 113, 0.2); }
        .aston-martin { background-color: rgba(53, 140, 117, 0.2); }
        .alfa-romeo { background-color: rgba(201, 45, 75, 0.2); }
        .alphatauri { background-color: rgba(94, 143, 170, 0.2); }
        .haas { background-color: rgba(182, 186, 189, 0.2); }
        .williams { background-color: rgba(55, 190, 221, 0.2); }
        
        .fastest-lap {
            font-weight: bold;
            color: #ffcc00;
        }
        
        .dnf {
            color: #ff4d4d;
            font-style: italic;
        }
        
        .podium-1 {
            background: linear-gradient(90deg, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0.05) 100%);
            font-weight: bold;
        }
        
        .podium-2 {
            background: linear-gradient(90deg, rgba(192,192,192,0.2) 0%, rgba(192,192,192,0.05) 100%);
            font-weight: bold;
        }
        
        .podium-3 {
            background: linear-gradient(90deg, rgba(205,127,50,0.2) 0%, rgba(205,127,50,0.05) 100%);
            font-weight: bold;
        }
        
        .additional-info {
            background: rgba(30, 58, 95, 0.8);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .additional-info h2 {
            color: #e10600;
            margin-bottom: 15px;
            border-bottom: 2px solid #e10600;
            padding-bottom: 10px;
        }
        
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .info-card {
            background: rgba(14, 26, 43, 0.7);
            padding: 20px;
            border-radius: 10px;
        }
        
        .info-card h3 {
            color: #e10600;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .info-card ul {
            list-style-type: none;
        }
        
        .info-card li {
            padding: 8px 0;
            border-bottom: 1px solid #2d4d80;
        }
        
        .info-card li:last-child {
            border-bottom: none;
        }
        
        @media (max-width: 768px) {
            .results-container {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .race-info {
                flex-direction: column;
            }
            
            .year-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }
        
        .gallery-item {
            height: 220px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            transition: transform 0.3s;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }