* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f8fafc;
            color: #0a0f1c;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f0c1f 0%, #1a1625 100%);
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid #e80020;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 10px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            text-decoration: none;
            background: linear-gradient(150deg, #fff 30%, #ff4b4b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #e80020;
            background: none;
            -webkit-text-fill-color: initial; 
        }
        .nav-links {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            color: #e8e9f0;
            text-decoration: none;
            font-size: 1.02rem;
            font-weight: 500;
            padding: 0.45rem 0.7rem;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links a:hover {
            background: #e80020;
            color: #fff;
        }
        .menu-toggle {
            display: none;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            font-size: 1.7rem;
            padding: 0.2rem 0.8rem;
            border-radius: 12px;
            cursor: pointer;
        }
        .breadcrumb {
            background: #f1f5f9;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li + li::before {
            content: "›";
            margin: 0 6px;
            color: #64748b;
        }
        .breadcrumb a {
            color: #1e293b;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb li:last-child { color: #475569; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem 0;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
                gap: 2.5rem;
            }
            .sidebar {
                position: sticky;
                top: 100px;
                align-self: start;
            }
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.15;
            font-weight: 800;
            background: linear-gradient(135deg, #0f172a 0%, #e80020 80%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 0.5rem 0 1rem;
            letter-spacing: -1px;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            color: #0f172a;
            border-left: 6px solid #e80020;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 2rem 0 0.8rem;
            color: #1e293b;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem;
            color: #334155;
        }
        p {
            margin-bottom: 1.2rem;
            color: #1e293b;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 400;
            color: #2d3a4f;
            background: #eef2ff;
            padding: 1.2rem 1.4rem;
            border-radius: 24px;
            border-left: 6px solid #e80020;
        }
        .highlight-box {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border-radius: 24px;
            padding: 1.5rem;
            margin: 1.8rem 0;
            border: 1px solid #e2e8f0;
        }
        .special-char {
            font-weight: 700; 
            background: #f1f5f9;
            padding: 0.2em 0.5em;
            border-radius: 12px;
        }
        .fa-ul-custom {
            margin-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        .fa-ul-custom li {
            margin: 0.5rem 0;
        }
        .table-responsive {
            overflow-x: auto;
            border-radius: 18px;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        th {
            background: #0f172a;
            color: white;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 14px 16px;
            border-bottom: 1px solid #e9edf2;
        }
        tr:hover td {
            background: #f8fafc;
        }
        .race-date {
            color: #e80020;
            font-weight: 700;
            font-size: 0.95rem;
        }
        .country-flag {
            font-size: 1.3rem;
        }
        .featured-img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            margin: 1.5rem 0;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border: 1px solid #fff;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 60px;
            padding: 4px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            border: 1px solid #dbe0e8;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 0.8rem 1.5rem;
            background: transparent;
            font-size: 1.1rem;
        }
        .search-box button {
            background: #e80020;
            border: none;
            border-radius: 60px;
            padding: 0.8rem 2rem;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            opacity: 0.8;
        }
        .user-interact {
            background: #ffffffd8;
            backdrop-filter: blur(4px);
            border-radius: 28px;
            padding: 2rem 1.8rem;
            border: 1px solid rgba(255,255,255,0.5);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            margin-top: 2.5rem;
        }
        .form-grid {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group label {
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 40px;
            border: 1px solid #cbd5e1;
            font-family: inherit;
            font-size: 1rem;
            background: white;
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
        }
        .rating-stars i {
            color: #cbd5e1;
            transition: color 0.1s;
        }
        .rating-stars i.active {
            color: #f59e0b;
        }
        .btn-submit {
            background: #0f172a;
            color: white;
            border: none;
            border-radius: 60px;
            padding: 14px 24px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-submit:hover { background: #e80020; }
        .side-card {
            background: white;
            border-radius: 22px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.02);
            border: 1px solid #e2e8f0;
            margin-bottom: 1.6rem;
        }
        .side-card h3 {
            font-size: 1.3rem;
            margin-top: 0;
            border-bottom: 2px solid #f0f3f8;
            padding-bottom: 8px;
        }
        .side-card a {
            color: #0f172a;
            font-weight: 500;
            text-decoration: none;
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #f1f5f9;
            transition: color 0.1s, padding-left 0.1s;
        }
        .side-card a:hover {
            color: #e80020;
            padding-left: 5px;
        }
        .site-footer {
            background: #0a0f1d;
            color: #b9c0d0;
            padding-top: 3rem;
            margin-top: 4rem;
            border-top: 3px solid #e80020;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            padding-bottom: 2rem;
        }
        .footer-grid a {
            color: #b9c0d0;
            text-decoration: none;
        }
        .footer-grid a:hover { color: #fff; }
        .friend-link {
            display: block;
            padding: 1rem 0;
            font-style: normal;
            background: #111827;
            border-radius: 18px;
            padding-left: 1.5rem;
            margin-top: 1rem;
        }
        .friend-link a {
            color: #ffabab;
            text-decoration: none;
            padding: 0.2rem 0.8rem;
        }
        .copyright {
            background: #060913;
            padding: 1.2rem 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #1d2438;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
            }
            .nav-links.show {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            .lead {
                font-size: 1.1rem;
            }
            .header-inner {
                align-items: center;
            }
        }
        @media (min-width: 769px) {
            .menu-toggle {
                display: none !important;
            }
        }
        .btn-like {
            background: #f1f5f9;
            border: none;
            padding: 8px 16px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn-like:hover { background: #e2e8f0; }
        .icon-spacer { margin-right: 6px; }
