        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #60a5fa;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #fbbf24, #f87171);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #cbd5e1;
            padding: 15px 0;
            border-bottom: 1px solid #334155;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: #fbbf24;
            padding-left: 10px;
        }
        .breadcrumb {
            background-color: #1e293b;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #60a5fa;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #475569;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fbbf24;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #38bdf8;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #a78bfa;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(251, 191, 36, 0.1);
            border-left: 5px solid #fbbf24;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .car-image {
            width: 100%;
            border-radius: 12px;
            margin: 30px auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            transition: transform 0.5s ease;
        }
        .car-image:hover {
            transform: scale(1.02);
        }
        aside {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #fbbf24;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 14px;
            background-color: #334155;
            border: 1px solid #475569;
            border-radius: 8px;
            color: #e2e8f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #60a5fa;
            box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
        }
        button {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #475569;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #fbbf24;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 50px 0 30px;
        }
        .web-link {
            background-color: #1e293b;
            padding: 18px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #334155;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #cbd5e1;
            font-weight: 600;
        }
        footer {
            background-color: #0f172a;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid #334155;
            margin-top: 50px;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            color: #fbbf24;
            font-weight: 800;
        }
        .tag {
            display: inline-block;
            background-color: #334155;
            color: #cbd5e1;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article, aside { padding: 25px; }
            .main-content { gap: 25px; }
        }
