@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --border: #1e1e2e;
    --cyan: #00d4ff;
    --cyan-dim: rgba(0, 212, 255, 0.15);
    --cyan-glow: rgba(0, 212, 255, 0.3);
    --text: #e0e0e0;
    --text-dim: #6b7280;
    --text-bright: #ffffff;
    --danger: #ff3b5c;
    --warning: #f59e0b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Header */
header {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--cyan);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px var(--cyan-glow);
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--cyan); }

/* Main */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 140px);
}

/* Hero */
.hero {
    text-align: center;
    padding: 5rem 0 3rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.search-form {
    display: flex;
    max-width: 620px;
    margin: 0 auto 1rem;
    gap: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-bright);
    font-family: 'JetBrains Mono', monospace;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-form input::placeholder { color: var(--text-dim); }

.search-form input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-dim);
}

.search-form button {
    padding: 0.9rem 2rem;
    background: var(--cyan);
    color: #0a0a0f;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form button:hover {
    box-shadow: 0 0 25px var(--cyan-glow);
    transform: translateY(-1px);
}

.stats {
    color: var(--text-dim);
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.stats strong { color: var(--cyan); }

/* Car Grid */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.car-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 30px var(--cyan-dim);
    transform: translateY(-4px);
}

.car-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.no-photo {
    width: 100%;
    height: 180px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.car-info { padding: 1rem 1.2rem; }

.car-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-bright);
}

.car-info .vin {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--cyan);
    opacity: 0.7;
}

.car-info .mileage {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.4rem;
}

/* Removal notification bar */
.removal-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(255, 59, 92, 0.08) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--warning);
    animation: removal-bar-pulse 3s infinite;
}

@keyframes removal-bar-pulse {
    0%, 100% { border-color: rgba(245, 158, 11, 0.3); }
    50% { border-color: rgba(245, 158, 11, 0.6); }
}

.removal-bar-btn {
    color: #0a0a0f;
    background: var(--warning);
    padding: 0.35rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.removal-bar-btn:hover {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    transform: translateY(-1px);
}

/* Car Detail */
.car-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
}

.car-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.car-detail h1 {
    margin-bottom: 0.3rem;
    color: var(--text-bright);
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.vin-display {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 0;
}

.vin-display strong {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-dim);
}

.vin-mono {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan) !important;
}

.car-price-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    white-space: nowrap;
}

.price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.price-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
}

/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    flex: 1;
    padding: 0.5rem;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stat-value {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 1rem;
    text-align: center;
}

.seo-description {
    margin-bottom: 2rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    line-height: 1.8;
    color: var(--text-dim);
    font-size: 0.92rem;
}

/* Photo Carousel */
.carousel-container {
    margin-bottom: 2.5rem;
}

.carousel-main {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: opacity 0.3s;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
    padding-bottom: 3px;
}

.carousel-arrow:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-dim);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.carousel-thumbs::-webkit-scrollbar { height: 4px; }
.carousel-thumbs::-webkit-scrollbar-track { background: transparent; }
.carousel-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.thumb {
    width: 80px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.2s;
    flex-shrink: 0;
}

.thumb:hover { opacity: 0.8; }

.thumb.active {
    opacity: 1;
    border-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan-dim);
}

/* Fullscreen overlay */
.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.fullscreen-overlay.active {
    display: flex;
}

.fullscreen-overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 4px;
}

.fullscreen-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.fullscreen-close:hover { color: var(--cyan); }

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spec-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.spec-section h2 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--cyan);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.spec-section table { width: 100%; }

.spec-section th {
    text-align: left;
    padding: 0.45rem 0;
    color: var(--text-dim);
    font-weight: 400;
    font-size: 0.9rem;
    width: 45%;
}

.spec-section td {
    padding: 0.45rem 0;
    color: var(--text-bright);
    font-weight: 500;
}

/* Damage section */
.spec-section-damage {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.04);
}

.spec-section-damage h2 {
    color: var(--warning);
}

.damage-text {
    color: var(--danger) !important;
    font-weight: 600 !important;
}

.no-damage-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px dashed var(--border);
}

.no-damage-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.no-damage-notice p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Removal Notice */
.removal-notice {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(255, 59, 92, 0.06) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 1.8rem 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.removal-notice-content {
    flex: 1;
}

.removal-notice h3 {
    margin-bottom: 0.4rem;
    color: var(--warning);
    font-size: 1.1rem;
}

.removal-notice p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.removal-notice-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--warning);
    color: #0a0a0f;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.removal-notice-btn:hover {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

/* Removal Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-box {
    background: linear-gradient(145deg, #141420 0%, #1a1a2e 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover { color: #fff; }

.modal-box h2 {
    color: var(--text-bright);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.3rem;
}

.modal-subtitle code {
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.modal-desc {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal-option {
    display: block;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
}

.modal-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-option-auto {
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.25);
}

.modal-option-auto:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 25px var(--cyan-dim);
}

.modal-option-crypto {
    background: rgba(168, 85, 247, 0.06);
    border-color: rgba(168, 85, 247, 0.25);
}

.modal-option-crypto:hover {
    border-color: #a855f7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.15);
}

.modal-option-crypto .modal-option-action {
    color: #a855f7;
}

.badge-crypto {
    background: #a855f7;
}

.modal-option-manual {
    background: rgba(255, 255, 255, 0.02);
}

.modal-option-manual:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.modal-option-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.modal-option-badge {
    background: var(--cyan);
    color: #0a0a0f;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.modal-option-title {
    color: var(--text-bright);
    font-weight: 600;
    font-size: 1rem;
}

.modal-option p {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.modal-option-action {
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
}

.modal-option-manual .modal-option-action {
    color: var(--text-dim);
}

.source-link a:hover { color: var(--cyan); }

/* Search Page */
.search-page { max-width: 800px; margin: 0 auto; }

.search-page h1 {
    margin-bottom: 1.5rem;
    color: var(--text-bright);
}

.results-count {
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.car-list { display: flex; flex-direction: column; gap: 0.5rem; }

.car-row {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.car-row:hover {
    border-color: var(--cyan);
    background: var(--bg-card-hover);
}

.car-row-info strong { color: var(--text-bright); }

.car-row .vin {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--cyan);
    opacity: 0.7;
    margin-left: 1rem;
}

.car-row-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination a {
    color: var(--cyan);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 15px var(--cyan-dim);
}

.pagination span { color: var(--text-dim); }

.no-results { color: var(--text-dim); }

/* Remove Info Page */
.remove-info-page { max-width: 960px; margin: 0 auto; }

.remove-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.remove-hero h1 {
    color: var(--text-bright);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.remove-hero-sub {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.remove-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.remove-option-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.remove-card-primary {
    border-color: rgba(0, 212, 255, 0.3);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.04), var(--bg-card));
}

.remove-card-badge {
    position: absolute;
    top: -10px;
    left: 1.5rem;
    background: var(--cyan);
    color: #0a0a0f;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.remove-option-card h2 {
    color: var(--text-bright);
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.remove-card-price {
    color: var(--cyan);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

.remove-option-card > p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.remove-option-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.remove-option-card li {
    color: var(--text-dim);
    font-size: 0.8rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.remove-option-card li::before {
    content: "✓";
    color: var(--cyan);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.remove-card-btn {
    display: block;
    text-align: center;
    padding: 0.7rem;
    border-radius: 8px;
    background: var(--cyan);
    color: #0a0a0f;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.remove-card-btn:hover {
    box-shadow: 0 0 20px var(--cyan-dim);
    transform: translateY(-1px);
}

.remove-card-btn-secondary {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.remove-card-btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: none;
}

.remove-how-it-works {
    text-align: center;
    margin-bottom: 2rem;
}

.remove-how-it-works h2 {
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.remove-steps {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.remove-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    flex: 1;
    max-width: 260px;
}

.remove-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--cyan);
    color: #0a0a0f;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.remove-step p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* 404 */
.not-found {
    text-align: center;
    padding: 5rem 0;
}

.not-found h1 {
    margin-bottom: 1rem;
    color: var(--text-bright);
    font-size: 2rem;
}

.not-found p { color: var(--text-dim); }

.not-found strong { color: var(--cyan); font-family: 'JetBrains Mono', monospace; }

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--cyan);
    color: #0a0a0f;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    box-shadow: 0 0 25px var(--cyan-glow);
    transform: translateY(-1px);
}

/* SEO text */
.seo-text {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.seo-text h2 {
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

.seo-text p { color: var(--text-dim); }

/* Recent section */
.recent h2 {
    margin-bottom: 0.5rem;
    color: var(--text-bright);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-dim);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a3e; }

/* Selection */
::selection {
    background: var(--cyan-dim);
    color: var(--text-bright);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .search-form { flex-direction: column; }
    main { padding: 1rem; }
    .car-detail { padding: 1.5rem; }
    .car-detail-header { flex-direction: column; }
    .car-price-badge { align-items: flex-start; }
    .quick-stats { flex-wrap: wrap; gap: 0.5rem; }
    .stat-item { min-width: 80px; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
    .carousel-prev { left: 6px; }
    .carousel-next { right: 6px; }
    .removal-notice { flex-direction: column; text-align: center; }
    .removal-bar { flex-direction: column; gap: 0.5rem; font-size: 0.8rem; }
    .car-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .remove-options-grid { grid-template-columns: 1fr; }
    .remove-steps { flex-direction: column; align-items: center; }
    .modal-box { padding: 1.5rem; }
}
