        :root {
            --f1-red: #e10600;
            --f1-dark: #12121a;
            --f1-graphite: #1c1c26;
            --f1-grey: #b6b6c2;
            --f1-light: #f4f4f6;
            --f1-white: #ffffff;
            --f1-accent-gold: #ffbc00;
            --rad: 12px;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            --transition: all 0.3s ease;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--f1-dark);
            color: var(--f1-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a { color: var(--f1-accent-gold); text-decoration: none; transition: var(--transition); }
        a:hover { text-decoration: underline; color: var(--f1-red); }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; background: var(--f1-dark); border-bottom: 2px solid var(--f1-red); padding: 10px 20px; }
        .my-logo { font-family: 'Arial Black', Impact, sans-serif; font-weight: 900; font-size: 2.5rem; letter-spacing: 2px; text-transform: uppercase; color: var(--f1-white); }
        .my-logo a, .my-logo a:visited, .my-logo a:hover { text-decoration: none; color: inherit; }
        .my-logo span { color: var(--f1-red); }
        .tagline { display: block; font-size: 0.8rem; color: var(--f1-grey); text-transform: uppercase; letter-spacing: 1px; }
        .nav-wrap { position: relative; }
        .nav-toggle { display: none; background: none; border: none; font-size: 2rem; color: white; cursor: pointer; margin-right: 8px; }
        .main-nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
        .main-nav ul { display: flex; list-style: none; gap: 18px; padding: 0; }
        .main-nav a { color: #dddddd; font-size: 0.9rem; font-weight: 600; padding: 6px 8px; }
        .main-nav a:hover { color: white; background: rgba(225, 6, 0, 0.3); border-radius: 6px; text-decoration: none; }
        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .main-nav { display: none; width: 100%; background: var(--f1-graphite); padding: 15px; border-radius: 8px; margin-top: 8px; }
            .main-nav.open { display: block; }
            .main-nav ul { flex-direction: column; gap: 8px; }
            .my-logo { font-size: 1.8rem; }
        }
        .breadcrumbs { background: rgba(255, 255, 255, 0.03); padding: 12px 20px; font-size: 0.85rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
        .breadcrumbs ol { display: flex; list-style: none; gap: 10px; max-width: 1240px; margin: 0 auto; flex-wrap: wrap; }
        .breadcrumbs li+li::before { content: "›"; color: var(--f1-grey); margin-right: 10px; }
        .breadcrumbs a { color: var(--f1-grey); }
        .breadcrumbs a:hover { color: white; }
        .breadcrumbs li[aria-current="page"] { color: var(--f1-accent-gold); }
        .btn-play { display: inline-block; background: var(--f1-red); color: white !important; padding: 12px 28px; border-radius: 40px; font-weight: 700; letter-spacing: 0.5px; transition: all 0.25s ease; }
        .btn-play:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(225, 6, 0, 0.35); text-decoration: none; }
        .section-block { padding: 60px 20px; }
        .section-title { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800; color: white; margin-bottom: 24px; border-left: 6px solid var(--f1-red); padding-left: 18px; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
        .card { background: var(--f1-graphite); border-radius: var(--rad); padding: 24px; transition: transform 0.2s, box-shadow 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
        .card i { color: var(--f1-red); font-size: 2rem; margin-bottom: 10px; }
        .card h3 { color: white; font-size: 1.1rem; }
        .data-table-wrap { overflow-x: auto; }
        .data-table { width: 100%; border-collapse: collapse; background: var(--f1-graphite); border-radius: 10px; overflow: hidden; min-width: 500px; }
        .data-table th { background: var(--f1-red); color: white; padding: 12px; text-align: left; }
        .data-table td { padding: 12px; border-bottom: 1px solid #333; }
        .data-table tr:last-child td { border-bottom: none; }
        .hero { text-align: center; padding: 70px 20px 50px; background: radial-gradient(circle at 30% 20%, rgba(225,6,0,0.15), transparent 60%), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 20px); border-bottom: 1px solid #292933; }
        .hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); font-weight: 900; color: #fff; text-transform: uppercase; }
        .hero h1 span { color: var(--f1-red); }
        .hero .lead { max-width: 760px; margin: 20px auto 0; font-size: 1.05rem; color: var(--f1-grey); }
        .hero .etagline { font-size: 0.9rem; color: var(--f1-grey); margin-top: 8px; }
        .review-panel { background: rgba(255, 255, 255, 0.03); border-radius: 12px; padding: 22px; margin-top: 20px; border-top: 2px solid var(--f1-red); }
        .form-group { margin-bottom: 20px; }
        .form-group label { font-weight: 600; display: block; margin-bottom: 6px; color: white; }
        .form-group input, .form-group textarea { width: 100%; border: none; background: #1c2530; color: white; border-radius: 8px; padding: 14px; font-size: 1rem; border: 1px solid transparent; }
        .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--f1-red); }
        footer { background: #0a0a0e; color: #aaa; padding: 50px 0 0; margin-top: 40px; border-top: 3px solid var(--f1-red); }
        .footer-inner { max-width: 1250px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; padding: 0 20px 30px; }
        footer h4 { color: white; margin-bottom: 16px; font-size: 1rem; }
        footer ul { list-style: none; padding: 0; }
        footer li { margin-bottom: 8px; }
        friend-link { display: block; background: #14141a; border: 1px solid #2c2c36; border-radius: 10px; margin: 20px auto; max-width: 1250px; padding: 20px; color: #ccc; font-size: 0.95rem; }
        friend-link a { margin-right: 14px; display: inline-block; margin-bottom: 6px; color: var(--f1-grey); }
        friend-link a:hover { color: white; }
        .copy-bar { text-align: center; padding: 18px 10px; background: #0d0d10; border-top: 1px solid rgba(255,255,255,0.05); color: #889; font-size: 0.85rem; }
        .quick-facts { background: linear-gradient(120deg, #261214, #190104); border-radius: 14px; padding: 28px; border-left: 8px solid var(--f1-red); margin-bottom: 20px; }
        .quick-facts ul { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; }
        .quick-facts li { flex: 1 1 200px; }
        .quick-facts strong { color: white; }
        .fa-star, .fa-star-half-alt { color: var(--f1-accent-gold); }
        figure { text-align: center; }
        .featured-image { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6); max-height: 420px; object-fit: cover; }
        figcaption { color: #aaa; font-size: 0.85rem; margin-top: 8px; }
        .multi-role { display:flex; flex-wrap:wrap; gap:20px; align-items:center; background: #0f0f15; border-radius: 18px; padding: 15px 20px; }
        @media (max-width: 480px) {
            .hero { padding: 40px 15px; }
            .section-block { padding: 30px 12px; }
        }
        .highlight { background: rgba(255, 188, 0, 0.1); border-left: 4px solid var(--f1-accent-gold); padding: 12px 18px; border-radius: 0 10px 10px 0; }
        .newsletter-box { background: #181822; padding: 24px; border-radius: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 15px; }
        .newsletter-box input { flex: 1; min-width: 150px; background: #262631; border: 1px solid #363646; color: white; padding: 10px 16px; border-radius: 40px; }
