button {
  touch-action: manipulation;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.icon-btn { min-width: 44px; min-height: 44px; display: grid; place-items: center; }
.bottom-nav button { min-height: 48px; }
.menu-list { display: grid; gap: 8px; margin: 16px 0; }
.menu-list button {
  min-height: 48px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
}

.feed-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin: 2px 0 12px; }
.feed-head h1 { margin: 4px 0 0; font-size: 22px; }
.eyebrow.green { color: var(--green); }
.video-feed { display: grid; gap: 16px; scroll-snap-type: y mandatory; }
.feed-item { position: relative; min-height: 70vh; overflow: hidden; border-radius: 24px; background: #10231d; color: #fff; scroll-snap-align: start; box-shadow: var(--shadow); }
.feed-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #13261f; }
.feed-poster { animation: gentleZoom 12s ease-in-out infinite alternate; }
.feed-shade { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.08) 35%,rgba(4,15,12,.9) 100%); }
.feed-copy { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px 18px 20px; }
.feed-copy h2 { margin: 10px 0 2px; font-size: 25px; }
.feed-copy p { margin: 7px 0; color: #e1eee9; }
.feed-price { font-size: 22px; font-weight: 900; }
.feed-earning { display: inline-block; margin: 5px 0 10px; padding: 7px 9px; border-radius: 9px; background: rgba(14,122,88,.82); font-size: 12px; font-weight: 850; }
.pill.dark { color: #fff; background: rgba(7,20,16,.62); }
.feed-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.feed-actions button { flex: 1 1 auto; min-height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 13px; padding: 9px 11px; color: #fff; background: rgba(10,28,22,.72); font-weight: 800; }
.feed-actions button.accent { border-color: #e6bc55; background: #d8a82e; color: #17231e; }
.sound-toggle { position: absolute; z-index: 3; top: 14px; right: 14px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(7,20,16,.68); color: #fff; }
.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0; }
.owner-card { display: grid; gap: 6px; min-height: 105px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; color: var(--ink); text-align: left; }
.owner-card span { color: var(--muted); font-size: 11px; line-height: 1.4; }
.credential-box { display: grid; gap: 6px; margin: 14px 0; padding: 18px; border: 1px solid #bbd9cd; border-radius: 16px; background: #edf8f3; }
.credential-box span { color: var(--muted); font-size: 11px; }
.credential-box b { overflow-wrap: anywhere; color: var(--green); font-size: 23px; letter-spacing: .04em; }
@keyframes gentleZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
@media(max-width:390px){.owner-grid{grid-template-columns:1fr}.feed-item{min-height:68vh}}
