:root {
    --red: #ca2230;
    --red-dim: rgba(202, 34, 48, 0.12);
    --red-mid: rgba(202, 34, 48, 0.35);
    --bg: #0d0d0f;
    --surface: #141417;
    --border: rgba(255,255,255,0.07);
    --text: #f0f0f0;
    --muted: #7a7a8a;
}

/* ── Main card ── */
.no-result {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 50px 0;
    width: 100%;
    animation: fadeUp .6s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Illustration wrapper ── */
.illustration {
    position: relative;
    width: 220px;
    height: 160px;
    margin-bottom: 2.5rem;
}

/* Glowing floor line */
.illustration::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 160px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    border-radius: 50%;
    box-shadow: 0 0 18px 4px rgba(202,34,48,0.5);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% { opacity:.5; } 50% { opacity:1; }
}

/* SVG car silhouette */
.car-svg {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    opacity: 0.18;
    animation: drift 3s ease-in-out infinite;
}

@keyframes drift {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-6px); }
}

/* Search circle */
.search-ring {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 96px; height: 96px;
    border-radius: 50%;
    border: 2px solid var(--red-mid);
    display: flex; align-items: center; justify-content: center;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    to { transform: translateX(-50%) rotate(360deg); }
}

.search-ring::before {
    content: '';
    position: absolute;
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    top: -6px; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px 4px rgba(202,34,48,0.6);
}

.search-icon {
    width: 36px; height: 36px;
    color: var(--red);
    animation: spin-reverse 8s linear infinite;
}

@keyframes spin-reverse {
    to { transform: rotate(-360deg); }
}

/* ── Badge ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--red-dim);
    border: 1px solid var(--red-mid);
    color: var(--red);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
    animation: fadeUp .6s .15s ease both;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite;
}

/* ── Heading ── */
.heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: .95;
    letter-spacing: .02em;
    color: #656565;
    margin-bottom: 1rem;
    animation: fadeUp .6s .2s ease both;
}

.heading span {
    color: var(--red);
}

/* ── Body text ── */
.body-text {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 360px;
    margin-bottom: 2rem;
    animation: fadeUp .6s .3s ease both;
}

/* ── Divider ── */
.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 2rem;
    animation: fadeUp .6s .35s ease both;
}

/* ── Suggestions ── */
.suggestions-label {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
    animation: fadeUp .6s .4s ease both;
}

.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-bottom: 2.4rem;
    animation: fadeUp .6s .45s ease both;
}

.suggestion-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: .82rem;
    padding: .45rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
}

.suggestion-pill:hover {
    border-color: var(--red);
    background: var(--red-dim);
    color: #fff;
}

/* ── CTA ── */
.cta-group {
    display: flex;
    gap: .8rem;
    animation: fadeUp .6s .5s ease both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.6rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px rgba(202,34,48,0.35);
}

.btn-primary:hover {
    background: #e02535;
    box-shadow: 0 8px 30px rgba(202,34,48,0.55);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.2);
}

/* ── Floating corner particles ── */
.particle {
    position: fixed;
    border-radius: 50%;
    background: var(--red);
    opacity: 0;
    pointer-events: none;
    animation: float-particle 6s ease-in-out infinite;
}

@keyframes float-particle {
    0%   { opacity:0; transform: translateY(0) scale(1); }
    20%  { opacity:.4; }
    80%  { opacity:.2; }
    100% { opacity:0; transform: translateY(-80px) scale(.4); }
}

.p1 { width:5px;height:5px; bottom:20%; left:10%;  animation-delay:0s;   animation-duration:5s; }
.p2 { width:3px;height:3px; bottom:35%; left:6%;   animation-delay:1.5s; animation-duration:6s; }
.p3 { width:4px;height:4px; bottom:25%; right:12%; animation-delay:2.8s; animation-duration:4.5s; }
.p4 { width:6px;height:6px; bottom:15%; right:8%;  animation-delay:.8s;  animation-duration:7s; }
