/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #18151a 0%, #2d1b1b 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    background-attachment: fixed;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.header-banner {
    position: absolute;
    top: 0; left: 0; right: 0;
    width: 100%;
    height: 220px;
    z-index: 1;
    overflow: hidden;
}

.header-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(1px);
}

.header-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,rgba(20,20,20,0.7) 60%,rgba(20,20,20,1) 100%);
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 30px;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(8px);
}

.header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.logo-img {
    width: 300px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 10px 22px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 320px;
    max-width: 90vw;
}

.search-bar:focus-within {
    background: rgba(255,255,255,0.12);
    border-color: rgba(139,0,0,0.5);
    box-shadow: 0 0 20px rgba(139,0,0,0.2);
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 8px 12px;
    outline: none;
    width: 100%;
}

.search-input::placeholder {
    color: #aaa;
}

.search-btn {
    background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139,0,0,0.4);
}

/* Main Navigation */
.main-nav {
    width: 100%;
    margin-top: 10px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    border-radius: 60px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.nav-item {
    color: #000000;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    min-width: 70px;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item:hover, .nav-item.active {
    color: #fff;
    background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
    box-shadow: 0 6px 20px rgba(139,0,0,0.3);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.4rem;
    line-height: 1;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.nav-item span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

/* Main Content */
.main {
    padding: 40px 0;
    min-height: calc(100vh - 160px);
}

/* Four vehicle per row */
.vehicles-grid { 
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes fixes */
    gap: 30px;
    margin-top: 30px;
}

/* Vehicle Cards */
.vehicle-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.3);
    border-color: rgba(139, 0, 0, 0.6);
}

.vehicle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, #333 0%, #444 100%);
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-img {
    transform: scale(1.05);
}

.vehicle-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(45deg, #444 0%, #555 100%);
    color: #888;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}

.vehicle-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 0, 0, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.vehicle-info {
    padding: 20px;
}

.vehicle-header {
    margin-bottom: 15px;
}

.vehicle-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.old-name {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
    font-style: italic;
}

.vehicle-details {
    margin-bottom: 15px;
}

.variant-item {
    margin-bottom: 10px;
}

.variant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.variant-number {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 500;
}

.variant-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.variant-specs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    font-size: 0.85rem;
    color: #ccc;
}

.spec-value {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.perf-origine {
    color: #aaa;
}

.perf-partial {
    color: #ffd700;
}

.perf-full {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.perf-details {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.perf-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.perf-badge.engine {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.perf-badge.transmission {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.perf-badge.turbo {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.perf-badge.brakes {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.variant-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.5), transparent);
    margin: 20px 0;
}

.vehicle-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.timestamp {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
}

/* No vehicles message */
.no-vehicles {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-vehicles h2 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.no-vehicles p {
    color: #aaa;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: #888;
    font-size: 0.9rem;
}

/* Error page */
.error-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.error-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.error-content h1 {
    color: #ff6b6b;
    margin-bottom: 20px;
}

.error-content p {
    color: #aaa;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

/* Couleurs de la carte grise */
.carte-grise-0 {
    color: #ff6b6b !important;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.carte-grise-1 {
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.carte-grise-2 {
    color: #00ff88 !important;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Variant Counter Overlay */
.variant-counter-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    transform-origin: center;
}

.variant-counter-overlay:hover {
    background: rgba(139, 0, 0, 0.9);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.variant-counter-overlay:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.variant-counter-overlay.switching {
    animation: switchAnimation 0.4s ease-in-out;
}

@keyframes switchAnimation {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        transform: scale(0.9) rotate(5deg);
    }
    75% {
        transform: scale(1.05) rotate(-2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.variant-counter-overlay .current-variant {
    color: #ff6b6b;
    font-weight: 700;
    transition: color 0.3s ease;
}

.variant-counter-overlay.switching .current-variant {
    animation: numberChange 0.4s ease-in-out;
}

@keyframes numberChange {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Supprimer l'ancienne navigation */
.variant-navigation {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 20px;
    }
    
    .search-input {
        width: 200px;
    }
    
    .nav-wrapper {
        gap: 6px;
        padding: 10px;
    }
    
    .nav-item {
        padding: 10px 14px;
        min-width: 65px;
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .search-bar {
        width: 100%;
        max-width: 400px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .main-nav {
        padding: 15px 0;
    }
    
    .nav-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        padding: 8px;
        border-radius: 40px;
    }
    
    .nav-item {
        padding: 8px 12px;
        min-width: 60px;
        font-size: 0.8rem;
    }
    
    .nav-icon {
        font-size: 1.2rem;
    }
    
    .nav-item span {
        font-size: 0.7rem;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vehicle-info {
        padding: 20px;
    }
    
    .variant-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }
    
    .logo-img {
        width: 200px;
        height: 50px;
    }
    
    .nav-wrapper {
        gap: 3px;
        padding: 6px;
    }
    
    .nav-item {
        padding: 6px 10px;
        min-width: 55px;
        font-size: 0.75rem;
    }
    
    .nav-icon {
        font-size: 1.1rem;
    }
    
    .nav-item span {
        font-size: 0.65rem;
    }
    
    .vehicle-title {
        font-size: 1.2rem;
    }
    
    .variant-price {
        font-size: 1.1rem;
    }
}

.header-minimal {
    width: 100%;
    background: #fff;
    margin-bottom: 0;
    padding: 0;
    border: none;
}
.header-banner-minimal {
    width: 100%;
    position: relative;
    background: #fff;
    margin: 0;
    padding: 0;
}
.header-banner-img-minimal {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #fff;
}
.header-logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: none;
}
.logo-img-minimal {
    width: 220px;
    height: 60px;
    object-fit: contain;
    display: block;
    background: none;
    margin: 0 auto;
}
.nav-minimal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #fff;
    border: none;
    margin: 0;
    padding: 0 0 10px 0;
}
.nav-link-minimal {
    color: #222;
    text-decoration: none;
    padding: 18px 22px 10px 22px;
    font-weight: 700;
    font-size: 1.05rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-link-minimal.active, .nav-link-minimal:hover {
    color: #8b0000;
    border-bottom: 2px solid #8b0000;
    background: none;
}

.header-modern {
    width: 100%;
    background: #fff;
    margin-bottom: 0;
    padding: 0;
    border: none;
}
.header-banner-modern {
    width: 100%;
    position: relative;
    background: #fff;
    margin: 0;
    padding: 0;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-banner-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
    filter: brightness(0.6);
}
.header-banner-overlay-modern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,rgba(20,20,20,0.55) 60%,rgba(20,20,20,0.85) 100%);
    z-index: 2;
}
.header-logo-center-modern {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-img-modern {
    width: 600px;
    height: 140px;
    object-fit: contain;
    display: block;
    background: none;
    margin: 0 auto 10px auto;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.25));
}
.logo-sub-modern {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin-top: 2px;
    text-align: center;
    opacity: 0.92;
}

.nav-modern {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    margin: 0;
    padding: 18px 0 10px 0;
}
.nav-link-modern {
    color: #232323;
    text-decoration: none;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1.08rem;
    background: rgba(255,255,255,0.85);
    border-radius: 30px;
    border: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
}
.nav-link-modern.active, .nav-link-modern:hover {
    color: #fff;
    background: linear-gradient(90deg, #8b0000 0%, #660000 100%);
    border-color: #8b0000;
    box-shadow: 0 4px 16px rgba(139,0,0,0.13);
    z-index: 1;
}

.nav-ultra-minimal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    background: #242424;
    border: none;
    margin: 0;
    padding: 22px 0 10px 0;
}
.nav-link-ultra {
    color: #ffffff;
    text-decoration: none;
    padding: 0 0 6px 0;
    font-weight: 700;
    font-size: 1.13rem;
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    transition: border-color 0.18s, color 0.18s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Roboto', Arial, sans-serif;
}
.nav-link-ultra.active, .nav-link-ultra:hover {
    color: #8b0000;
    border-bottom: 2.5px solid #8b0000;
    background: none;
}

.filters-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 30px 0 18px 0;
    padding: 0;
}
.filter-select {
    background: #fff;
    color: #181818;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s;
    min-width: 140px;
}
.filter-select:focus {
    border-color: #8b0000;
}

.filter-checkbox-group {
    display: flex;
    align-items: center;
    gap: 18px;
}
.filter-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: #181818;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}
.perf-checkbox {
    accent-color: #8b0000;
    width: 18px;
    height: 18px;
    margin: 0;
}

.filters-bar-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    margin: 32px 0 18px 0;
    padding: 18px 32px;
    background: #2a2a2a;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    flex-wrap: wrap;
    border: 1px solid #444;
}
.filter-checkbox-group-modern {
    display: flex;
    align-items: center;
    gap: 22px;
}
.checkbox-modern {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.checkbox-modern input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #bbb;
    border-radius: 6px;
    transition: border-color 0.2s, background 0.2s;
    margin-right: 2px;
    position: relative;
}
.checkbox-modern input[type="checkbox"]:checked + .checkmark {
    background: #8b0000;
    border-color: #8b0000;
}
.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}
.checkbox-modern input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}
.checkbox-modern .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.filter-select-group-modern {
    display: flex;
    align-items: center;
    gap: 18px;
}
.select-icon-group {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #2a2a2a;
    border-radius: 8px;
    padding: 0 10px;
    border: 1.5px solid #444;
}
.select-icon {
    font-size: 1.1rem;
    color: #8b0000;
    margin-right: 2px;
}
.filter-select-modern {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    outline: none;
    padding: 10px 8px;
    min-width: 120px;
    cursor: pointer;
}
.filter-select-modern:focus {
    color: #8b0000;
}
@media (max-width: 900px) {
    .filters-bar-modern {
        flex-direction: column;
        gap: 18px;
        padding: 16px 10px;
    }
    .filter-checkbox-group-modern {
        gap: 12px;
    }
    .filter-select-group-modern {
        gap: 10px;
    }
}

/* Disclaimer Modal */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.disclaimer-content {
    background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(139, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
    overflow: hidden;
}

.disclaimer-header {
    background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
    padding: 25px 30px 20px 30px;
    text-align: center;
}

.disclaimer-header h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.disclaimer-body {
    padding: 30px;
    color: #fff;
}

.disclaimer-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
    color: #e0e0e0;
}

.disclaimer-body p:last-child {
    margin-bottom: 0;
}

.disclaimer-footer {
    padding: 0 30px 30px 30px;
    text-align: center;
}

.disclaimer-btn {
    background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #a00000 0%, #7a0000 100%);
}

.disclaimer-btn:active {
    transform: translateY(0);
}

.disclaimer-modal.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 600px) {
    .disclaimer-content {
        width: 95%;
        margin: 20px;
    }
    
    .disclaimer-header {
        padding: 20px 20px 15px 20px;
    }
    
    .disclaimer-header h2 {
        font-size: 1.2rem;
    }
    
    .disclaimer-body {
        padding: 20px;
    }
    
    .disclaimer-footer {
        padding: 0 20px 20px 20px;
    }
    
    .disclaimer-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
    border-bottom: 1px solid #8b0000;
}
.footer-link:hover {
    color: #8b0000;
    border-bottom: 1px solid #8b0000;
}

@media (max-width: 1400px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
}