        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.7rem;
            color: #74c0fc;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,107,0.15), rgba(77,171,247,0.15));
            border-left: 4px solid #4dabf7;
            padding: 25px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }
        .note {
            background-color: rgba(255, 243, 205, 0.1);
            border: 1px solid #ffe066;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 107, 107, 0.6);
            background: linear-gradient(135deg, #ff8787, #ff6b6b);
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: rgba(10, 10, 18, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #22223a;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b6b;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #74c0fc;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #121225;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .breadcrumb span {
            color: #adb5bd;
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at 30% 20%, #1a1a2e, #0a0a12 60%);
            text-align: center;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(77, 171, 247, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: 0;
            animation: float 20s linear infinite;
        }
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-30px, -30px) rotate(360deg); }
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #c0c0ff;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(18, 18, 37, 0.7);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid #2a2a4a;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        .article-image {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            border: 2px solid #4dabf7;
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: #121225;
            color: #a5d8ff;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(18, 18, 37, 0.9);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2a2a4a;
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: #ff6b6b;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 14px;
            border: 1px solid #4dabf7;
            border-radius: 50px 0 0 50px;
            background: #0a0a12;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(135deg, #4dabf7, #339af0);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(135deg, #339af0, #228be6);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #495057;
            cursor: pointer;
        }
        .stars .star {
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffd43b;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #4dabf7;
            background: #0a0a12;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .web-links-section {
            background: #121225;
            padding: 60px 20px;
            border-top: 2px solid #2a2a4a;
            border-bottom: 2px solid #2a2a4a;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(42, 42, 74, 0.7);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-8px);
            background: rgba(77, 171, 247, 0.2);
        }
        .web-link a {
            font-size: 1.1rem;
            color: #a5d8ff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a::before {
            content: '🚗';
            font-size: 1.3rem;
        }
        .site-footer {
            background: #090915;
            padding: 60px 20px 30px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 40px;
        }
        .copyright {
            color: #6c757d;
            font-size: 0.95rem;
            border-top: 1px solid #2a2a4a;
            padding-top: 30px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .main-content {
                padding: 20px 15px;
                gap: 30px;
            }
            .article-content {
                padding: 25px;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
