
/* User-driven theme */
:root{
  --rr-text:#e8edf2;
  --rr-muted:#a8b5c2;
  --panel: rgba(25,35,49,.85);
  --border:#b9c6d3;
}
body{
  margin:0; color:var(--rr-text);
  background:
    linear-gradient(180deg, rgba(5,12,18,0.95), rgba(18,28,38,0.95)),
    url('/assets/user/WOZKI-PODNOSNIKI.png') center/cover no-repeat fixed;
}
.hero{ padding: 72px 0 56px; background: rgba(0,0,0,0); }
.search-wrap{ display:flex; justify-content:center; margin-top: 120px; margin-bottom: 36px; }
.search{
  display:flex; align-items:center; width: min(1100px, 92vw);
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: 16px; overflow:hidden;
}
.search input{
  flex:1; background: transparent; border:0; outline:none;
  padding: 22px 24px; font-size: 22px; color: var(--rr-text);
}
.search input::placeholder{ color: rgba(232,237,242,0.4); }
.search button{
  display:flex; align-items:center; gap:14px;
  background:#ffffff; color:#000; border:0; padding: 18px 24px; font-weight:800;
  font-size: 16px; text-transform: uppercase;
  border-left: 0; border-radius: 14px; margin: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.search button .icon{ width:28px; height:28px; display:inline-block; background: currentColor; mask:url('/assets/search.svg') no-repeat center / contain; -webkit-mask:url('/assets/search.svg') no-repeat center / contain; }
h1.title{ text-align:center; font-size: 56px; font-weight: 800; margin-top: 32px; margin-bottom: 16px; }
.section{ padding: 24px 0 48px; }
.card{ background: rgba(0,0,0,0.22); border:1px solid rgba(255,255,255,0.12); border-radius:12px; }
.muted{ color: var(--rr-muted); }
