body {
            /*background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);*/
            min-height: 100vh;
            padding: 2rem 0;
            color: #fff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .car-paint-container.selected {
            border: 1px solid white;
            border-radius: 8px;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
        }
        
        
        .brake-container,wheel-container {
            padding: 1rem!important;

        }
        .brake-container.selected,.wheel-container.selected,.interior-container.selected {
            border: 1px solid white!important;
            border-radius: 8px!important;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3)!important;
        }
        
        .car-versions-container {
            padding: 2rem;
        }
        
        .car-versions-container.selected {
            border: 1px solid white;
            border-radius: 8px;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
        }
        
        .car-wheel-container {
            
            padding: 2rem;
        }
        
        .wheel-container.card{
            padding: 1rem;
        }
        
        .card {
            
            background-color: transparent!important;
            border: none!important;
        }
        
        div.car-versions-container.col.selected > div > div.card-body > ul{
            padding: 0;
        }
        
        .b-text {
            font-weight: bold;
        }
        
        .header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .header h1 {
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            margin-bottom: 1rem;
        }
        
        .header p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .gallery-container {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            max-width: 1200px;
            margin: 0 auto;
            display: none;
        }
        
        .gallery-container.active{
            display: block;
        }
        
        .carousel-main {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .carousel-caption {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
            padding: 1rem;
            left: 10%;
            right: 10%;
            bottom: 20px;
        }
        
        .thumbnail-container {
            padding: 0 40px;
            position: relative;
        }
        
        .thumbnails {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        
        .thumbnail-item {
            width: 100px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.6;
            border: 2px solid transparent;
        }
        
        .thumbnail-item:hover, .thumbnail-item.active {
            opacity: 1;
            transform: translateY(-5px);
            border-color: #fff;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }
        
        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .btn-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .btn-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .btn-prev {
            left: 0;
        }
        
        .btn-next {
            right: 0;
        }
        
        .carousel-control-prev {
            background-color: transparent!important;
            padding: 0!important;
        }
        
        
        .carousel-control-next {
             background-color: transparent!important;
            padding: 0!important;
        }
        .image-info {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .image-title {
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .image-description {
            line-height: 1.6;
        }
        
        .features {
            margin-top: 3rem;
        }
        
        .feature-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.12);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ff6b00;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        footer {
            text-align: center;
            margin-top: 3rem;
            padding: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .thumbnail-item {
                width: 70px;
                height: 50px;
            }
            
            .thumbnail-container {
                padding: 0 20px;
            }
            
            .gallery-container {
                padding: 1.5rem;
            }
        }