        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a0f;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffffff;
            text-shadow: 0 0 8px rgba(225, 6, 0, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
            border-bottom: 3px solid #e10600;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: -1px;
            background: linear-gradient(90deg, #e10600, #ffffff, #e10600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: shine 3s linear infinite;
        }
        @keyframes shine {
            to { background-position: 200% center; }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(225, 6, 0, 0.15);
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #111116;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #e10600;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: linear-gradient(145deg, #121218, #0d0d12);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3.2rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
            border-left: 5px solid #e10600;
            padding-left: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #f0f0f0;
            margin: 2.8rem 0 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px dashed #333;
        }
        h3 {
            font-size: 1.7rem;
            color: #e0e0e0;
            margin: 2.2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #ccc;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #aaa;
            font-style: italic;
            border-left: 3px solid #e10600;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .highlight {
            background-color: rgba(225, 6, 0, 0.1);
            border-left: 4px solid #e10600;
            padding: 1.2rem;
            border-radius: 0 8px 8px 0;
            margin: 1.8rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            background-color: #111116;
            padding: 2rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #333;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            background-color: #1a1a1f;
            border: 1px solid #333;
            border-radius: 6px;
            color: #eee;
            font-size: 1rem;
            width: 100%;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #e10600;
            box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #e10600, #b80500);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #ff1a1a, #e10600);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(225, 6, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .article-img {
            margin: 2.5rem auto;
            max-width: 800px;
            border: 3px solid #333;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            color: #888;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .link-list {
            background-color: #15151a;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            column-count: 2;
            column-gap: 2rem;
        }
        @media (max-width: 768px) {
            .link-list ul {
                column-count: 1;
            }
        }
        .link-list li {
            margin-bottom: 0.7rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .link-list li::before {
            content: '🏎️';
            position: absolute;
            left: 0;
        }
        .site-footer {
            background-color: #050508;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid #222;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            background-color: #111;
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            border-left: 4px solid #e10600;
            transition: transform 0.3s ease;
        }
        friend-link:hover {
            transform: translateX(5px);
            background-color: #1a1a1a;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1a1a;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
                border-top: 2px solid #e10600;
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
                padding-left: 1rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            article {
                padding: 1.5rem;
            }
            .main-content {
                gap: 2rem;
                padding: 1.5rem 0;
            }
        }
        .last-updated {
            color: #888;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
            text-align: right;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
