:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0fccce;
            --accent-dark: #0da8aa;
            --text: #e6e6e6;
            --text-light: #b0b0b0;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border: rgba(15, 204, 206, 0.2);
            --success: #4CAF50;
            --warning: #FF9800;
            --danger: #f44336;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            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: var(--text);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: white;
            text-shadow: 0 0 8px rgba(15, 204, 206, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent), #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--accent);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary);
            padding: 20px;
            border-top: 1px solid var(--border);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 30px;
        }
        .meta-item i {
            margin-right: 8px;
            color: var(--accent);
        }
        .hero-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 45px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
            color: white;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 35px 0 20px;
            color: var(--accent);
        }
        .article-content h4 {
            font-size: 1.3rem;
            margin: 25px 0 15px;
            color: #ccc;
        }
        .highlight-box {
            background: var(--card-bg);
            border-left: 4px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .car-stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
        }
        .car-stats-table th, .car-stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .car-stats-table th {
            background-color: rgba(15, 204, 206, 0.2);
            font-weight: 700;
        }
        .car-stats-table tr:hover {
            background-color: rgba(255,255,255,0.03);
        }
        .rating {
            color: var(--warning);
        }
        .car-class {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-right: 8px;
        }
        .class-d { background: #607d8b; }
        .class-c { background: #4CAF50; }
        .class-b { background: #2196F3; }
        .class-a { background: #9C27B0; }
        .class-s { background: #FF9800; }
        .comparison-chart {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .chart-bar {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 8px;
        }
        .bar-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .bar-fill {
            height: 10px;
            background: linear-gradient(to right, var(--accent), #00ffaa);
            border-radius: 5px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: var(--accent);
        }
        .search-form {
            display: flex;
            margin-bottom: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255,255,255,0.08);
            border: 1px solid var(--border);
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--accent);
            color: var(--primary);
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--accent-dark);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            background: rgba(255,255,255,0.08);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating .star {
            transition: var(--transition);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--warning);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--accent), var(--accent-dark));
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(15, 204, 206, 0.4);
        }
        .top-cars-list {
            list-style: none;
        }
        .top-car-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .top-car-item:last-child {
            border-bottom: none;
        }
        .car-rank {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent);
            min-width: 30px;
        }
        .car-info h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        .web-links-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(15, 204, 206, 0.15);
            transform: translateX(5px);
        }
        footer {
            background-color: rgba(10, 15, 30, 0.95);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid var(--border);
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .copyright a {
            color: var(--text-light);
            text-decoration: underline;
        }
        .social-links {
            display: flex;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--text-light);
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--accent);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
            nav ul {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .comparison-chart {
                grid-template-columns: 1fr;
            }
            .car-stats-table {
                display: block;
                overflow-x: auto;
            }
        }
