        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #e10600; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #9b0000; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight { background-color: #fffacd; padding: 2px 5px; border-radius: 3px; }
        .site-header {
            background: linear-gradient(to right, #1a1a2e, #16213e);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #e10600, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            text-decoration: none !important;
        }
        .my-logo span { color: #fff; -webkit-text-fill-color: #fff; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e10600;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a { color: #495057; }
        main { flex: 1; padding: 3rem 0; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .article-header { margin-bottom: 3rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .article-meta i { margin-right: 5px; }
        .hero-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .hero-image figcaption {
            padding: 0.8rem;
            background: #f8f9fa;
            font-style: italic;
            color: #555;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #e10600;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        blockquote {
            border-left: 4px solid #e10600;
            padding: 1rem 1.5rem;
            margin: 2rem 0;
            background: #f8f9fa;
            font-style: italic;
            color: #444;
        }
        .feature-box {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 5px solid #e10600;
        }
        .feature-box h3 { margin-top: 0; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            flex: 1;
            min-width: 200px;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-form textarea { min-height: 120px; width: 100%; }
        .btn {
            background: #e10600;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .btn:hover { background: #9b0000; }
        .stars { color: #ffc107; font-size: 1.5rem; margin: 0.5rem 0; }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #1a1a2e;
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a::before {
            content: '🏎️';
            margin-right: 8px;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-widget h4 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #aaa;
        }
        friend-link a { color: #6ab7ff; }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .hamburger { display: block; }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }
            .main-nav.active { max-height: 300px; margin-top: 1rem; }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li { border-top: 1px solid #2d3748; }
            .main-nav a { display: block; padding: 1rem 0; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-meta { flex-direction: column; gap: 0.5rem; }
        }
