        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #e10600;
            --primary-dark: #b00500;
            --secondary: #1e1e1e;
            --accent: #ffd700;
            --bg: #0f0f0f;
            --bg-card: #1a1a1a;
            --bg-section: #141414;
            --text: #f0f0f0;
            --text-muted: #aaa;
            --text-dark: #222;
            --border: #333;
            --radius: 12px;
            --radius-sm: 6px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --max-width: 1200px;
            --header-h: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: #ff4d4d;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--secondary);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(225, 6, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-h);
            padding: 0 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #fff;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fff;
        }
        .my-logo span {
            color: var(--primary);
        }
        .my-logo .fa-flag-checkered {
            color: var(--accent);
            font-size: 1.4rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
        }
        .nav-list li a {
            color: #ddd;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s;
            position: relative;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(225, 6, 0, 0.15);
            color: var(--accent);
            text-decoration: none;
        }
        .nav-list li a.active {
            background: var(--primary);
            color: #fff;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb-wrap {
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: var(--primary);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a0000 0%, #2d0a0a 40%, #0f0f0f 100%);
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 2px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🏁";
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 18rem;
            opacity: 0.04;
            pointer-events: none;
            transform: rotate(-15deg);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
            color: #fff;
            margin-bottom: 16px;
        }
        .hero h1 span {
            color: var(--primary);
            background: linear-gradient(135deg, var(--primary), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 24px;
            font-weight: 300;
        }
        .hero .badge {
            display: inline-block;
            background: var(--accent);
            color: var(--text-dark);
            padding: 6px 20px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        section {
            padding: 50px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        section:last-of-type {
            border-bottom: none;
        }
        .section-title {
            font-size: clamp(1.6rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 12px;
            color: #fff;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin-top: 6px;
            border-radius: 4px;
        }
        .section-sub {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 32px;
            max-width: 720px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }
        .card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--accent);
        }
        .card h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: #fff;
        }
        .card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .card .fa-solid,
        .card .fa-regular {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 12px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: rgba(0, 0, 0, 0.7);
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #ccc;
            border-top: 1px solid var(--border);
        }
        .search-box {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 60px;
            border: 2px solid var(--border);
            background: var(--bg-card);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-box input:focus {
            border-color: var(--primary);
        }
        .search-box button {
            padding: 14px 32px;
            border-radius: 60px;
            border: none;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: var(--primary-dark);
            transform: scale(1.03);
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: var(--bg-card);
            color: #fff;
            font-size: 1rem;
            font-family: var(--font);
            transition: border 0.3s;
            resize: vertical;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
        }
        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 24px;
            cursor: pointer;
        }
        .btn-submit {
            padding: 14px 36px;
            border-radius: 60px;
            border: none;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-submit:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .rating-stars .fa-star {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars .fa-star.active,
        .rating-stars .fa-star:hover {
            color: var(--accent);
            transform: scale(1.1);
        }
        .rating-stars .fa-star:hover~.fa-star {
            color: #555;
            transform: scale(1);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
            list-style: none;
            margin: 20px 0;
        }
        .link-list li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            transition: all 0.25s;
            font-weight: 500;
        }
        .link-list li a:hover {
            border-color: var(--primary);
            background: rgba(225, 6, 0, 0.08);
            text-decoration: none;
            transform: translateX(4px);
        }
        .link-list li a .fa-solid {
            color: var(--primary);
            font-size: 0.85rem;
        }
        footer {
            background: #0a0a0a;
            border-top: 3px solid var(--primary);
            padding: 40px 0 20px;
            margin-top: 20px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
        }
        footer h4 {
            color: var(--accent);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer p,
        footer li {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        footer ul {
            list-style: none;
        }
        footer ul li a {
            color: var(--text-muted);
            padding: 4px 0;
            display: inline-block;
        }
        footer ul li a:hover {
            color: var(--accent);
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 16px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin: 16px 0;
        }
        .friend-link a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .friend-link a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #666;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .copyright strong {
            color: #999;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                position: fixed;
                top: 0;
                right: -110%;
                width: 280px;
                height: 100vh;
                background: var(--secondary);
                flex-direction: column;
                padding: 80px 24px 24px;
                gap: 8px;
                transition: right 0.35s ease;
                box-shadow: -8px 0 40px rgba(0, 0, 0, 0.8);
                border-left: 2px solid var(--primary);
                z-index: 999;
                overflow-y: auto;
            }
            .nav-list.open {
                right: 0;
            }
            .nav-list li a {
                font-size: 1.1rem;
                padding: 12px 16px;
                width: 100%;
                border-radius: var(--radius-sm);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
                gap: 4px 8px;
            }
            .breadcrumb li+li::before {
                margin-right: 6px;
            }
            .header-inner {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .link-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1025px) {
            .nav-list li a {
                padding: 8px 20px;
            }
        }
        .highlight {
            color: var(--accent);
            font-weight: 600;
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.03);
            padding: 6px 16px;
            border-radius: 60px;
            border: 1px solid var(--border);
        }
        blockquote {
            border-left: 4px solid var(--primary);
            padding: 16px 24px;
            margin: 24px 0;
            background: rgba(225, 6, 0, 0.04);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
            color: #ccc;
        }
        blockquote cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-weight: 600;
            color: var(--accent);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: var(--primary);
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        table td {
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
            color: #ccc;
        }
        table tr:hover td {
            background: rgba(255, 255, 255, 0.03);
        }
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 998;
            backdrop-filter: blur(4px);
        }
        .nav-overlay.show {
            display: block;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
