/* GoldFX M5 — premium domestic trading (Taline · Melligold · Milli · ITBFX) */
:root {
  --m5-bg: #0f0d0a;
  --m5-bg-elevated: #16130f;
  --m5-surface: #1c1812;
  --m5-surface-2: #252019;
  --m5-surface-3: #2e2720;
  --m5-gold: #e8c468;
  --m5-gold-dim: #b8943f;
  --m5-gold-glow: rgba(232, 196, 104, 0.18);
  --m5-buy: #1f8a5c;
  --m5-buy-bg: rgba(31, 138, 92, 0.12);
  --m5-sell: #d62839;
  --m5-sell-bg: rgba(214, 40, 57, 0.12);
  --m5-text: #faf6ef;
  --m5-muted: #9a8f7e;
  --m5-border: rgba(255, 255, 255, 0.08);
  --m5-radius: 16px;
  --m5-radius-sm: 10px;
  --m5-font: "Vazirmatn", Tahoma, system-ui, sans-serif;
  --m5-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --m5-nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

html.m5-root, .m5-app {
  font-family: var(--m5-font);
  background: var(--m5-bg);
  color: var(--m5-text);
  -webkit-font-smoothing: antialiased;
}

.m5-app {
  min-height: 100dvh;
  padding-bottom: calc(var(--m5-nav-h) + env(safe-area-inset-bottom, 0px) + 0.5rem);
}

.m5-room-wrap {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

/* Paper banner */
.m5-paper-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, #2a2218, #1f1a14, #2a2218);
  border-bottom: 1px solid var(--m5-gold-dim);
  color: var(--m5-gold);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.m5-paper-dot, .m5-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--m5-gold);
  animation: m5-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.m5-live-dot.sm { width: 5px; height: 5px; }

@keyframes m5-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* Topbar */
.m5-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: var(--m5-bg-elevated);
  border-bottom: 1px solid var(--m5-border);
}

.m5-brand { display: flex; align-items: center; gap: 0.65rem; }
.m5-brand strong { display: block; font-size: 0.95rem; font-weight: 700; }
.m5-brand span { font-size: 0.72rem; color: var(--m5-muted); }

.m5-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--m5-gold), #9a7428);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #1a1208;
  box-shadow: 0 4px 16px var(--m5-gold-glow);
}

.m5-topbar-actions { display: flex; gap: 0.45rem; align-items: center; flex-wrap: wrap; }

.m5-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: #5fd99a;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(95, 217, 154, 0.1);
  border: 1px solid rgba(95, 217, 154, 0.25);
}

.m5-leverage-badge {
  font-size: 0.68rem;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  background: rgba(232, 196, 104, 0.12);
  color: var(--m5-gold);
  border: 1px solid rgba(232, 196, 104, 0.35);
}

.m5-lang-toggle {
  background: var(--m5-surface-2);
  border: 1px solid var(--m5-border);
  color: var(--m5-text);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Market strip */
.m5-market-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.45rem 1rem;
  font-size: 0.68rem;
  color: var(--m5-muted);
  background: var(--m5-surface);
  border-bottom: 1px solid var(--m5-border);
}

.m5-market-open { color: #5fd99a; font-weight: 600; }

/* Room tabs */
.m5-rooms {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  overflow-x: auto;
  background: var(--m5-bg-elevated);
  border-bottom: 1px solid var(--m5-border);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.m5-rooms::-webkit-scrollbar { display: none; }

.m5-room-btn {
  flex: 0 0 auto;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--m5-border);
  background: var(--m5-surface-2);
  color: var(--m5-muted);
  font-family: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.m5-room-btn.active {
  background: linear-gradient(135deg, var(--m5-gold), var(--m5-gold-dim));
  color: #1a1208;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 2px 12px var(--m5-gold-glow);
}

/* Wallet hero — Melligold style */
.m5-wallet-hero {
  position: relative;
  margin: 0.75rem 1rem;
  padding: 1rem;
  border-radius: var(--m5-radius);
  background: linear-gradient(160deg, var(--m5-surface-2) 0%, var(--m5-surface) 100%);
  border: 1px solid var(--m5-border);
  overflow: hidden;
}

.m5-wallet-glow {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, var(--m5-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.m5-wallet-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 0.65rem;
}

.m5-balance-card, .m5-spot-mini {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--m5-border);
  border-radius: var(--m5-radius-sm);
  padding: 0.85rem;
}

.m5-balance-card--primary {
  border-color: rgba(232, 196, 104, 0.3);
}

.m5-label { font-size: 0.72rem; color: var(--m5-muted); margin: 0 0 0.2rem; }
.m5-balance-val {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--m5-gold);
  letter-spacing: -0.02em;
}

.m5-grams-held { font-size: 0.78rem; color: var(--m5-text); margin: 0.4rem 0 0; }
.m5-equity { font-size: 0.75rem; color: var(--m5-muted); margin: 0.3rem 0 0; }
.m5-spot-oz-val { font-size: 1rem; font-weight: 700; margin: 0; }
.m5-spot-gram-hint { font-size: 0.68rem; color: var(--m5-muted); margin: 0.25rem 0 0; }
.m5-change.up, .pnl-up { color: #5fd99a; }
.m5-change.down, .pnl-down { color: var(--m5-sell); }

/* Panels */
.m5-panel-stack { padding: 0 0 0.5rem; }

.m5-panel { animation: m5-fade-in 0.2s ease; }

@keyframes m5-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bid/ask book — Taline */
.m5-book {
  margin: 0 1rem 0.65rem;
  padding: 1rem;
  background: var(--m5-surface);
  border: 1px solid var(--m5-border);
  border-radius: var(--m5-radius);
  box-shadow: var(--m5-shadow);
}

.m5-book-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.m5-book-title {
  font-size: 0.78rem;
  color: var(--m5-muted);
  margin: 0;
}

.m5-book-live {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: #5fd99a;
}

.m5-book-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.45rem;
  align-items: stretch;
}

.m5-book-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.9rem 0.45rem;
  border-radius: var(--m5-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  background: var(--m5-surface-2);
  color: inherit;
  transition: transform 0.1s ease, box-shadow 0.15s;
}

.m5-book-tile:active { transform: scale(0.97); }

.m5-book-tile--buy {
  border-color: rgba(31, 138, 92, 0.45);
  background: var(--m5-buy-bg);
}

.m5-book-tile--buy strong { color: #5fd99a; font-size: 1.1rem; font-weight: 800; }
.m5-book-tile--sell {
  border-color: rgba(214, 40, 57, 0.45);
  background: var(--m5-sell-bg);
}

.m5-book-tile--sell strong { color: #ff6b7a; font-size: 1.1rem; font-weight: 800; }

.m5-book-label { font-size: 0.72rem; color: var(--m5-muted); }
.m5-book-unit { font-size: 0.65rem; color: var(--m5-muted); }

.m5-book-action {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
}

.m5-book-tile--buy .m5-book-action { background: var(--m5-buy); color: #fff; }
.m5-book-tile--sell .m5-book-action { background: var(--m5-sell); color: #fff; }

.m5-book-spread {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  color: var(--m5-muted);
  padding: 0 0.2rem;
}

.m5-book-spread strong { display: block; color: var(--m5-gold); font-size: 0.82rem; }
.m5-book-mid { font-size: 0.62rem; margin-top: 0.2rem; max-width: 4.5rem; line-height: 1.3; }

.m5-fee-line {
  text-align: center;
  font-size: 0.68rem;
  color: var(--m5-muted);
  margin: 0.75rem 0 0;
  padding-top: 0.6rem;
  border-top: 1px solid var(--m5-border);
}

/* Depth — IME style */
.m5-depth {
  margin: 0 1rem 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--m5-surface);
  border: 1px solid var(--m5-border);
  border-radius: var(--m5-radius-sm);
}

.m5-depth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.m5-depth-head h3 { margin: 0; font-size: 0.82rem; color: var(--m5-gold); font-weight: 600; }
.m5-depth-note { font-size: 0.65rem; color: var(--m5-muted); }

.m5-depth-table { font-size: 0.72rem; }

.m5-depth-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.35rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--m5-border);
  align-items: center;
}

.m5-depth-row:last-child { border-bottom: none; }
.m5-depth-row.head { color: var(--m5-muted); font-size: 0.65rem; font-weight: 600; }
.m5-depth-bid { color: #5fd99a; text-align: center; }
.m5-depth-ask { color: #ff6b7a; text-align: center; }
.m5-depth-size { text-align: center; color: var(--m5-muted); }

.m5-depth-bar {
  position: relative;
  height: 3px;
  border-radius: 2px;
  background: var(--m5-surface-3);
  margin-top: 0.15rem;
  overflow: hidden;
}

.m5-depth-bar-fill { height: 100%; border-radius: 2px; }
.m5-depth-bar-fill.bid { background: var(--m5-buy); opacity: 0.6; }
.m5-depth-bar-fill.ask { background: var(--m5-sell); opacity: 0.6; }

/* Ticket */
.m5-local-trade {
  margin: 0 1rem 0.65rem;
  padding: 1rem;
  background: var(--m5-surface);
  border: 1px solid var(--m5-border);
  border-radius: var(--m5-radius);
}

.m5-ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.m5-section-title { margin: 0; font-size: 0.92rem; color: var(--m5-gold); font-weight: 700; }

.m5-side-seg {
  display: flex;
  background: var(--m5-surface-2);
  border-radius: 10px;
  padding: 3px;
  border: 1px solid var(--m5-border);
}

.m5-side-seg-btn {
  padding: 0.35rem 0.75rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--m5-muted);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.m5-side-seg-btn.active[data-side="buy"] {
  background: var(--m5-buy);
  color: #fff;
}

.m5-side-seg-btn.active[data-side="sell"] {
  background: var(--m5-sell);
  color: #fff;
}

.m5-min-hint { font-size: 0.72rem; color: var(--m5-muted); margin: 0 0 0.6rem; }

.m5-size-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.7rem; }

.m5-size {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--m5-border);
  background: var(--m5-surface-2);
  color: var(--m5-text);
  font-family: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.12s;
}

.m5-size.active {
  background: var(--m5-gold);
  color: #1a1208;
  border-color: var(--m5-gold);
  font-weight: 700;
}

.m5-size--sot {
  border-color: rgba(232, 196, 104, 0.5);
  box-shadow: 0 0 0 1px rgba(232, 196, 104, 0.15);
}

.m5-amount-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.m5-amount-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  color: var(--m5-muted);
}

.m5-amount-field input {
  padding: 0.6rem 0.7rem;
  border-radius: var(--m5-radius-sm);
  border: 1px solid var(--m5-border);
  background: var(--m5-bg);
  color: var(--m5-text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
}

.m5-amount-field input:focus {
  outline: none;
  border-color: var(--m5-gold-dim);
  box-shadow: 0 0 0 2px var(--m5-gold-glow);
}

.m5-amount-field input[readonly] { opacity: 0.9; }

.m5-sl-tp { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.6rem; }
.m5-sl-tp label { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.72rem; color: var(--m5-muted); }
.m5-sl-tp input {
  padding: 0.45rem;
  border-radius: 8px;
  border: 1px solid var(--m5-border);
  background: var(--m5-bg);
  color: var(--m5-text);
  font-family: inherit;
}

.m5-ticket-preview {
  font-size: 0.78rem;
  color: var(--m5-muted);
  margin: 0 0 0.65rem;
  text-align: center;
  line-height: 1.55;
  padding: 0.5rem;
  background: var(--m5-surface-2);
  border-radius: 8px;
}

.m5-ticket-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

.m5-execute {
  padding: 0.9rem 0.5rem;
  border: none;
  border-radius: var(--m5-radius-sm);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  color: #fff;
  transition: transform 0.1s, filter 0.15s;
}

.m5-execute:active { transform: scale(0.98); }
.m5-execute.buy { background: linear-gradient(180deg, #2a9d6a, var(--m5-buy)); }
.m5-execute.sell { background: linear-gradient(180deg, #e63946, var(--m5-sell)); }

.m5-unit-toggle { display: flex; gap: 0.35rem; margin-top: 0.65rem; }
.m5-unit {
  flex: 1;
  padding: 0.4rem;
  border-radius: 8px;
  border: 1px solid var(--m5-border);
  background: var(--m5-surface-2);
  color: var(--m5-muted);
  font-family: inherit;
  cursor: pointer;
}

.m5-unit.active { border-color: var(--m5-gold); color: var(--m5-gold); font-weight: 600; }

/* Portfolio */
.m5-positions, .m5-history, .m5-leaderboard, .m5-bridges {
  margin: 0 1rem 0.65rem;
  padding: 1rem;
  background: var(--m5-surface);
  border: 1px solid var(--m5-border);
  border-radius: var(--m5-radius);
}

.m5-positions h3, .m5-history h3, .m5-leaderboard h3, .m5-bridges h3 {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--m5-gold);
  font-weight: 700;
}

.m5-pos-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--m5-border);
  font-size: 0.82rem;
}

.m5-pos-row:last-child { border-bottom: none; }
.m5-pos-row small { color: var(--m5-muted); font-size: 0.68rem; }

.m5-pos-close {
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--m5-border);
  background: var(--m5-surface-2);
  color: var(--m5-text);
  font-family: inherit;
  font-size: 0.72rem;
  cursor: pointer;
  font-weight: 600;
}

.m5-empty { font-size: 0.8rem; color: var(--m5-muted); text-align: center; padding: 1rem 0.5rem; }

/* Chart */
.m5-chart-section { margin: 0 1rem 0.65rem; }

.m5-chart-toggle {
  width: 100%;
  padding: 0.65rem;
  border-radius: var(--m5-radius-sm);
  border: 1px dashed var(--m5-border);
  background: var(--m5-surface-2);
  color: var(--m5-muted);
  font-family: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.m5-chart-section--open .m5-chart-toggle {
  display: none;
}

.m5-chart-panel { padding-top: 0; }

.m5-chart-head { display: flex; justify-content: flex-end; margin-bottom: 0.5rem; }

.m5-range-tabs { display: flex; gap: 0.3rem; }

.m5-range {
  padding: 0.32rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--m5-border);
  background: var(--m5-surface-2);
  color: var(--m5-muted);
  font-family: inherit;
  font-size: 0.72rem;
  cursor: pointer;
  font-weight: 600;
}

.m5-range.active {
  background: var(--m5-gold);
  color: #1a1208;
  border-color: var(--m5-gold);
}

.m5-chart-wrap {
  background: var(--m5-bg);
  border: 1px solid var(--m5-border);
  border-radius: var(--m5-radius-sm);
  padding: 0.5rem;
}

.m5-chart-wrap canvas { width: 100%; height: 220px; display: block; }

.m5-chart-note { font-size: 0.68rem; color: var(--m5-muted); text-align: center; margin: 0.4rem 0 0; }

/* Leaderboard */
.m5-leader-list { list-style: none; margin: 0; padding: 0; }

.m5-leader-list li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--m5-border);
  font-size: 0.82rem;
  align-items: center;
}

.m5-leader-list li:first-child .m5-leader-rank { color: var(--m5-gold); font-size: 1rem; }
.m5-leader-rank { color: var(--m5-muted); font-weight: 800; }

/* Bridges */
.m5-bridge-links { display: flex; flex-direction: column; gap: 0.5rem; }

.m5-bridge-card {
  padding: 0.85rem 1rem;
  border-radius: var(--m5-radius-sm);
  border: 1px solid var(--m5-border);
  background: var(--m5-surface-2);
  color: var(--m5-gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}

.m5-bridge-card:hover {
  background: rgba(232, 196, 104, 0.08);
  border-color: rgba(232, 196, 104, 0.35);
}

/* Bottom nav — Milli app style */
.m5-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: var(--m5-nav-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(15, 13, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--m5-border);
  z-index: 50;
}

.m5-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  border: none;
  background: transparent;
  color: var(--m5-muted);
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0;
  transition: color 0.15s;
}

.m5-nav-item.active { color: var(--m5-gold); }
.m5-nav-icon { font-size: 1.1rem; line-height: 1; }

/* Toast */
.m5-toast {
  position: fixed;
  bottom: calc(var(--m5-nav-h) + 1rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  background: var(--m5-surface-2);
  border: 1px solid var(--m5-gold-dim);
  padding: 0.75rem 1.25rem;
  border-radius: var(--m5-radius-sm);
  z-index: 100;
  font-size: 0.82rem;
  box-shadow: var(--m5-shadow);
  max-width: 90vw;
  text-align: center;
}

html[dir="ltr"] .m5-app { direction: ltr; }

@media (min-width: 768px) {
  .m5-room-wrap {
    max-width: 420px;
    margin: 1rem auto;
    border: 1px solid var(--m5-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  }

  .m5-bottom-nav {
    position: sticky;
    transform: none;
    left: auto;
    border-radius: 0 0 20px 20px;
  }
}

.m5-local-prices { display: flex; flex-direction: column; gap: 0.35rem; }
.m5-local-price-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.82rem; }
.m5-local-buy-lbl { color: #5fd99a; font-size: 0.72rem; }
.m5-local-sell-lbl { color: #ff6b7a; font-size: 0.72rem; }
.m5-local-buy-val { color: #5fd99a; font-size: 0.95rem; font-weight: 800; }
.m5-local-sell-val { color: #ff6b7a; font-size: 0.95rem; font-weight: 800; }

.m5-app--domestic .m5-wallet-grid { grid-template-columns: 1.2fr 1fr; }
.m5-positions--inline { margin-top: 0; }
.m5-ticket-actions--single { grid-template-columns: 1fr !important; }
.m5-ticket-actions--single .m5-execute-single { width: 100%; padding: 1rem; font-size: 1rem; }
.m5-nav-item[hidden] { display: none !important; }

@media (max-width: 480px) {
  .m5-app--domestic .m5-local-trade {
    position: sticky;
    bottom: var(--m5-nav-h);
    z-index: 10;
    border-radius: var(--m5-radius) var(--m5-radius) 0 0;
    margin-bottom: 0;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.5);
  }
}
