/* Your Volleyball Videos — web client.
   Design tokens mirror the Android app (see the Claude Design project). */

:root {
  --bg: #14161c;
  --glow: #1c2029;
  --card: #20242e;
  --card-2: #262b37;
  --line: rgba(255, 255, 255, 0.07);
  --text: #f4f6fb;
  --muted: rgba(226, 232, 244, 0.62);
  --faint: rgba(226, 232, 244, 0.55);
  --blue: #3aa0ff;
  --amber: #ffc44d;
  --green: #34c759;
  --error: #ff7a7a;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(120% 40% at 50% 0%, var(--glow) 0%, var(--bg) 55%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
}

#app { max-width: 560px; margin: 0 auto; padding: 0 16px 80px; }

a { color: var(--blue); text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }

/* --- header ----------------------------------------------------------- */
.header { display: flex; align-items: center; gap: 10px; padding: 22px 4px 16px; }
.header h1 { font-size: 27px; font-weight: 700; letter-spacing: -0.5px; margin: 0; flex: 1; }
.header .sub { font-size: 21px; }
.iconbtn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--card); border: none; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.iconbtn:hover { background: var(--card-2); }
/* 44px hit area without growing the visual */
.iconbtn { position: relative; }
.iconbtn::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; }
.backbtn { background: transparent; color: var(--text); font-size: 20px; }

/* --- cards & video rows ------------------------------------------------ */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; margin-bottom: 15px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 6px 20px rgba(0, 0, 0, 0.28);
}
.card-head { display: flex; align-items: center; gap: 12px; padding: 16px 16px 10px; }
.card-title {
  font-size: 16.5px; font-weight: 700; flex: 1; letter-spacing: -0.2px; cursor: pointer;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.card-titles { flex: 1; min-width: 0; }
.card-date { font-size: 12.5px; color: var(--faint); font-weight: 600; margin-top: 2px; }
.rows { padding: 2px 8px 6px; }

.vrow {
  display: flex; align-items: center; gap: 13px;
  padding: 8px; border-radius: 14px;
}
.vrow.clickable { cursor: pointer; }
.vrow.clickable:hover { background: var(--card-2); }
.vrow.standalone {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 9px; margin-bottom: 10px;
}

.thumb {
  width: 118px; height: 66px; border-radius: 12px; flex-shrink: 0;
  position: relative; overflow: hidden; background: #0d0f14;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.thumb.large { width: 132px; height: 74px; }
.thumb .frame { position: absolute; inset: 0; }
.thumb .timg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.frame.court-a { background: linear-gradient(180deg, #4a5d74 0%, #3d4e62 52%, #8a684a 52%, #6a5138 100%); }
.frame.court-b { background: linear-gradient(180deg, #45605c 0%, #38504c 52%, #83654a 52%, #665038 100%); }
.frame.court-c { background: linear-gradient(180deg, #55586e 0%, #44475c 52%, #8f6c4a 52%, #6e5338 100%); }
.frame.court-d { background: linear-gradient(180deg, #5e5468 0%, #4a4254 52%, #8a684a 52%, #6a5138 100%); }
.thumb .net { position: absolute; left: 10%; right: 10%; top: 44%; height: 2px; background: rgba(255, 255, 255, 0.5); }
.thumb .net::before, .thumb .net::after {
  content: ""; position: absolute; top: -6px; width: 2px; height: 15px;
  background: rgba(255, 255, 255, 0.35);
}
.thumb .net::before { left: 0; } .thumb .net::after { right: 0; }
.thumb.dim .frame { filter: brightness(0.42) saturate(0.45); }
.thumb .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.42)); }
.pchip {
  position: relative; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(14, 16, 22, 0.55); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px;
}
.wchip { position: relative; color: var(--amber); font-size: 19px; }
.spin { display: inline-block; animation: spin 1.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.vmeta { flex: 1; min-width: 0; }
.vname { font-size: 14.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vstatus { font-size: 12.5px; font-weight: 600; margin-top: 3px; display: flex; align-items: center; gap: 6px; }
.vstatus .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.vstatus.ready { color: var(--blue); }
.vstatus.working { color: var(--amber); }
.vstatus.failed { color: var(--error); }
.fchip {
  position: relative; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 122, 122, 0.18); display: flex; align-items: center; justify-content: center;
  color: var(--error); font-size: 15px; font-weight: 700;
}
.retry-chip {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; position: relative;
  margin-top: 8px;
  font-size: 13px; font-weight: 600; color: var(--text); border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 13px; border-radius: 18px; background: rgba(255, 255, 255, 0.08);
}
.retry-chip:hover { background: rgba(255, 255, 255, 0.13); }
.retry-chip:disabled { opacity: 0.5; cursor: default; }
/* 44px hit area without growing the visual */
.retry-chip::after { content: ""; position: absolute; inset: -6px; border-radius: 24px; }
.vsub { font-size: 12px; color: var(--faint); margin-top: 3px; }

.allrow {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin: 0 8px 8px; padding: 11px; border-radius: 14px; border: none; width: calc(100% - 16px);
  background: rgba(255, 255, 255, 0.045); color: var(--muted);
  font-size: 13.5px; font-weight: 600;
}
.allrow:hover { background: rgba(255, 255, 255, 0.08); }

.chips { display: flex; gap: 8px; padding: 2px 4px 14px; }
.chip {
  display: flex; align-items: center; gap: 6px; padding: 6px 12px;
  border-radius: 16px; font-size: 12.5px; font-weight: 600;
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip.ready { color: var(--blue); background: rgba(58, 160, 255, 0.12); }
.chip.working { color: var(--amber); background: rgba(255, 196, 77, 0.12); }
.chip.shared { color: var(--muted); background: rgba(255, 255, 255, 0.07); }

/* --- forms -------------------------------------------------------------- */
.auth { max-width: 360px; margin: 10vh auto 0; text-align: center; }
.auth h1 { font-size: 26px; font-weight: 700; margin: 0 0 6px; }
.auth .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }
.field { text-align: left; margin-bottom: 14px; }
.flabel {
  display: block; font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 8px;
}
input[type="email"], input[type="password"], input[type="text"] {
  width: 100%; height: 48px; border-radius: 13px; padding: 0 14px;
  background: rgba(255, 255, 255, 0.055); border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--text); font-size: 15px; font-family: var(--font); outline: none;
}
input:focus { border-color: var(--blue); background: rgba(58, 160, 255, 0.05); box-shadow: 0 0 0 3px rgba(58, 160, 255, 0.16); }

.btn-primary {
  width: 100%; height: 50px; border: none; border-radius: 25px;
  background: linear-gradient(160deg, #3d97f2, #1a63c2); color: #fff;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(58, 160, 255, 0.35);
}
.btn-primary:disabled { opacity: 0.5; cursor: default; }
.btn-link { background: none; border: none; color: var(--blue); font-size: 13.5px; font-weight: 600; padding: 8px; }
.or-divider {
  display: flex; align-items: center; gap: 10px; margin: 18px 0 14px;
  color: var(--faint); font-size: 12.5px; font-weight: 500;
}
.or-divider::before, .or-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; height: 50px; border-radius: 25px;
  background: #f4f6fb; border: none; color: #1f2430;
  font-size: 15px; font-weight: 600;
}
.btn-google:disabled { opacity: 0.6; cursor: default; }
.error { color: var(--error); font-size: 13px; margin: 10px 0; min-height: 16px; }
.info { color: var(--muted); font-size: 13px; margin: 10px 0; }

.empty { text-align: center; color: var(--muted); font-size: 15px; padding: 80px 30px; line-height: 1.6; }

/* --- first-run upload hero ------------------------------------------------ */
.empty-hero {
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 58vh; justify-content: center;
  padding: 30px 18px 60px; max-width: 460px;
}
.empty-hero h2 {
  font-size: 33px; font-weight: 800; letter-spacing: -1px; line-height: 1.14;
  margin: 0 0 14px;
}
.empty-hero h2 em { font-style: normal; color: var(--blue); }
.empty-hero p { color: var(--muted); font-size: 15.5px; line-height: 1.55; margin: 0 0 28px; }
.eh-btn {
  display: inline-flex; align-items: center; gap: 9px; width: auto; padding: 0 28px;
  background: linear-gradient(160deg, #3dd167, #22b14c); color: #0a2b14;
  box-shadow: 0 8px 20px rgba(52, 199, 89, 0.35);
}
.eh-btn svg { width: 18px; height: 18px; }
.eh-hint { margin-top: 16px; color: var(--faint); font-size: 13px; }

/* --- player (design per Rally player comp) ------------------------------- */
.watch { position: fixed; inset: 0; background: #07080c; z-index: 10; display: flex; flex-direction: column; }
.scrim-top, .scrim-bottom { position: absolute; left: 0; right: 0; pointer-events: none; z-index: 11; }
.scrim-top { top: 0; height: 130px; background: linear-gradient(180deg, rgba(4,5,8,0.92) 0%, rgba(4,5,8,0.55) 55%, rgba(4,5,8,0) 100%); }
.scrim-bottom { bottom: 0; height: 230px; background: linear-gradient(0deg, rgba(4,5,8,0.94) 0%, rgba(4,5,8,0.6) 55%, rgba(4,5,8,0) 100%); }

.pbar-top {
  position: relative; z-index: 12; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px; padding: 12px 14px;
}
.ptitle { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; padding: 0 4px; }
.ptitle .t1 { font-size: 15.5px; font-weight: 600; letter-spacing: -0.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ptitle .t2 { font-size: 12px; font-weight: 500; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pcirc {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(32, 36, 46, 0.72); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--text);
  padding: 0;
}
.pcirc svg { width: 20px; height: 20px; }
.pcirc:hover { background: rgba(48, 54, 68, 0.85); }
.pcirc[hidden] { display: none; }
.pcirc.small { width: 40px; height: 40px; }
.pcirc.small svg { width: 18px; height: 18px; }
.pcirc.starred { color: var(--amber); background: rgba(255, 196, 77, 0.14); border-color: rgba(255, 196, 77, 0.28); }

.stage { flex: 1; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 0; }
.stage video { max-width: 100%; max-height: 100%; }

/* auto-hiding chrome: fade both bars while playing untouched */
.watch .pbar-top, .watch .pbar-bottom, .watch .scrim-top, .watch .scrim-bottom { transition: opacity 0.25s ease; }
.watch.idle .pbar-top, .watch.idle .pbar-bottom { opacity: 0; pointer-events: none; }
.watch.idle .scrim-top, .watch.idle .scrim-bottom { opacity: 0; }

.pbar-bottom {
  position: relative; z-index: 12; flex-shrink: 0;
  padding: 0 20px 14px; display: flex; flex-direction: column; gap: 8px;
  max-width: 860px; width: 100%; margin: 0 auto;
}
.times {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums;
}
.times .cur { color: var(--text); }

/* rally bar: position within the current rally */
.rallybar {
  height: 5px; border-radius: 3px; cursor: pointer; position: relative;
  background: rgba(255, 255, 255, 0.14); opacity: 0; transition: opacity 0.2s;
}
.rallybar.visible { opacity: 1; }
.rallybar::after { content: ""; position: absolute; inset: -7px 0; }
.rallyfill { height: 100%; border-radius: 3px; background: var(--amber); width: 0; }

/* whole-video timeline with rally segments (comp: .seekwrap/.track) */
.seekwrap { position: relative; height: 28px; display: flex; align-items: center; cursor: pointer; }
.seekwrap .track { position: relative; width: 100%; height: 5px; border-radius: 2.5px; background: rgba(255, 255, 255, 0.14); }
.tl-segments { position: absolute; inset: 0; }
.tl-segments .seg {
  position: absolute; top: 50%; height: 9px; transform: translateY(-50%);
  border-radius: 2px; background: rgba(255, 255, 255, 0.30);
}
.tl-segments .seg.dim { background: rgba(255, 255, 255, 0.14); }
.tl-segments .seg.active { background: rgba(58, 160, 255, 0.75); }
.tl-segments .seg.cur { height: 14px; background: #fff; box-shadow: 0 0 8px rgba(255, 255, 255, 0.45); }
.tl-segments .seg.active.cur { background: #fff; }
.seekwrap .fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  border-radius: 2.5px; background: linear-gradient(90deg, #2f86dd, #3aa0ff);
}
.seekwrap .knob {
  position: absolute; top: 50%; left: 0; width: 15px; height: 15px; border-radius: 50%;
  background: #fff; transform: translate(-50%, -50%);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); pointer-events: none;
}
.tl-tooltip {
  position: absolute; top: -18px; transform: translateX(-50%);
  background: rgba(8, 10, 14, 0.9); color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 2px 7px; border-radius: 6px; pointer-events: none; white-space: nowrap;
}
.transport { display: flex; align-items: center; gap: 10px; padding-top: 2px; }
.tgroup { display: flex; align-items: center; gap: 10px; }
.tgroup.left, .tgroup.right { flex: 1; }
.tgroup.right { justify-content: flex-end; }
.tgroup.center { gap: 22px; }
.playbtn {
  width: 62px; height: 62px; border-radius: 50%; border: none; padding: 0;
  background: #f4f6fb; color: #0d0f14;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.playbtn svg { width: 25px; height: 25px; }
.volslider {
  -webkit-appearance: none; appearance: none;
  width: 64px; height: 4px; margin: 0; border-radius: 2px;
  background: linear-gradient(to right, #fff var(--vol, 100%), rgba(255, 255, 255, 0.28) var(--vol, 100%));
  outline: none; cursor: pointer;
}
.volslider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px; border-radius: 50%; background: #fff; border: none;
}
.volslider::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%; background: #fff; border: none;
}
.volslider::-moz-range-track { height: 4px; border-radius: 2px; background: transparent; }
@media (max-width: 560px) {
  .volslider { display: none; }
  /* No room for the slider: the label becomes a tap-to-cycle control. */
  .speedbox input { display: none; }
  .speedbox { cursor: pointer; }
  .transport { gap: 6px; }
  .tgroup.center { gap: 10px; }
  .tgroup.right { gap: 6px; }
  .playbtn { width: 54px; height: 54px; }
}

.menu {
  position: absolute; right: 14px; top: 64px; background: var(--card-2);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; z-index: 20;
}
.menu button { display: block; width: 100%; text-align: left; padding: 11px 16px; background: none; border: none; color: var(--text); font-size: 14px; }
.menu button:hover { background: rgba(255, 255, 255, 0.07); }

/* --- playback speed ------------------------------------------------------ */
.speedbox { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.speedbox span {
  font-size: 12px; font-weight: 700; color: var(--muted); min-width: 34px;
  text-align: right; cursor: pointer; font-variant-numeric: tabular-nums;
}
.speedbox input { width: 74px; accent-color: var(--blue); margin: 0; }

/* --- player-selection menu (filter rallies to a player's hits) ----------- */
.pmenu {
  position: absolute; inset: 0; z-index: 25;
  background: rgba(6, 8, 12, 0.62); backdrop-filter: blur(5px);
  display: flex; align-items: flex-start; justify-content: center; padding: 8vh 18px 0;
}
.pmenu-sheet {
  width: 100%; max-width: 420px; max-height: 82vh; overflow-y: auto;
  background: #232936; border: 1px solid var(--line); border-radius: 24px;
  padding: 18px 18px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.pmenu-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.pmenu-title { flex: 1; font-size: 17px; font-weight: 700; letter-spacing: -0.2px; }
.pmenu-close {
  background: var(--card); border: none; color: var(--muted); width: 34px; height: 34px;
  border-radius: 50%; font-size: 14px; position: relative;
}
.pmenu-close::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; }
.pmenu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px; margin-bottom: 14px;
}
.pmenu-item {
  position: relative; border: 2px solid transparent; border-radius: 14px; padding: 0;
  background: var(--card); overflow: hidden; cursor: pointer;
}
.pmenu-item img { display: block; width: 100%; height: 96px; object-fit: cover; object-position: top; }
.pmenu-item.selected { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58, 160, 255, 0.25); }
.pmenu-hits {
  position: absolute; left: 5px; bottom: 5px; font-size: 10.5px; font-weight: 700;
  color: #fff; background: rgba(8, 10, 14, 0.72); padding: 2px 7px; border-radius: 7px;
}
.pmenu-clip {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted); margin-bottom: 14px;
}
.pmenu-clip label { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.pmenu-clip input[type="number"] {
  width: 52px; height: 34px; border-radius: 9px; padding: 0 8px;
  background: rgba(255, 255, 255, 0.055); border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--text); font-size: 13.5px; font-family: var(--font);
}
.pmenu-clip input[type="number"]:disabled { opacity: 0.4; }
.pmenu-check input { accent-color: var(--blue); width: 15px; height: 15px; }
.pmenu-actions { display: flex; align-items: center; justify-content: space-between; }
.pmenu-watch { width: auto; height: 42px; padding: 0 26px; font-size: 14px; }

/* --- toast --------------------------------------------------------------- */
#toast {
  position: fixed; left: 50%; bottom: 34px; transform: translateX(-50%);
  background: var(--card-2); border: 1px solid var(--line); color: var(--text);
  padding: 11px 18px; border-radius: 22px; font-size: 13.5px; z-index: 50;
  opacity: 0; transition: opacity 0.25s; pointer-events: none; white-space: nowrap;
}
#toast.show { opacity: 1; }

.banner {
  background: rgba(58, 160, 255, 0.1); border: 1px solid rgba(58, 160, 255, 0.25);
  color: var(--muted); border-radius: 14px; padding: 10px 14px; font-size: 13px;
  margin-bottom: 14px;
}

/* --- upload dialogs & progress ------------------------------------------- */
.scrim {
  position: fixed; inset: 0; background: rgba(6, 8, 12, 0.62);
  backdrop-filter: blur(5px); z-index: 40;
  display: flex; align-items: flex-start; justify-content: center; padding: 11vh 22px 0;
}
.dialog {
  width: 100%; max-width: 380px; background: #232936;
  border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 24px;
  padding: 22px 20px 18px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.dialog h3 { margin: 0 0 16px; font-size: 19px; font-weight: 700; }
.dialog .filemeta { color: var(--faint); font-size: 12.5px; margin: -8px 0 14px; }
.dialog .actions { display: flex; justify-content: flex-end; align-items: center; gap: 6px; margin-top: 20px; }
.btn-cancel { background: none; border: none; color: var(--muted); font-size: 14.5px; font-weight: 600; padding: 13px 16px; border-radius: 22px; }
.btn-pill {
  height: 44px; padding: 0 20px; border: none; border-radius: 22px;
  background: linear-gradient(160deg, #3d97f2, #1a63c2); color: #fff;
  font-size: 14.5px; font-weight: 700; box-shadow: 0 8px 20px rgba(58, 160, 255, 0.35);
}
.btn-pill:disabled { opacity: 0.5; }
.btn-pill.green { background: linear-gradient(160deg, #3dd167, #22b14c); color: #0a2b14; box-shadow: 0 8px 20px rgba(52, 199, 89, 0.35); }
.progress-track { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.12); overflow: hidden; margin: 18px 0 8px; }
.progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #ffb52e, #ffd06b); transition: width 0.2s; }
.progress-label { font-size: 13px; color: var(--muted); text-align: center; }
.upload-chip {
  display: flex; align-items: center; gap: 6px; border: none;
  font-size: 13.5px; font-weight: 600; color: var(--blue);
  padding: 5px 11px; border-radius: 20px; background: rgba(58, 160, 255, 0.12);
  position: relative; flex-shrink: 0;
}
/* 44px hit area without growing the visual */
.upload-chip::after { content: ""; position: absolute; inset: -9px; border-radius: 26px; }
.upload-chip:hover { background: rgba(58, 160, 255, 0.2); }
.fab {
  position: fixed; right: 18px; bottom: 26px; height: 54px; z-index: 30;
  padding: 0 24px 0 20px; border: none; border-radius: 27px;
  background: linear-gradient(160deg, #3dd167, #22b14c); color: #0a2b14;
  font-size: 15.5px; font-weight: 700; box-shadow: 0 10px 28px rgba(52, 199, 89, 0.4);
}
