        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0f 0%, #1a1a2e 100%);
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #5d9bff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 1.2rem;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 100, 255, 0.3);
        }
        h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); margin-top: 1.5rem; }
        h2 { font-size: clamp(2rem, 4vw, 3rem); border-left: 5px solid #ffcc00; padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: #a3d5ff; margin-top: 2.5rem; }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            color: #ccd6f6;
        }
        .lead {
            font-size: 1.5rem;
            font-weight: 300;
            color: #b0c7ff;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,204,0,0.15) 0%, rgba(255,204,0,0) 100%);
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2.5rem 0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        header {
            background: rgba(10, 12, 28, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a2a4a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1.2rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: width 0.4s ease;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(15, 18, 40, 0.98);
            backdrop-filter: blur(15px);
            border-top: 1px solid #2a2a4a;
            padding: 2rem;
            flex-direction: column;
            gap: 1.5rem;
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.4s ease;
            pointer-events: none;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }
        .mobile-nav a {
            font-size: 1.3rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid #2a2a4a;
            display: block;
        }
        .breadcrumb {
            padding: 1.5rem 0;
            font-size: 0.95rem;
            color: #8892b0;
        }
        .breadcrumb a { color: #8892b0; }
        .breadcrumb a:hover { color: #ffcc00; }
        main {
            padding: 2rem 0 5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 4rem;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content p {
            margin-bottom: 2.2rem;
            text-align: justify;
        }
        .car-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
        .car-card {
            background: linear-gradient(145deg, #1a1b2e, #151623);
            border-radius: 15px;
            padding: 1.8rem;
            border: 1px solid #2a2a4a;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 204, 0, 0.15);
            border-color: #ffcc00;
        }
        .car-card h4 {
            color: #ffcc00;
            font-size: 1.6rem;
        }
        .car-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 1.2rem;
            font-size: 0.95rem;
            color: #a0a8cc;
        }
        .sidebar {
            background: rgba(20, 22, 45, 0.7);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid #2a2a4a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 3rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            border-bottom: 2px solid #2a2a4a;
            padding-bottom: 0.7rem;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem 1.2rem;
            background: #0f1120;
            border: 1px solid #3a3a5a;
            border-radius: 10px;
            color: #e0e0ff;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffcc00;
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
        }
        button {
            background: linear-gradient(90deg, #ff9900, #ffcc00);
            color: #0c0c0f;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.8rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: #3a3a5a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 3rem 0;
            border-top: 1px solid #2a2a4a;
            border-bottom: 1px solid #2a2a4a;
            margin: 4rem 0 2rem;
        }
        .web-link {
            background: rgba(30, 33, 65, 0.5);
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.1);
        }
        footer {
            text-align: center;
            padding: 3rem 0;
            color: #8892b0;
            font-size: 0.95rem;
            border-top: 1px solid #2a2a4a;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .container { padding: 0 1.5rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .mobile-nav { display: flex; }
            .longtail-links { grid-template-columns: repeat(2, 1fr); }
            .footer-links { flex-direction: column; gap: 1rem; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 480px) {
            .longtail-links { grid-template-columns: 1fr; }
            .car-showcase { grid-template-columns: 1fr; }
        }
