/* ============================================================
   WATER GAME — UI (panels, buttons, screens)
   ============================================================ */

.wg-app { display: flex; flex-direction: column; height: 100%; position: relative; }

/* ---------- TOP BAR ---------- */
.wg-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px 12px; gap: 10px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, oklch(0.19 0.03 222), transparent);
}
.wg-brand { display: flex; align-items: center; gap: 9px; }
.wg-logo {
  width: 32px; height: 32px; border-radius: 10px; flex: none; position: relative; overflow: hidden;
  background: linear-gradient(155deg, oklch(0.30 0.055 212), oklch(0.15 0.04 228));
  box-shadow: 0 4px 12px oklch(0.55 0.12 220 / 0.45), inset 0 0 0 1px oklch(0.6 0.1 205 / 0.5), inset 0 2px 2px oklch(1 0 0 / 0.2);
}
/* Hydro — marca de ola (PNG real via mask, tintada con el cian de la app) */
.wg-drop-mark {
  position: absolute; left: 50%; top: 50%; width: 86%; height: 86%;
  transform: translate(-50%, -50%);
  background: linear-gradient(150deg, var(--aqua-bright), var(--aqua));
  -webkit-mask: url("wave-mask.png") center / contain no-repeat;
  mask: url("wave-mask.png") center / contain no-repeat;
}
.wg-brand-name { font-weight: 700; font-size: 15px; letter-spacing: -0.2px; }
.wg-brand-name span { color: var(--aqua); }
.wg-brand-tag { font-size: 9px; color: var(--muted-2); letter-spacing: 1.5px; text-transform: uppercase; }

.wg-balance-chip {
  display: flex; flex-direction: column; align-items: flex-end;
  padding: 6px 12px; border-radius: var(--r-md);
  background: var(--panel-2); border: 1px solid var(--line-soft);
  cursor: pointer; transition: border-color .15s;
}
.wg-balance-chip:hover { border-color: var(--aqua-deep); }
.wg-balance-chip .lbl { font-size: 8px; color: var(--muted-2); letter-spacing: 1px; text-transform: uppercase; }
.wg-balance-chip .val { font-size: 15px; font-weight: 700; color: var(--text); }
.wg-balance-chip .val b { color: var(--aqua); font-weight: 700; }

.wg-icon-btn {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: var(--panel-2); border: 1px solid var(--line-soft);
  display: grid; place-items: center; font-size: 15px; color: var(--muted);
  transition: all .15s;
}
.wg-icon-btn:hover { color: var(--text); border-color: var(--aqua-deep); }
.wg-icon-btn.on { color: var(--aqua); }

/* ---------- HISTORY BAR ---------- */
.wg-history {
  display: flex; gap: 6px; padding: 10px 14px; align-items: center;
  overflow-x: auto; flex: none; border-bottom: 1px solid var(--line-soft);
}
.wg-hist-badge {
  flex: none; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700;
  background: var(--panel-2); border: 1px solid transparent;
}
.wg-hist-badge.low { color: var(--muted); }
.wg-hist-badge.med { color: var(--aqua); border-color: oklch(0.82 0.13 202 / 0.2); }
.wg-hist-badge.high { color: oklch(0.78 0.16 300); border-color: oklch(0.78 0.16 300 / 0.25); }
.wg-hist-badge.epic { color: var(--gold); border-color: oklch(0.84 0.13 85 / 0.3); }
.wg-hist-live { font-size: 9px; color: var(--muted-2); letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 5px; flex: none; padding-right: 4px; }
.wg-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: wg-pulse-glow 1.6s infinite; }

/* ---------- MAIN SCROLL AREA ---------- */
.wg-main { flex: 1; min-height: 0; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.wg-money-actions { display: flex; gap: 10px; }
.wg-money-btn {
  flex: 1; padding: 14px 12px; border-radius: var(--r-md); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: transform .08s, filter .15s;
}
.wg-money-btn:active { transform: scale(0.97); }
.wg-money-btn.deposit { background: linear-gradient(180deg, var(--aqua-bright), var(--aqua-deep)); color: oklch(0.15 0 0); }
.wg-money-btn.withdraw { background: var(--panel-2); color: var(--text); border: 1px solid var(--line); }

/* status line over scene */
.wg-status {
  position: absolute; bottom: 10px; left: 0; right: 0; text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; z-index: 22;
  color: var(--muted);
}
.wg-status.win { color: var(--green); }
.wg-status.lose { color: var(--red-bright); }

/* countdown progress */
.wg-countdown {
  position: absolute; top: 0; left: 0; height: 3px; z-index: 24;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-bright));
  box-shadow: 0 0 8px var(--aqua); transition: width .1s linear;
}

/* ---------- BET PANEL ---------- */
.wg-betpanel {
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 14px; display: flex; flex-direction: column; gap: 12px;
}
.wg-risk {
  display: flex; gap: 4px; background: var(--bg-deep); padding: 4px; border-radius: 12px;
}
.wg-risk button {
  flex: 1; padding: 9px 4px; font-size: 11px; font-weight: 700; border-radius: 9px;
  color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.5px; transition: all .15s;
}
.wg-risk button.active { background: var(--panel-2); color: var(--text); box-shadow: 0 2px 6px oklch(0 0 0 / 0.3); }
.wg-risk button.active[data-r="easy"] { color: var(--green); }
.wg-risk button.active[data-r="med"] { color: var(--aqua); }
.wg-risk button.active[data-r="pro"] { color: var(--gold); }

.wg-bet-row { display: flex; flex-direction: column; gap: 8px; }
.wg-bet-head { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted-2); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.wg-bet-input {
  display: flex; align-items: center; gap: 6px; background: var(--bg-deep);
  border: 1px solid var(--line-soft); border-radius: 12px; padding: 4px 4px 4px 12px;
}
.wg-bet-input .cur { font-size: 13px; font-weight: 700; color: var(--aqua); }
.wg-bet-input input {
  flex: 1; background: none; border: none; outline: none; color: var(--text);
  font-size: 20px; font-weight: 700; width: 100%; min-width: 0;
}
.wg-chip { padding: 8px 10px; font-size: 11px; font-weight: 700; border-radius: 8px; background: var(--panel-2); color: var(--muted); transition: all .12s; }
.wg-chip:hover { background: var(--panel-3); color: var(--text); }
.wg-quickadd { display: flex; gap: 6px; }
.wg-quickadd button { flex: 1; padding: 8px; font-size: 12px; font-weight: 700; border-radius: 9px; background: var(--panel-2); color: var(--muted); transition: all .12s; }
.wg-quickadd button:hover { background: var(--panel-3); color: var(--text); }

/* auto cashout */
.wg-auto { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wg-auto-left { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); font-weight: 600; }
.wg-switch { width: 40px; height: 23px; border-radius: 20px; background: var(--panel-3); position: relative; transition: background .2s; flex: none; }
.wg-switch.on { background: var(--aqua-deep); }
.wg-switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 19px; height: 19px; border-radius: 50%; background: #fff; transition: transform .2s; }
.wg-switch.on::after { transform: translateX(17px); }
.wg-auto-input { display: flex; align-items: center; gap: 4px; background: var(--bg-deep); border: 1px solid var(--line-soft); border-radius: 9px; padding: 5px 9px; }
.wg-auto-input input { width: 46px; background: none; border: none; outline: none; color: var(--text); font-size: 14px; font-weight: 700; text-align: right; }
.wg-auto-input span { font-size: 13px; font-weight: 700; color: var(--muted-2); }

/* MAIN ACTION BUTTON */
.wg-action {
  width: 100%; padding: 17px; border-radius: var(--r-md);
  font-size: 17px; font-weight: 700; letter-spacing: 0.3px;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  transition: transform .08s, filter .15s; position: relative; overflow: hidden;
}
.wg-action:active { transform: scale(0.985); }
.wg-action small { font-size: 11px; font-weight: 600; opacity: 0.8; }
.wg-action.bet { background: linear-gradient(180deg, var(--green), var(--green-deep)); color: oklch(0.15 0.04 160); box-shadow: 0 6px 18px -4px oklch(0.7 0.16 158 / 0.5); }
.wg-action.cancel { background: var(--panel-3); color: var(--text); }
.wg-action.cashout { background: linear-gradient(180deg, var(--green), var(--green-deep)); color: #04231b; box-shadow: 0 6px 20px -4px rgba(29,233,182,0.5); animation: wg-pulse-glow 1.4s infinite; }
.wg-action.waiting { background: var(--panel-2); color: var(--muted); cursor: default; }
.wg-action:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- LIVE BETS FEED ---------- */
.wg-feed { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; }
.wg-feed-head { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-bottom: 1px solid var(--line-soft); }
.wg-feed-head .title { font-size: 12px; font-weight: 700; letter-spacing: 0.3px; }
.wg-feed-head .count { font-size: 11px; color: var(--muted-2); font-weight: 600; }
.wg-feed-cols { display: flex; padding: 6px 14px; font-size: 9px; color: var(--muted-2); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.wg-feed-cols span:nth-child(1) { flex: 1.4; }
.wg-feed-cols span:nth-child(2) { flex: 1; text-align: right; }
.wg-feed-cols span:nth-child(3) { flex: 0.9; text-align: center; }
.wg-feed-cols span:nth-child(4) { flex: 1.1; text-align: right; }
.wg-feed-list { max-height: 232px; overflow-y: auto; }
.wg-feed-row { display: flex; align-items: center; padding: 8px 14px; font-size: 12.5px; border-top: 1px solid oklch(0.27 0.028 220 / 0.5); animation: wg-rise .3s ease; }
.wg-feed-row.me { background: oklch(0.82 0.13 202 / 0.07); }
.wg-feed-row .who { flex: 1.4; display: flex; align-items: center; gap: 8px; min-width: 0; }
.wg-feed-row .who .av { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: oklch(0.15 0 0); }
.wg-feed-row .who .nm { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-weight: 600; }
.wg-feed-row.me .who .nm { color: var(--aqua); }
.wg-feed-row .amt { flex: 1; text-align: right; font-weight: 700; }
.wg-feed-row .mx { flex: 0.9; text-align: center; font-weight: 700; font-size: 11.5px; }
.wg-feed-row .mx.pending { color: var(--muted-2); }
.wg-feed-row .mx.won { color: var(--green); }
.wg-feed-row .mx.lost { color: var(--red); }
.wg-feed-row .win { flex: 1.1; text-align: right; font-weight: 700; }
.wg-feed-row .win.pos { color: var(--green); }
.wg-feed-row .win.neg { color: var(--muted-2); }

/* ---------- MODALS / SCREENS ---------- */
.wg-overlay {
  position: absolute; inset: 0; z-index: 60; display: flex; flex-direction: column;
  background: oklch(0.10 0.025 226 / 0.78); backdrop-filter: blur(8px);
  animation: wg-rise .2s ease;
}
.wg-sheet {
  margin-top: auto; background: var(--bg); border-radius: var(--r-xl) var(--r-xl) 0 0;
  border-top: 1px solid var(--line); padding: 8px 18px 24px; max-height: 90%; overflow-y: auto;
  box-shadow: 0 -20px 60px -10px black;
  animation: wg-slide-up .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes wg-slide-up { from { transform: translateY(40px); opacity: 0.6; } to { transform: none; opacity: 1; } }
.wg-sheet-grab { width: 40px; height: 4px; border-radius: 4px; background: var(--line); margin: 6px auto 16px; }
.wg-sheet h2 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.wg-sheet .sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.5; }
.wg-sheet-close { position: absolute; top: 14px; right: 16px; }

/* tabs */
.wg-tabs { display: flex; gap: 4px; background: var(--bg-deep); padding: 4px; border-radius: 12px; margin-bottom: 16px; }
.wg-tabs button { flex: 1; padding: 10px; font-size: 13px; font-weight: 700; border-radius: 9px; color: var(--muted-2); transition: all .15s; }
.wg-tabs button.active { background: var(--panel-2); color: var(--text); }

/* fields */
.wg-field { margin-bottom: 14px; }
.wg-field label { display: block; font-size: 11px; color: var(--muted-2); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 7px; }
.wg-input {
  width: 100%; background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; font-size: 15px; color: var(--text); outline: none; font-weight: 500; transition: border-color .15s;
}
.wg-input:focus { border-color: var(--aqua-deep); }
.wg-input::placeholder { color: var(--muted-2); }

.wg-btn-primary {
  width: 100%; padding: 16px; border-radius: var(--r-md); font-size: 16px; font-weight: 700;
  background: linear-gradient(180deg, var(--aqua-bright), var(--aqua-deep)); color: oklch(0.15 0.04 230);
  box-shadow: 0 6px 18px -4px oklch(0.7 0.12 215 / 0.5); transition: transform .08s;
}
.wg-btn-primary:active { transform: scale(0.985); }
.wg-btn-ghost { width: 100%; padding: 14px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; background: var(--panel-2); color: var(--muted); }
.wg-divider { display: flex; align-items: center; gap: 12px; color: var(--muted-2); font-size: 11px; margin: 16px 0; }
.wg-divider::before, .wg-divider::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }

/* address / wallet box */
.wg-addr {
  display: flex; align-items: center; gap: 10px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; font-size: 13px; font-family: var(--ff); word-break: break-all;
}
.wg-addr .mono { font-family: ui-monospace, monospace; color: var(--aqua); flex: 1; }
.wg-net-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 20px; background: oklch(0.55 0.13 295 / 0.18); color: oklch(0.8 0.13 295); font-size: 11px; font-weight: 700; }
.wg-net-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.7 0.16 295); }

/* QR placeholder */
.wg-qr {
  width: 150px; height: 150px; margin: 6px auto 14px; border-radius: 14px; background: #fff; padding: 10px;
  display: grid; grid-template-columns: repeat(7, 1fr); grid-template-rows: repeat(7,1fr); gap: 2px;
}
.wg-qr i { background: #0c0d10; border-radius: 1px; }
.wg-qr i.off { background: transparent; }

/* stat cards (admin) */
.wg-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.wg-stat { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 13px; }
.wg-stat .lbl { font-size: 10px; color: var(--muted-2); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; }
.wg-stat .val { font-size: 22px; font-weight: 700; margin-top: 4px; }
.wg-stat .val.pos { color: var(--green); }
.wg-stat .val.neg { color: var(--red-bright); }
.wg-stat .val.aqua { color: var(--aqua); }

.wg-note { font-size: 12px; line-height: 1.55; color: var(--muted); background: oklch(0.55 0.12 85 / 0.10); border: 1px solid oklch(0.7 0.12 85 / 0.25); border-radius: 12px; padding: 12px 14px; }
.wg-note b { color: var(--gold); }
.wg-row-line { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.wg-row-line .k { color: var(--muted); }
.wg-row-line .v { font-weight: 700; }

/* wallet connect providers */
.wg-provider { display: flex; align-items: center; gap: 12px; width: 100%; padding: 14px 16px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line-soft); font-size: 15px; font-weight: 700; color: var(--text); transition: border-color .15s; }
.wg-provider:hover { border-color: var(--aqua-deep); }
.wg-provider .ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-size: 19px; background: var(--panel-2); flex: none; }
.wg-provider .chev { margin-left: auto; color: var(--muted-2); font-size: 18px; }
.wg-secure-line { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 11px; color: var(--muted); margin-top: 4px; }
.wg-secure-line b { color: var(--aqua); font-weight: 700; }
.wg-spinner { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--aqua); animation: wg-spin 0.8s linear infinite; margin: 0 auto 16px; }

/* provably fair */
.wg-pf-step { display: flex; gap: 12px; margin-bottom: 14px; }
.wg-pf-step .n { width: 26px; height: 26px; border-radius: 50%; background: var(--panel-2); border: 1px solid var(--line-soft); display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--aqua); flex: none; }
.wg-pf-step .tx { font-size: 13px; line-height: 1.5; color: var(--muted); }
.wg-pf-step .tx b { color: var(--text); font-weight: 600; }
.wg-pf-val { margin-bottom: 12px; }
.wg-pf-val label { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted-2); letter-spacing: .5px; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.wg-pf-code { font-family: ui-monospace, monospace; font-size: 11.5px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; word-break: break-all; color: var(--aqua); line-height: 1.5; }
.wg-pf-result { display: flex; align-items: center; justify-content: space-between; background: oklch(0.55 0.13 160 / 0.12); border: 1px solid oklch(0.7 0.14 160 / 0.3); border-radius: 12px; padding: 14px; margin-top: 6px; }
.wg-pf-result .k { font-size: 12px; color: var(--muted); }
.wg-pf-result .v { font-size: 22px; font-weight: 700; color: var(--green); }

/* seed phrase + keys */
.wg-seed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.wg-seed-word { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 9px; padding: 9px 8px; font-size: 12.5px; font-weight: 600; display: flex; gap: 6px; align-items: baseline; }
.wg-seed-word i { color: var(--muted-2); font-style: normal; font-size: 9px; width: 12px; flex: none; text-align: right; }
.wg-secret { position: relative; }
.wg-secret.hidden .wg-blurable { filter: blur(6px); user-select: none; pointer-events: none; }
.wg-reveal-btn {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: oklch(0.14 0.025 226 / 0.35); border-radius: 12px; font-size: 13px; font-weight: 700; color: var(--text);
}
.wg-key-box { display: flex; align-items: center; gap: 10px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; }
.wg-key-box .mono { font-family: ui-monospace, monospace; font-size: 12px; color: var(--text); flex: 1; word-break: break-all; }
.wg-warn { font-size: 12px; line-height: 1.5; color: var(--red-bright); background: oklch(0.5 0.12 25 / 0.12); border: 1px solid oklch(0.6 0.16 25 / 0.3); border-radius: 12px; padding: 11px 13px; margin-bottom: 16px; }
.wg-net-toggle { display: flex; gap: 6px; margin-bottom: 14px; }
.wg-net-toggle button { flex: 1; padding: 11px; border-radius: 11px; font-size: 13px; font-weight: 700; background: var(--bg-deep); border: 1px solid var(--line-soft); color: var(--muted); display: flex; flex-direction: column; gap: 2px; align-items: center; }
.wg-net-toggle button small { font-size: 10px; font-weight: 600; color: var(--muted-2); }
.wg-net-toggle button.active { border-color: var(--aqua-deep); color: var(--text); background: var(--panel-2); }
.wg-net-toggle button.active small { color: var(--aqua); }

.wg-demo-tag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  z-index: 80; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); background: oklch(0.5 0.1 85 / 0.25); border: 1px solid oklch(0.7 0.12 85 / 0.3);
  border-top: none; padding: 3px 12px; border-radius: 0 0 8px 8px;
}
.wg-demo-tag.live { color: var(--green); background: oklch(0.5 0.12 160 / 0.22); border-color: oklch(0.6 0.14 160 / 0.4); }
.wg-sim-note { font-size: 10.5px; color: var(--muted-2); text-align: center; margin-top: -2px; }

/* login splash */
.wg-login { height: 100%; display: flex; flex-direction: column; padding: 0 26px; position: relative; overflow: hidden; }
.wg-login-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background: radial-gradient(60% 40% at 50% 18%, oklch(0.4 0.1 210 / 0.5), transparent 70%); }
.wg-login-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.wg-login-hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; }
.wg-login-logo { width: 86px; height: 86px; border-radius: 26px; margin-bottom: 14px; position: relative; overflow: hidden;
  background: linear-gradient(155deg, oklch(0.32 0.055 212), oklch(0.14 0.04 230));
  box-shadow: 0 16px 40px -8px oklch(0.6 0.13 215 / 0.6), inset 0 0 0 1px oklch(0.6 0.1 205 / 0.5), inset 0 3px 3px oklch(1 0 0 / 0.2); }
.wg-login-logo .wg-drop-mark {
  width: 74%; height: 74%; }
.wg-login h1 { font-size: 32px; font-weight: 700; letter-spacing: -1px; }
.wg-login h1 span { color: var(--aqua); }
.wg-login .tagline { font-size: 14px; color: var(--muted); max-width: 260px; line-height: 1.5; }
.wg-login-actions { padding-bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.wg-login-legal { font-size: 10px; color: var(--muted-2); text-align: center; line-height: 1.5; margin-top: 6px; }

@keyframes wg-pulse-glow {
  0%, 100% { box-shadow: 0 6px 20px -4px rgba(29,233,182,0.5), 0 0 0 0 rgba(29,233,182,0.4); }
  50% { box-shadow: 0 6px 20px -4px rgba(29,233,182,0.5), 0 0 0 8px rgba(29,233,182,0); }
}
