:root { --brand: #FF6A00; --brand-dark: #C85100; --ink: #0F172A; }

html, body { font-family: 'Inter', system-ui, sans-serif; background: #0B1220; color: #E2E8F0; }

.btn-primary {
    background: var(--brand); color: #fff;
    padding: .65rem 1.1rem; border-radius: .6rem;
    font-weight: 700; transition: filter .15s, transform .15s; display: inline-flex; align-items: center; gap: .4rem;
    text-transform: uppercase; letter-spacing: .03em; font-size: .85rem;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-ghost {
    padding: .55rem .9rem; border-radius: .55rem; font-weight: 500;
    color: #cbd5e1; transition: background .15s, color .15s;
}
.btn-ghost:hover { background: rgba(255,255,255,.06); color: #fff; }

.input, .select, .textarea {
    width: 100%; padding: .6rem .85rem; border: 1px solid #1e293b;
    border-radius: .55rem; background: #0F172A; color: #f1f5f9;
    transition: border-color .15s, box-shadow .15s;
    font-size: .95rem;
}
.input::placeholder, .textarea::placeholder { color: #64748b; }
.input:focus, .select:focus, .textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,106,0,.18);
}
.label { display: block; font-size: .75rem; font-weight: 600; color: #94a3b8;
    margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .05em; }

.card { background: #111c2e; border: 1px solid #1e293b; border-radius: .75rem; }

.listing-card {
    background: #111c2e; border: 1px solid #1e293b; border-radius: .75rem; overflow: hidden;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    cursor: pointer; display: flex; flex-direction: column;
}
.listing-card:hover { transform: translateY(-2px); border-color: var(--brand);
    box-shadow: 0 12px 24px -8px rgba(255,106,0,.25); }
.listing-card .thumb { aspect-ratio: 4/3; background: #1e293b center/cover no-repeat; position: relative; }

.skeleton { background: linear-gradient(90deg,#1e293b 25%,#334155 50%,#1e293b 75%);
    background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0;} 100% { background-position: -200% 0;} }

.tag { display: inline-flex; align-items: center; gap: .3rem; padding: .15rem .55rem; border-radius: 999px;
    font-size: .72rem; font-weight: 600; background: rgba(255,106,0,.15); color: var(--brand); }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); display: flex; align-items: center;
    justify-content: center; padding: 1rem; z-index: 50; }
.modal-content { background: #111c2e; color: #e2e8f0; border-radius: .8rem; max-width: 560px;
    width: 100%; max-height: 90vh; overflow: auto; border: 1px solid #1e293b; }

.hero-pattern {
    background-image:
        radial-gradient(at 20% 20%, rgba(255,106,0,.25) 0, transparent 50%),
        radial-gradient(at 80% 80%, rgba(255,106,0,.15) 0, transparent 45%),
        linear-gradient(135deg, #0B1220 0%, #1a1a2e 50%, #16213e 100%);
}

.text-muted { color: #94a3b8; }

@media (max-width: 768px) {
    .listing-card .thumb { aspect-ratio: 3/2; }
}
