:root {
            --f1-red: #e10600;
            --f1-black: #15151e;
            --f1-white: #ffffff;
            --f1-silver: #f8f9fa;
            --f1-grey: #6c757d;
            --grid-color: #1e1e28;
            --accent-yellow: #ffd700;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--f1-silver);
            background-image: linear-gradient(to bottom, #0a0a0f 0%, var(--f1-black) 10%, var(--f1-silver) 100%);
            background-attachment: fixed;
        }
        a {
            color: var(--f1-red);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff4d4d;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--f1-black);
            border-bottom: 3px solid var(--f1-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--f1-white);
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(90deg, var(--f1-red), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(225, 6, 0, 0.3);
        }
        .my-logo:hover {
            animation: pulse 1s infinite;
        }
        @keyframes pulse {
            0% { text-shadow: 0 0 10px rgba(225, 6, 0, 0.3); }
            50% { text-shadow: 0 0 20px rgba(225, 6, 0, 0.7); }
            100% { text-shadow: 0 0 10px rgba(225, 6, 0, 0.3); }
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--f1-white);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--f1-red);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--f1-white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--grid-color);
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: var(--f1-white);
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        .mobile-nav a:hover {
            border-left-color: var(--f1-red);
            background-color: rgba(225, 6, 0, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(255, 255, 255, 0.05);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--f1-grey);
        }
        .breadcrumb a {
            color: var(--f1-grey);
        }
        .breadcrumb a:hover {
            color: var(--f1-red);
        }
        .breadcrumb .current {
            color: var(--f1-white);
            font-weight: bold;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--f1-white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--f1-red);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--f1-black);
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px dashed var(--f1-red);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: var(--f1-black);
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--f1-red);
        }
        h3 {
            font-size: 1.6rem;
            color: #444;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--f1-grey);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            font-weight: 500;
            color: #555;
            background: linear-gradient(to right, #f8f9fa, #fff);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            border-left: 4px solid var(--accent-yellow);
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--accent-yellow);
            margin: 25px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--f1-black);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid var(--f1-red);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--f1-red);
            margin-bottom: 15px;
        }
        .stat-card h4 {
            color: var(--f1-white);
            margin-bottom: 10px;
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--accent-yellow);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--f1-silver);
            transition: transform 0.5s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--f1-grey);
            margin-top: -15px;
            margin-bottom: 25px;
        }
        aside {
            background-color: var(--f1-white);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
            padding-bottom: 25px;
        }
        .widget:last-child {
            border-bottom: none;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: var(--f1-black);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--f1-red);
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--f1-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #c10500;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ddd;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-yellow);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 6px;
            resize: vertical;
            font-family: inherit;
            margin-bottom: 15px;
        }
        .comment-form button {
            background-color: var(--f1-black);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background-color: var(--f1-red);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dotted #eee;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            color: #444;
            display: flex;
            align-items: center;
        }
        .related-links a::before {
            content: '🏎️';
            margin-right: 10px;
        }
        .related-links a:hover {
            color: var(--f1-red);
            padding-left: 5px;
        }
        footer {
            background-color: var(--f1-black);
            color: var(--f1-white);
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--f1-white);
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--f1-white);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--f1-red);
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            text-align: center;
        }
        friend-link a {
            color: var(--accent-yellow);
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        .last-updated {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 15px;
            border-radius: 6px;
            margin: 30px 0;
            text-align: center;
            font-weight: bold;
            color: #555;
            border-left: 4px solid var(--f1-red);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article, aside {
                padding: 25px 20px;
            }
            .header-container {
                padding: 12px 0;
            }
        }
