:root{
  --ink:#060607;
  --glass:rgba(255,255,255,.045);
  --glass-strong:rgba(255,255,255,.07);
  --glass-line:rgba(255,255,255,.08);
  --glass-line-strong:rgba(255,255,255,.14);
  --text:#f2f0ec;
  --text-dim:#a8adb3;
  --text-faint:#6b7078;
  --orange:#f0940c;
  --orange-2:#ff7a1a;
  --orange-dim:#a86408;
  --green:#3fb56f;
  --red:#e6503f;
  --blue:#3f8cf2;
  --radius:20px;
  --radius-lg:28px;
  --shadow-lg:0 24px 60px rgba(0,0,0,.55);
  --ease:cubic-bezier(.22,1,.36,1);
  font-size:16px;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  background:var(--ink);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Inter","Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}

.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:36px 16px 28px;
  gap:22px;
}

.page-header{text-align:center;max-width:560px;}
.wordmark{font-size:1.7rem;font-weight:800;letter-spacing:-.02em;}
.wordmark__gun{color:var(--text);}
.wordmark__broker{color:var(--orange);}
.wordmark__product{
  display:block;
  margin-top:2px;
  font-size:.78rem;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--text-faint);
  font-weight:700;
}
.page-header__tag{
  margin:10px 0 0;
  color:var(--text-dim);
  font-size:.88rem;
}

/* ===== phone shell ===== */
.phone{
  position:relative;
  width:392px;
  max-width:94vw;
  height:800px;
  max-height:86vh;
  background:linear-gradient(160deg,#141416,#000);
  border-radius:46px;
  padding:14px;
  box-shadow:var(--shadow-lg), inset 0 0 0 1px var(--glass-line-strong);
}
.phone__notch{
  position:absolute;
  top:14px;left:50%;
  transform:translateX(-50%);
  width:120px;height:22px;
  background:#000;
  border-radius:0 0 16px 16px;
  z-index:50;
}
.app{
  position:relative;
  width:100%;height:100%;
  background:var(--ink);
  border-radius:32px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:inset 0 0 0 1px #000;
}

/* ===== screens ===== */
.screen{
  position:absolute;
  inset:0;
  display:none;
  flex-direction:column;
  padding-bottom:82px;
  overflow:hidden;
}
.screen.is-active{display:flex;}
.screen--watchlist .watchlist-body,
.screen--messages .messages-body,
.screen--profile .profile-body{
  overflow-y:auto;
  flex:1;
}

/* ===== topbar ===== */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px 10px;
  flex-shrink:0;
}
.topbar--simple{justify-content:space-between;padding:20px 18px 12px;}
.topbar__brand{display:flex;align-items:center;gap:8px;}
.topbar__logo{
  width:30px;height:30px;
  background:var(--orange);
  color:#141414;
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;font-size:.78rem;
}
.topbar__title{font-weight:800;font-size:1.15rem;}
.topbar__actions{display:flex;align-items:center;gap:8px;}

.iconbtn{
  display:flex;align-items:center;gap:6px;
  background:var(--glass);
  border:1px solid var(--glass-line-strong);
  color:var(--text-dim);
  border-radius:999px;
  padding:7px 12px;
  font-size:.74rem;
  font-weight:600;
  cursor:pointer;
  transition:background .15s var(--ease), border-color .15s var(--ease);
}
.iconbtn:hover{background:var(--glass-strong);border-color:rgba(255,255,255,.3);}
.iconbtn svg{width:14px;height:14px;fill:currentColor;flex-shrink:0;}
.iconbtn--square{padding:8px;border-radius:12px;}
.iconbtn--square svg{width:16px;height:16px;}

.pill{
  background:var(--glass-strong);
  color:var(--text-dim);
  font-size:.72rem;
  font-weight:700;
  padding:3px 10px;
  border-radius:999px;
}
.pill--count{background:var(--orange);color:#141414;}

/* ===== category chip bar ===== */
.chipbar{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:2px 16px 12px;
  flex-shrink:0;
  scrollbar-width:none;
}
.chipbar::-webkit-scrollbar{display:none;}
.chip{
  flex-shrink:0;
  background:var(--glass);
  border:1px solid var(--glass-line-strong);
  color:var(--text-dim);
  padding:7px 14px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:600;
  cursor:pointer;
  white-space:nowrap;
  transition:background .15s var(--ease), border-color .15s var(--ease);
}
.chip:hover{background:var(--glass-strong);border-color:rgba(255,255,255,.3);}
.chip.is-active{
  background:var(--orange);
  border-color:var(--orange);
  color:#141414;
}

/* ===== deck ===== */
.deck-wrap{
  position:relative;
  flex:1;
  padding:2px 16px 8px;
  min-height:0;
}
.deck{
  position:relative;
  width:100%;
  height:100%;
}
.deck-empty[hidden]{display:none;}
.deck-empty{
  position:absolute;inset:16px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  background:linear-gradient(180deg, var(--glass), rgba(255,255,255,.015));
  backdrop-filter:blur(20px) saturate(150%);
  border:1px dashed var(--glass-line-strong);
  border-radius:var(--radius);
  padding:24px;
  gap:6px;
}
.deck-empty__icon{font-size:2.2rem;margin-bottom:6px;}
.deck-empty h3{margin:0;font-size:1.05rem;}
.deck-empty p{margin:0 0 10px;color:var(--text-dim);font-size:.85rem;line-height:1.4;}

.card{
  position:absolute;
  inset:0;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(180deg, var(--glass), rgba(255,255,255,.015));
  backdrop-filter:blur(20px) saturate(150%);
  box-shadow:0 14px 34px rgba(0,0,0,.5);
  display:flex;
  flex-direction:column;
  will-change:transform;
  touch-action:none;
  user-select:none;
  border:1px solid var(--glass-line);
}
.card__media{
  position:relative;
  flex:1.15;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.card__media svg{width:56%;height:56%;position:relative;z-index:2;filter:drop-shadow(0 10px 18px rgba(0,0,0,.5));}
.card__photo{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:1;
}
.card__media:has(.card__photo)::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
  z-index:2;
  pointer-events:none;
}
.card__photo-credit{
  position:absolute;
  bottom:8px;right:10px;
  z-index:3;
  font-size:.6rem;
  color:rgba(255,255,255,.65);
}
.card__photo-credit a{color:inherit;text-decoration:none;}
.card__photo-credit a:hover{text-decoration:underline;}
.card__ribbon{
  position:absolute;top:14px;left:14px;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(4px);
  color:var(--text);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:999px;
  z-index:3;
  display:flex;align-items:center;gap:5px;
}
.card__ribbon--nfa{background:rgba(230,80,63,.85);}
.card__time{
  position:absolute;top:14px;right:14px;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(4px);
  color:var(--text);
  font-size:.68rem;
  font-weight:700;
  padding:5px 10px;
  border-radius:999px;
  z-index:3;
}
.card__stamp{
  position:absolute;
  top:22px;
  font-weight:900;
  font-size:1.6rem;
  letter-spacing:.05em;
  border:4px solid;
  border-radius:12px;
  padding:4px 14px;
  text-transform:uppercase;
  opacity:0;
  z-index:4;
  transform:rotate(-18deg);
}
.card__stamp--pass{left:20px;color:var(--red);border-color:var(--red);}
.card__stamp--watch{right:20px;color:var(--green);border-color:var(--green);transform:rotate(18deg);}
.card__stamp--super{left:50%;top:14px;transform:translateX(-50%) rotate(0);color:var(--orange);border-color:var(--orange);}

.card__body{
  flex:1;
  padding:16px 18px 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.15));
}
.card__title-row{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;}
.card__title{font-size:1.12rem;font-weight:800;line-height:1.25;}
.card__price{text-align:right;flex-shrink:0;}
.card__price-val{font-size:1.15rem;font-weight:900;color:var(--orange);}
.card__price-label{display:block;font-size:.65rem;color:var(--text-faint);text-transform:uppercase;letter-spacing:.05em;}
.card__meta{display:flex;flex-wrap:wrap;gap:6px;}
.tag{
  font-size:.68rem;
  font-weight:700;
  padding:4px 9px;
  border-radius:999px;
  background:var(--glass-strong);
  border:1px solid var(--glass-line);
  color:var(--text-dim);
}
.tag--good{background:rgba(63,181,111,.16);border-color:rgba(63,181,111,.3);color:var(--green);}
.tag--warn{background:rgba(230,80,63,.16);border-color:rgba(230,80,63,.3);color:var(--red);}
.card__seller{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:10px;
  border-top:1px solid var(--glass-line);
  font-size:.76rem;
  color:var(--text-dim);
}
.card__seller strong{color:var(--text);font-weight:700;}
.card__seller-badge{
  display:inline-flex;align-items:center;gap:3px;
  color:var(--green);font-weight:700;
}

/* ===== deck controls ===== */
.controls{
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:10px 16px 6px;
}
.ctrl{
  border-radius:999px;
  background:var(--glass);
  border:1px solid var(--glass-line-strong);
  color:var(--text);
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
  transition:transform .12s ease, background .15s var(--ease), border-color .15s var(--ease);
}
.ctrl:hover{background:var(--glass-strong);border-color:rgba(255,255,255,.3);}
.ctrl:active{transform:scale(.9);}
.ctrl svg{width:20px;height:20px;}
.ctrl--undo{width:42px;height:42px;color:var(--text-faint);}
.ctrl--undo:disabled{opacity:.35;cursor:default;}
.ctrl--undo:disabled:active{transform:none;}
.ctrl--pass{width:54px;height:54px;color:var(--red);}
.ctrl--info{width:42px;height:42px;color:var(--blue);}
.ctrl--watch{width:54px;height:54px;color:var(--green);}
.ctrl--super{width:42px;height:42px;color:var(--orange);}

/* ===== tabbar ===== */
.tabbar{
  position:absolute;
  left:0;right:0;bottom:0;
  height:78px;
  background:rgba(6,6,7,.75);
  backdrop-filter:blur(20px) saturate(150%);
  border-top:1px solid var(--glass-line);
  display:flex;
  padding-bottom:14px;
  z-index:20;
}
.tab{
  flex:1;
  background:none;border:none;
  display:flex;flex-direction:column;align-items:center;gap:4px;
  color:var(--text-faint);
  font-size:.66rem;
  font-weight:700;
  cursor:pointer;
  position:relative;
  padding-top:10px;
}
.tab svg{width:21px;height:21px;}
.tab.is-active{color:var(--orange);}
.tab-badge{
  position:absolute;
  top:4px;
  left:50%;
  margin-left:2px;
  background:var(--orange);
  color:#141414;
  font-size:.6rem;
  font-weight:800;
  min-width:15px;height:15px;
  border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  padding:0 3px;
}

/* ===== watchlist ===== */
.watchlist-body,.messages-body{padding:6px 16px 20px;display:flex;flex-direction:column;gap:10px;}
.wl-item{
  display:flex;gap:12px;
  background:linear-gradient(180deg, var(--glass), rgba(255,255,255,.015));
  border:1px solid var(--glass-line);
  border-radius:16px;
  padding:10px;
  align-items:center;
}
.wl-item__thumb{
  width:58px;height:58px;flex-shrink:0;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  position:relative;
  background:var(--glass);
}
.wl-item__thumb svg{width:62%;height:62%;}
.wl-item__photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.wl-item__body{flex:1;min-width:0;}
.wl-item__title{font-weight:700;font-size:.88rem;margin-bottom:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.wl-item__sub{font-size:.74rem;color:var(--text-dim);}
.wl-item__price{font-weight:800;color:var(--orange);font-size:.9rem;flex-shrink:0;}
.wl-item__actions{display:flex;flex-direction:column;gap:6px;flex-shrink:0;}
.iconlink{
  width:32px;height:32px;
  border-radius:10px;
  background:var(--glass-strong);
  border:1px solid var(--glass-line);
  color:var(--text-dim);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.iconlink svg{width:15px;height:15px;}
.iconlink--danger:hover{color:var(--red);}

/* ===== messages list ===== */
.msg-item{
  display:flex;gap:12px;align-items:center;
  background:linear-gradient(180deg, var(--glass), rgba(255,255,255,.015));
  border:1px solid var(--glass-line);
  border-radius:16px;
  padding:12px;
  cursor:pointer;
}
.msg-item__avatar{
  width:44px;height:44px;flex-shrink:0;
  border-radius:50%;
  background:var(--glass-strong);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.85rem;color:var(--orange);
}
.msg-item__body{flex:1;min-width:0;}
.msg-item__top{display:flex;justify-content:space-between;gap:8px;}
.msg-item__name{font-weight:700;font-size:.86rem;}
.msg-item__time{font-size:.68rem;color:var(--text-faint);}
.msg-item__preview{font-size:.78rem;color:var(--text-dim);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.msg-item__item{font-size:.68rem;color:var(--text-faint);margin-top:1px;}
.msg-item__dot{width:8px;height:8px;border-radius:50%;background:var(--orange);flex-shrink:0;}

.empty-state{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  padding:60px 30px;
  color:var(--text-dim);
  gap:6px;
}
.empty-state__icon{font-size:2.2rem;margin-bottom:8px;}
.empty-state h3{margin:0;color:var(--text);}
.empty-state p{margin:0;font-size:.85rem;line-height:1.4;}

/* ===== chat thread ===== */
.topbar--chat{gap:10px;padding:16px 16px 12px;border-bottom:1px solid var(--glass-line);}
.backbtn{
  background:none;border:none;color:var(--text);
  width:30px;height:30px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;flex-shrink:0;
}
.backbtn svg{width:20px;height:20px;}
.topbar__chat-info{display:flex;flex-direction:column;}
.topbar__chat-name{font-weight:700;font-size:.92rem;}
.topbar__chat-sub{font-size:.72rem;color:var(--text-faint);}

.chat-thread{
  flex:1;overflow-y:auto;
  padding:16px;
  display:flex;flex-direction:column;
  gap:10px;
}
.bubble{
  max-width:78%;
  padding:9px 13px;
  border-radius:16px;
  font-size:.84rem;
  line-height:1.4;
}
.bubble--them{
  align-self:flex-start;
  background:var(--glass-strong);
  border:1px solid var(--glass-line);
  border-bottom-left-radius:4px;
}
.bubble--me{
  align-self:flex-end;
  background:var(--orange);
  color:#171000;
  font-weight:600;
  border-bottom-right-radius:4px;
}
.bubble--system{
  align-self:center;
  background:transparent;
  color:var(--text-faint);
  font-size:.7rem;
  text-align:center;
  max-width:90%;
}
.chat-input{
  display:flex;gap:8px;
  padding:10px 12px;
  border-top:1px solid var(--glass-line);
  flex-shrink:0;
  margin-bottom:0;
}
.chat-input input{
  flex:1;
  background:var(--glass);
  border:1px solid var(--glass-line-strong);
  border-radius:999px;
  padding:10px 16px;
  color:var(--text);
  font-size:.85rem;
}
.chat-input input:focus{outline:none;border-color:var(--orange);}
.chat-send{
  width:40px;height:40px;flex-shrink:0;
  border-radius:50%;
  background:var(--orange);
  border:none;
  color:#171000;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.chat-send svg{width:17px;height:17px;}

/* ===== profile ===== */
.profile-body{padding:14px 18px 24px;display:flex;flex-direction:column;gap:18px;}
.profile-card{
  display:flex;flex-direction:column;align-items:center;
  gap:8px;
  padding:22px 0 6px;
}
.profile-avatar{
  width:64px;height:64px;border-radius:50%;
  background:linear-gradient(140deg,var(--orange),#c65f00);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:1.2rem;color:#171000;
}
.profile-name{font-weight:800;font-size:1.05rem;}
.profile-badge{
  display:flex;align-items:center;gap:5px;
  background:rgba(63,181,111,.14);
  border:1px solid rgba(63,181,111,.3);
  color:var(--green);
  font-size:.72rem;font-weight:700;
  padding:4px 10px;border-radius:999px;
}
.profile-section h4{
  margin:0 0 8px;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--text-faint);
}
.profile-row{
  display:flex;align-items:center;justify-content:space-between;
  background:linear-gradient(180deg, var(--glass), rgba(255,255,255,.015));
  border:1px solid var(--glass-line);
  border-radius:14px;
  padding:12px 14px;
  gap:10px;
}
.profile-row__title{font-weight:700;font-size:.86rem;}
.profile-row__sub{font-size:.74rem;color:var(--text-dim);margin-top:2px;}

.toggle-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:11px 2px;
  font-size:.84rem;
  border-bottom:1px solid var(--glass-line);
  cursor:pointer;
  position:relative;
}
.toggle-row:last-child{border-bottom:none;}
.toggle-row input{position:absolute;opacity:0;pointer-events:none;}
.toggle{
  width:38px;height:22px;
  background:var(--glass-strong);
  border:1px solid var(--glass-line-strong);
  border-radius:999px;
  position:relative;
  flex-shrink:0;
  transition:background .15s;
}
.toggle::after{
  content:"";
  position:absolute;
  top:1px;left:1px;
  width:18px;height:18px;
  background:var(--text-dim);
  border-radius:50%;
  transition:transform .15s, background .15s;
}
.toggle-row input:checked + .toggle{background:var(--orange);border-color:var(--orange);}
.toggle-row input:checked + .toggle::after{transform:translateX(16px);background:#171000;}

.stat-grid{display:flex;gap:10px;}
.stat{
  flex:1;
  background:linear-gradient(180deg, var(--glass), rgba(255,255,255,.015));
  border:1px solid var(--glass-line);
  border-radius:14px;
  padding:14px 8px;
  text-align:center;
}
.stat__num{display:block;font-size:1.25rem;font-weight:900;color:var(--orange);}
.stat__label{font-size:.68rem;color:var(--text-dim);text-transform:uppercase;letter-spacing:.04em;}

/* ===== buttons ===== */
.btn{
  border:none;
  border-radius:999px;
  padding:12px 20px;
  font-weight:700;
  font-size:.86rem;
  cursor:pointer;
  transition:background .15s var(--ease), border-color .15s var(--ease), transform .1s ease;
}
.btn--primary{background:var(--orange);color:#171000;}
.btn--primary:hover{background:var(--orange-2);}
.btn--ghost{background:var(--glass);color:var(--text);border:1px solid var(--glass-line-strong);}
.btn--ghost:hover{background:var(--glass-strong);border-color:rgba(255,255,255,.3);}

/* ===== modals ===== */
.modal-overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;
  z-index:100;
  padding:20px;
}
.modal-overlay[hidden]{display:none;}
.modal{
  background:linear-gradient(180deg, var(--glass-strong), rgba(255,255,255,.015));
  backdrop-filter:blur(20px) saturate(150%);
  border:1px solid var(--glass-line-strong);
  border-radius:var(--radius-lg);
  width:100%;
  max-width:380px;
  max-height:86vh;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  position:relative;
  box-shadow:var(--shadow-lg);
}
.modal-close{
  position:absolute;top:12px;right:12px;
  width:30px;height:30px;
  border-radius:50%;
  background:var(--glass-strong);
  border:1px solid var(--glass-line);
  color:var(--text);
  font-size:1.1rem;
  cursor:pointer;
  z-index:5;
  line-height:1;
}
.modal-header{padding:18px 20px 4px;}
.modal-header h3{margin:0;font-size:1.1rem;}
.modal-body{padding:14px 20px 4px;overflow-y:auto;flex:1;}
.modal-footer{
  display:flex;gap:10px;
  padding:16px 20px 20px;
  border-top:1px solid var(--glass-line);
}
.modal-footer .btn{flex:1;}

.filter-group{margin-bottom:20px;}
.filter-group h4{margin:0 0 10px;font-size:.82rem;color:var(--text-dim);display:flex;justify-content:space-between;}
.filter-chips{display:flex;flex-wrap:wrap;gap:8px;}
.filter-group input[type=range]{width:100%;accent-color:var(--orange);}

/* ===== item detail ===== */
.detail-media{
  height:180px;
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.detail-media svg{width:46%;height:46%;filter:drop-shadow(0 10px 18px rgba(0,0,0,.5));}
.detail-content{padding:18px 20px 22px;}
.detail-title{font-size:1.2rem;font-weight:800;margin:0 0 4px;}
.detail-price{color:var(--orange);font-weight:900;font-size:1.25rem;margin-bottom:10px;}
.detail-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:14px;}
.detail-photo-note{font-size:.72rem;color:var(--text-faint);margin:-6px 0 12px;line-height:1.4;}
.detail-specs{
  display:grid;grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}
.detail-spec{background:var(--glass);border:1px solid var(--glass-line);border-radius:12px;padding:9px 11px;}
.detail-spec__label{font-size:.64rem;text-transform:uppercase;color:var(--text-faint);letter-spacing:.04em;}
.detail-spec__val{font-size:.84rem;font-weight:700;margin-top:2px;}
.detail-desc{font-size:.84rem;color:var(--text-dim);line-height:1.5;margin-bottom:14px;}
.detail-seller{
  display:flex;align-items:center;justify-content:space-between;
  background:var(--glass);
  border:1px solid var(--glass-line);
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:16px;
}
.detail-actions{display:flex;gap:10px;}
.detail-actions .btn{flex:1;}

/* ===== match popup ===== */
.modal-overlay--match{background:rgba(0,0,0,.8);}
.match-card{
  background:linear-gradient(165deg, var(--glass-strong), rgba(255,255,255,.015));
  backdrop-filter:blur(20px) saturate(150%);
  border:1px solid rgba(240,148,12,.35);
  border-radius:var(--radius-lg);
  padding:34px 26px 26px;
  text-align:center;
  width:100%;max-width:340px;
  box-shadow:0 0 0 1px rgba(240,148,12,.1), var(--shadow-lg);
  animation:pop .32s cubic-bezier(.2,1.4,.4,1);
}
@keyframes pop{from{transform:scale(.75);opacity:0;}to{transform:scale(1);opacity:1;}}
.match-card__burst{
  width:56px;height:56px;
  margin:0 auto 14px;
  border-radius:50%;
  background:var(--green);
  color:#0a1c10;
  font-size:1.6rem;font-weight:900;
  display:flex;align-items:center;justify-content:center;
}
.match-card h2{margin:0 0 6px;font-size:1.3rem;}
.match-card p{margin:0 0 16px;color:var(--text-dim);font-size:.88rem;}
.match-card__thumb{
  position:relative;
  height:110px;
  border-radius:16px;
  margin-bottom:20px;
  overflow:hidden;
  background:var(--glass);
  display:flex;align-items:center;justify-content:center;
}
.match-card__thumb svg{width:42%;height:42%;}
.match-card__actions{display:flex;flex-direction:column;gap:10px;}

/* ===== category art gradients ===== */
.art-handgun{background:linear-gradient(150deg,rgba(240,148,12,.14),rgba(255,255,255,.02));color:#f0940c;}
.art-rifle{background:linear-gradient(150deg,rgba(95,184,131,.14),rgba(255,255,255,.02));color:#5fb883;}
.art-shotgun{background:linear-gradient(150deg,rgba(226,119,90,.14),rgba(255,255,255,.02));color:#e2775a;}
.art-ammo{background:linear-gradient(150deg,rgba(216,177,63,.14),rgba(255,255,255,.02));color:#d8b13f;}
.art-optics{background:linear-gradient(150deg,rgba(79,163,214,.14),rgba(255,255,255,.02));color:#4fa3d6;}
.art-accessories{background:linear-gradient(150deg,rgba(157,127,219,.14),rgba(255,255,255,.02));color:#9d7fdb;}
.art-nfa{background:linear-gradient(150deg,rgba(230,80,63,.14),rgba(255,255,255,.02));color:#e6503f;}

.disclaimer{
  max-width:560px;
  text-align:center;
  font-size:.72rem;
  line-height:1.6;
  color:var(--text-faint);
  padding:0 12px;
}

@media (max-width:480px){
  .page{padding:20px 0 16px;gap:14px;}
  .phone{width:100%;height:calc(100vh - 130px);border-radius:0;padding:8px;}
  .phone__notch{display:none;}
  .app{border-radius:24px;}
}
