* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
            padding: 20px 0;
            border-bottom: 2px solid #4dabf7;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-links li a:hover {
            background-color: #4dabf7;
            color: #0f1419;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #e0e0e0;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #4dabf7;
        }
        .breadcrumb span {
            color: #ff6b6b;
        }
        main {
            padding: 40px 0;
            background-color: #141a23;
            border-radius: 10px;
            margin-top: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .content-section {
            padding: 20px;
        }
        h1, h2, h3, h4 {
            color: #ff6b6b;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #4dabf7;
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8rem;
            color: #4dabf7;
            margin-top: 30px;
        }
        h4 {
            font-size: 1.4rem;
            color: #e0e0e0;
            margin-top: 25px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a2f3d;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ff6b6b;
            margin: 25px 0;
        }
        .car-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 15px;
            display: block;
            margin: 30px auto;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .car-image:hover {
            transform: scale(1.02);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .featured-item {
            background: #1a1f2e;
            padding: 25px;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .featured-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.6);
        }
        .update-time {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin: 30px 0;
            padding: 15px;
            background-color: #2a2f3d;
            border-radius: 10px;
        }
        .functional-forms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .form-box {
            background: #1a1f2e;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid #4dabf7;
        }
        .form-box h3 {
            text-align: center;
            margin-bottom: 25px;
        }
        .form-box input, .form-box textarea, .form-box select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background-color: #2a2f3d;
            border: 1px solid #4dabf7;
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .form-box button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        .form-box button:hover {
            opacity: 0.9;
        }
        footer {
            background-color: #0f1419;
            padding: 50px 0 20px;
            margin-top: 50px;
            border-top: 2px solid #4dabf7;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ff6b6b;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 15px;
            padding: 10px;
            background-color: #1a1f2e;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        friend-link:hover {
            background-color: #2a2f3d;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #2a2f3d;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 100px;
                right: -100%;
                flex-direction: column;
                background-color: #1a1f2e;
                width: 100%;
                max-width: 300px;
                height: calc(100vh - 100px);
                padding: 30px;
                transition: right 0.5s ease;
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .functional-forms {
                grid-template-columns: 1fr;
            }
        }
