/* ============================================================
   (C) style.css — FCT Copy Trading Dashboard v2.0
   Brand: Amber Orange #FF8528 - Core Black - Dark Premium
   Font: SF Pro (system) -> Inter fallback
   ============================================================ */

:root {
  /* Surface */
  --bg-0: #050505;
  --bg-1: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-4: #1C1C1C;

  /* Borders (alpha-based) */
  --bd-subtle: rgba(255,255,255,0.06);
  --bd-default: rgba(255,255,255,0.10);
  --bd-strong: rgba(255,255,255,0.16);
  --bd-orange: rgba(255,133,40,0.22);

  /* Text */
  --tx-1: #FAFAFA;
  --tx-2: #A1A1A1;
  --tx-3: #6B6B6B;
  --tx-4: #4A4A4A;

  /* Brand */
  --fct: #FF8528;
  --fct-hover: #FFA15C;
  --fct-deep: #C85A0F;
  --fct-glow: rgba(255,133,40,0.55);
  --fct-soft: rgba(255,133,40,0.08);

  /* Semantic */
  --bull: #00C896;
  --bull-soft: rgba(0,200,150,0.10);
  --bull-bd: rgba(0,200,150,0.22);
  --bear: #FF4757;
  --bear-soft: rgba(255,71,87,0.10);
  --bear-bd: rgba(255,71,87,0.22);
  --info: #3B82F6;
  --warn: #FACC15;

  /* Easing */
  --ease: cubic-bezier(0.16,1,0.3,1);
  --dur-fast: 150ms;
  --dur: 220ms;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background: var(--bg-1);
  min-height: 100%;
}
body {
  background:
    radial-gradient(60% 50% at 0% 100%, rgba(255,133,40,0.12) 0%, rgba(255,133,40,0) 60%),
    radial-gradient(40% 35% at 100% 0%, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%),
    var(--bg-1);
  background-attachment: fixed;
  color: var(--tx-1);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', system-ui, sans-serif;
  font-feature-settings: "cv11","ss01","ss03";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  overscroll-behavior: none;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Numerals */
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.h-tight { letter-spacing: -0.022em; font-weight: 600; }
.h-display { letter-spacing: -0.035em; font-weight: 700; }

/* ============================================================
   LAYOUT
   ============================================================ */
.app {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-right: 1px solid var(--bd-subtle);
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.brand {
  padding: 22px 22px 26px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-icon-box {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #FFB07A 0%, #FF8528 55%, #C85A0F 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(255,133,40,0.32), inset 0 1px 0 rgba(255,255,255,0.30), inset 0 -1px 0 rgba(0,0,0,0.12);
}
.brand-icon-box img { width: 16px; height: 16px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-name { font-size: 14.5px; font-weight: 600; letter-spacing: -0.018em; color: var(--tx-1); }
.brand-tag { font-size: 9px; color: var(--tx-3); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; font-weight: 600; }

.nav { padding: 0 14px; flex: 1; }
.nav-group-title {
  font-size: 10px; font-weight: 600; color: var(--tx-4);
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 16px 12px 8px;
}
.nav-item {
  display: flex; align-items: center; gap: 11px;
  padding: 8px 12px; border-radius: 8px;
  color: var(--tx-2); font-size: 13.5px; font-weight: 500;
  cursor: pointer; position: relative;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  letter-spacing: -0.005em;
  text-decoration: none;
}
.nav-item .ico { width: 16px; height: 16px; flex-shrink: 0; color: var(--tx-3); transition: color var(--dur-fast) var(--ease); }
.nav-item:hover { color: var(--tx-1); background: rgba(255,255,255,0.04); }
.nav-item:hover .ico { color: var(--tx-1); }
.nav-item.active {
  background: linear-gradient(90deg, rgba(255,133,40,0.10) 0%, rgba(255,133,40,0.03) 100%);
  color: var(--tx-1);
}
.nav-item.active::before {
  content: "";
  position: absolute;
  left: -14px; top: 8px; bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, #FFB07A 0%, #FF8528 100%);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(255,133,40,0.5);
}
.nav-item.active .ico { color: var(--fct); }
.nav-badge {
  margin-left: auto;
  font-size: 10.5px; font-weight: 600;
  padding: 1px 6px; border-radius: 5px;
  background: rgba(255,255,255,0.06); color: var(--tx-2);
}
.nav-badge.live { background: var(--bull-soft); color: var(--bull); }

.sidebar-foot { padding: 14px; border-top: 1px solid var(--bd-subtle); }
.user-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--bd-subtle);
  border-radius: 10px; padding: 10px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.user-card:hover { background: rgba(255,255,255,0.045); border-color: var(--bd-default); }
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: 600; font-size: 11px; color: #fff; flex-shrink: 0;
}
.user-info { flex: 1; min-width: 0; }
.user-name { font-size: 12.5px; font-weight: 600; line-height: 1.2; color: var(--tx-1); }
.user-plan {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 3px;
  padding: 1px 6px; border-radius: 4px;
  background: var(--fct-soft); border: 1px solid var(--bd-orange);
  color: var(--fct); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ============================================================
   MAIN COLUMN
   ============================================================ */
.main { min-width: 0; min-height: 100vh; display: flex; flex-direction: column; }

.topbar {
  height: 64px;
  border-bottom: 1px solid var(--bd-subtle);
  padding: 0 28px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 18px;
}

.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.crumb .sep { color: var(--tx-4); }
.crumb .a { color: var(--tx-3); }
.crumb .b { color: var(--tx-1); font-weight: 500; }

.search {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bd-subtle);
  border-radius: 9px; padding: 8px 12px;
  width: 380px; color: var(--tx-2);
  transition: all var(--dur-fast) var(--ease);
  margin-left: 24px;
}
.search:focus-within { border-color: var(--bd-orange); background: rgba(255,133,40,0.03); }
.search .ico { width: 14px; height: 14px; color: var(--tx-3); }
.search input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--tx-1); font-size: 13px; font-family: inherit;
}
.search input::placeholder { color: var(--tx-3); }
.kbd {
  font-size: 10.5px; padding: 2px 6px; border-radius: 5px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--bd-subtle);
  color: var(--tx-2); font-weight: 500; font-family: inherit;
}
.spacer { flex: 1; }

.topbar-stat { text-align: right; }
.topbar-stat-label {
  font-size: 10.5px; color: var(--tx-3);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
}
.topbar-stat-value {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--tx-1); margin-top: 1px;
}

.divider-v { width: 1px; height: 28px; background: var(--bd-subtle); margin: 0 4px; }

.icon-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; color: var(--tx-2);
  border: 1px solid var(--bd-subtle);
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  position: relative;
}
.icon-btn:hover { background: rgba(255,255,255,0.05); border-color: var(--bd-default); color: var(--tx-1); }
.icon-btn .ico { width: 15px; height: 15px; }
.icon-btn .dot-bell {
  position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bear); border: 2px solid var(--bg-1);
}

/* ============================================================
   CONTENT
   ============================================================ */
.content {
  padding: 28px 32px 64px;
  max-width: 1480px; margin: 0 auto; width: 100%;
  flex: 1;
}

.page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; gap: 24px;
}
.page-head h1 { font-size: 26px; font-weight: 600; letter-spacing: -0.025em; color: var(--tx-1); }
.page-head .sub { font-size: 13.5px; color: var(--tx-2); margin-top: 5px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 15px; border-radius: 9px; font-size: 13px; font-weight: 500;
  cursor: pointer; border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease);
  font-family: inherit; letter-spacing: -0.005em;
}
.btn:active { transform: scale(0.98); }
.btn .ico { width: 14px; height: 14px; }
.btn-primary {
  background: linear-gradient(135deg, #FFB07A 0%, #FF8528 60%, #E5701A 100%);
  color: #1a0d00; font-weight: 600;
  box-shadow: 0 4px 14px rgba(255,133,40,0.32), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 18px rgba(255,133,40,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.025); color: var(--tx-1);
  border-color: var(--bd-default);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--bd-strong); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: rgba(17,17,17,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--bd-subtle); border-radius: 14px;
  padding: 22px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { border-color: var(--bd-default); }

/* ============================================================
   MASTER ACCOUNT SPOTLIGHT (HERO)
   ============================================================ */
.master-hero {
  position: relative;
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255,133,40,0.18) 0%, rgba(255,133,40,0) 50%),
    linear-gradient(135deg, rgba(255,133,40,0.05) 0%, rgba(17,17,17,0.85) 60%);
  border: 1px solid var(--bd-orange);
  border-radius: 18px; padding: 28px 32px; overflow: hidden;
  margin-bottom: 24px;
}
.master-hero::before {
  content: ""; position: absolute;
  top: -1px; right: -1px; bottom: -1px; width: 280px;
  background: radial-gradient(60% 80% at 100% 50%, rgba(255,133,40,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.master-grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; position: relative; }
.master-left { min-width: 0; }
.master-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fct); margin-bottom: 14px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bull); position: relative;
  box-shadow: 0 0 8px rgba(0,200,150,0.6);
}
.live-dot::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid var(--bull); opacity: 0.6;
  animation: pulse-ring 1.8s var(--ease) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.7); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.master-trader { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.master-avatar {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, #FFB07A 0%, #FF8528 50%, #C85A0F 100%);
  position: relative; display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 700; color: #1a0d00; letter-spacing: -0.02em;
  box-shadow: 0 6px 20px rgba(255,133,40,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.master-avatar .verify {
  position: absolute; bottom: -4px; right: -4px;
  width: 20px; height: 20px; background: #2A6FDB; border-radius: 50%;
  border: 2px solid var(--bg-1);
  display: flex; align-items: center; justify-content: center; color: white;
}
.master-trader-info h2 { font-size: 20px; font-weight: 600; letter-spacing: -0.022em; color: var(--tx-1); margin-bottom: 3px; }
.master-trader-info .role { font-size: 13px; color: var(--tx-2); }
.master-trader-info .role .sep { color: var(--tx-4); margin: 0 6px; }
.master-trader-info .role .verified { color: var(--bull); font-weight: 500; }

.master-return-block { margin-top: 6px; }
.master-return-label {
  font-size: 11px; color: var(--tx-3); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 500; margin-bottom: 8px;
}
.master-return-value {
  font-size: 56px; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #FFB07A 0%, #FF8528 60%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; display: inline-block;
}
.master-return-period { font-size: 13px; color: var(--tx-2); margin-left: 12px; font-weight: 500; }

.master-metrics {
  display: flex; gap: 28px; margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--bd-subtle);
}
.master-metric { display: flex; flex-direction: column; gap: 4px; }
.master-metric .l { font-size: 10.5px; color: var(--tx-3); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.master-metric .v { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; color: var(--tx-1); }
.master-metric .v.bull { color: var(--bull); }
.master-metric .v.bear { color: var(--bear); }

.master-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; min-width: 240px; }
.master-chart { width: 240px; height: 110px; }
.master-status {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px; border-radius: 8px;
  background: var(--bull-soft); border: 1px solid var(--bull-bd);
  color: var(--bull); font-size: 11.5px; font-weight: 600; letter-spacing: -0.005em;
}

/* ============================================================
   STATS GRID
   ============================================================ */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 28px;
}
.stat-card { padding: 20px; position: relative; }
.stat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.stat-label { font-size: 12px; color: var(--tx-2); font-weight: 500; letter-spacing: -0.005em; }
.stat-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center; color: var(--tx-3);
}
.stat-icon.orange { background: var(--fct-soft); color: var(--fct); }
.stat-icon .ico { width: 14px; height: 14px; }
.stat-value { font-size: 26px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 6px; }
.stat-foot { display: flex; align-items: center; justify-content: space-between; }
.stat-delta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 500; letter-spacing: -0.005em;
}
.stat-delta.bull { color: var(--bull); }
.stat-delta.bear { color: var(--bear); }
.stat-delta .sub { color: var(--tx-3); font-weight: 400; }

/* ============================================================
   ROW 2 -- CHART + LIVE FEED
   ============================================================ */
.row-2 {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 16px; margin-bottom: 28px;
}

.chart-card { padding: 24px; }
.chart-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px; gap: 16px;
}
.chart-title { font-size: 15.5px; font-weight: 600; letter-spacing: -0.015em; color: var(--tx-1); }
.chart-sub { font-size: 12.5px; color: var(--tx-2); margin-top: 3px; }
.tabbar {
  display: inline-flex; padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bd-subtle); border-radius: 8px; gap: 2px;
}
.tab {
  padding: 5px 11px; border-radius: 6px;
  font-size: 11.5px; font-weight: 500; color: var(--tx-2);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  font-family: inherit; letter-spacing: 0;
  background: transparent; border: 0;
}
.tab:hover { color: var(--tx-1); }
.tab.active {
  background: rgba(255,255,255,0.08); color: var(--tx-1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.chart-stats {
  display: flex; gap: 28px; margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid var(--bd-subtle);
}
.chart-stat .l {
  font-size: 11px; color: var(--tx-3); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 500; margin-bottom: 4px;
}
.chart-stat .v { font-size: 22px; font-weight: 600; letter-spacing: -0.022em; }
.chart-stat .v.bull { color: var(--bull); }
.chart-stat .delta { margin-left: 8px; font-size: 13px; font-weight: 500; }
.chart-stat .delta.bull { color: var(--bull); }

.chart-card { overflow: visible !important; }
.chart-wrap { width: 100%; height: 280px; position: relative; overflow: visible; }

/* Performance chart tooltip */
.perf-tooltip {
  position: absolute; pointer-events: none;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--bd-default); border-radius: 9px;
  padding: 10px 12px; font-size: 11.5px; z-index: 50;
  min-width: 168px;
  transform: translate(-50%, calc(-100% - 14px));
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  transition: opacity 80ms var(--ease); white-space: nowrap;
}
.perf-tooltip .tt-date { font-size: 10.5px; color: var(--tx-3); margin-bottom: 7px; letter-spacing: 0.04em; font-weight: 500; text-transform: uppercase; }
.perf-tooltip .tt-row { display: flex; align-items: center; gap: 7px; padding: 2px 0; }
.perf-tooltip .tt-row + .tt-row { margin-top: 1px; }
.perf-tooltip .tt-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.perf-tooltip .tt-dot.you-dot { background: #00C896; }
.perf-tooltip .tt-dot.master-dot { background: #FF8528; }
.perf-tooltip .tt-label { color: var(--tx-2); margin-right: 8px; }
.perf-tooltip .tt-val { color: var(--tx-1); font-weight: 600; font-variant-numeric: tabular-nums; margin-left: auto; }
.perf-tooltip .tt-val.bull { color: var(--bull); }

/* Live Feed */
.feed-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.feed-head {
  padding: 18px 20px 14px; border-bottom: 1px solid var(--bd-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.feed-head .l { display: flex; align-items: center; gap: 8px; }
.feed-head h3 { font-size: 14.5px; font-weight: 600; letter-spacing: -0.015em; }
.feed-head .count { font-size: 11px; color: var(--tx-3); margin-top: 2px; font-weight: 500; }

.feed { flex: 1; overflow-y: auto; max-height: 340px; }
.feed-item {
  padding: 12px 20px; border-bottom: 1px solid var(--bd-subtle);
  display: flex; align-items: flex-start; gap: 11px;
  transition: background var(--dur-fast) var(--ease); cursor: pointer;
}
.feed-item:hover { background: rgba(255,255,255,0.02); }
.feed-item:last-child { border-bottom: 0; }
.feed-ico {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.feed-ico.bull { background: var(--bull-soft); color: var(--bull); }
.feed-ico.bear { background: var(--bear-soft); color: var(--bear); }
.feed-ico.signal { background: var(--fct-soft); color: var(--fct); }
.feed-ico .ico { width: 13px; height: 13px; }
.feed-body { flex: 1; min-width: 0; }
.feed-title { font-size: 13px; color: var(--tx-1); font-weight: 500; letter-spacing: -0.005em; line-height: 1.4; }
.feed-title .pair { color: var(--fct); font-weight: 600; }
.feed-title .bull { color: var(--bull); font-weight: 600; }
.feed-title .bear { color: var(--bear); font-weight: 600; }
.feed-meta { font-size: 11px; color: var(--tx-3); margin-top: 3px; display: flex; align-items: center; gap: 6px; }
.feed-meta .sep { color: var(--tx-4); }

.feed-foot {
  padding: 12px 20px; border-top: 1px solid var(--bd-subtle);
  font-size: 12px; color: var(--tx-2); text-align: center;
  cursor: pointer; transition: color var(--dur-fast) var(--ease);
}
.feed-foot:hover { color: var(--fct); }

/* ============================================================
   ROW 3 -- ACTIVE POSITIONS
   ============================================================ */
.section-card { padding: 0; overflow: hidden; margin-bottom: 28px; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--bd-subtle);
}
.section-head h3 { font-size: 15.5px; font-weight: 600; letter-spacing: -0.015em; }
.section-head .sub { font-size: 12px; color: var(--tx-2); margin-top: 2px; }
.section-head .live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 9px; border-radius: 6px;
  background: var(--bull-soft); border: 1px solid var(--bull-bd);
  color: var(--bull); font-size: 11px; font-weight: 600; letter-spacing: 0.01em;
}

table { width: 100%; border-collapse: collapse; table-layout: fixed; }
thead th {
  text-align: left; font-size: 10.5px; font-weight: 600; color: var(--tx-3);
  padding: 12px 24px; text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(255,255,255,0.015); border-bottom: 1px solid var(--bd-subtle);
}
thead th:last-child, tbody td:last-child { text-align: right; }
tbody td {
  padding: 14px 24px; border-bottom: 1px solid var(--bd-subtle);
  font-size: 13.5px; color: var(--tx-1); letter-spacing: -0.005em;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background var(--dur-fast) var(--ease); }
tbody tr:hover { background: rgba(255,255,255,0.02); }

.pair-cell { display: flex; align-items: center; gap: 10px; }
.pair-ico {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.pair-meta { display: flex; flex-direction: column; line-height: 1.2; }
.pair-name { font-weight: 600; color: var(--tx-1); }
.pair-side { font-size: 11px; margin-top: 2px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.pair-side.long { color: var(--bull); }
.pair-side.short { color: var(--bear); }

.pnl-cell { font-weight: 600; }
.pnl-cell.bull { color: var(--bull); }
.pnl-cell.bear { color: var(--bear); }
.pnl-sub { font-size: 11.5px; color: var(--tx-3); font-weight: 500; margin-top: 2px; }

.progress { width: 100%; height: 4px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; margin-top: 6px; }
.progress-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--fct) 0%, #FFB07A 100%); }

/* ============================================================
   ROW 4 -- COMPARISON + RECENT
   ============================================================ */
.row-4 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; }

.compare-card { padding: 24px; }
.compare-head { margin-bottom: 20px; }
.compare-title { font-size: 15.5px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 4px; }
.compare-sub { font-size: 12.5px; color: var(--tx-2); }

.compare-bars { display: flex; flex-direction: column; gap: 16px; }
.compare-bar { display: flex; flex-direction: column; gap: 8px; }
.compare-bar-head { display: flex; align-items: center; justify-content: space-between; }
.compare-bar-name { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: var(--tx-1); }
.bar-dot { width: 8px; height: 8px; border-radius: 50%; }
.compare-bar-value { font-size: 14px; font-weight: 600; letter-spacing: -0.015em; }
.compare-bar-value.bull { color: var(--bull); }

.compare-bar-track { width: 100%; height: 8px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.compare-bar-fill { height: 100%; border-radius: 4px; transition: width 600ms var(--ease); }
.compare-bar-fill.master { background: linear-gradient(90deg, #FFB07A 0%, #FF8528 100%); }
.compare-bar-fill.you { background: linear-gradient(90deg, rgba(0,200,150,0.7) 0%, var(--bull) 100%); }
.compare-bar-fill.bench { background: rgba(255,255,255,0.18); }

.compare-meta { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--tx-3); margin-top: 4px; }

.compare-foot {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--bd-subtle);
  display: flex; align-items: center; gap: 11px; padding-left: 14px; padding-right: 14px;
}
.compare-foot .info-ico {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--bull-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--bull); flex-shrink: 0;
}
.compare-foot .info-ico .ico { width: 14px; height: 14px; }
.compare-foot .txt { font-size: 12.5px; color: var(--tx-2); line-height: 1.45; }
.compare-foot .txt b { color: var(--tx-1); font-weight: 600; }

.activity-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.activity-head {
  padding: 20px 24px 16px; border-bottom: 1px solid var(--bd-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.activity-head h3 { font-size: 15.5px; font-weight: 600; letter-spacing: -0.015em; }

.activity-list { padding: 8px 0; }
.activity-item {
  padding: 13px 24px; display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: background var(--dur-fast) var(--ease);
}
.activity-item:hover { background: rgba(255,255,255,0.02); }
.act-ico {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.act-ico.bull { background: var(--bull-soft); color: var(--bull); }
.act-ico.bear { background: var(--bear-soft); color: var(--bear); }
.act-ico.neutral { background: rgba(255,255,255,0.04); color: var(--tx-2); }
.act-ico .ico { width: 14px; height: 14px; }
.act-body { flex: 1; min-width: 0; }
.act-title { font-size: 13px; font-weight: 500; color: var(--tx-1); letter-spacing: -0.005em; }
.act-title b { font-weight: 600; }
.act-meta { font-size: 11.5px; color: var(--tx-3); margin-top: 2px; }
.act-value { text-align: right; font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.act-value.bull { color: var(--bull); }
.act-value.bear { color: var(--bear); }
.act-value.neutral { color: var(--tx-2); }

/* Inline SVG icon utility */
.ico { display: inline-block; flex-shrink: 0; }

/* ============================================================
   AUTH PAGES (Login / Invite)
   ============================================================ */
.auth-layout {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; position: relative; z-index: 1;
}
.auth-container {
  width: 400px; max-width: 90vw; text-align: center;
}
.auth-logo {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 32px;
}
.auth-logo .brand-icon-box {
  width: 36px; height: 36px;
}
.auth-logo .brand-icon-box img { width: 20px; height: 20px; }
.auth-logo .brand-name { font-size: 18px; }
.auth-container h1 {
  font-size: 24px; font-weight: 600; letter-spacing: -0.025em;
  color: var(--tx-1); margin-bottom: 8px;
}
.auth-subtitle { color: var(--tx-2); margin-bottom: 32px; font-size: 14px; }

.auth-card {
  background: rgba(17,17,17,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--bd-subtle); border-radius: 14px;
  padding: 28px; text-align: left;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; color: var(--tx-2);
  margin-bottom: 6px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bd-subtle); border-radius: 9px;
  color: var(--tx-1); font-size: 14px; font-family: inherit;
  outline: none; transition: border-color var(--dur-fast) var(--ease);
}
.form-group input:focus { border-color: var(--bd-orange); }
.form-group input::placeholder { color: var(--tx-3); }
.form-group small { display: block; margin-top: 4px; color: var(--tx-3); font-size: 12px; }

.alert {
  padding: 10px 14px; border-radius: 9px; margin-bottom: 20px;
  font-size: 13px;
}
.alert.error {
  background: var(--bear-soft); color: var(--bear);
  border: 1px solid var(--bear-bd);
}

.auth-card .btn-primary {
  width: 100%; justify-content: center;
  padding: 12px; font-size: 14px;
}

/* ============================================================
   STUB PAGES
   ============================================================ */
.stub-page {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 32px; text-align: center;
}
.stub-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--fct-soft); border: 1px solid var(--bd-orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.stub-icon .ico { width: 28px; height: 28px; color: var(--fct); }
.stub-page h2 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--tx-1); margin-bottom: 8px;
}
.stub-page p { font-size: 14px; color: var(--tx-2); max-width: 420px; line-height: 1.6; }

/* ============================================================
   SETTINGS PAGE
   ============================================================ */

.settings-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.settings-section {
  background: var(--bg-2); border: 1px solid var(--bd-subtle);
  border-radius: 14px; padding: 24px;
}
.settings-section-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--bd-subtle);
}
.settings-section-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.settings-section-icon .ico { width: 18px; height: 18px; }
.settings-section-icon.orange { background: var(--fct-soft); color: var(--fct); border: 1px solid var(--bd-orange); }
.settings-section-icon.blue { background: rgba(59,130,246,0.1); color: var(--info); border: 1px solid rgba(59,130,246,0.22); }
.settings-section-icon.green { background: var(--bull-soft); color: var(--bull); border: 1px solid var(--bull-bd); }
.settings-section-icon.red { background: var(--bear-soft); color: var(--bear); border: 1px solid var(--bear-bd); }
.settings-section-title { font-size: 15px; font-weight: 600; color: var(--tx-1); }
.settings-section-sub { font-size: 12px; color: var(--tx-3); margin-top: 2px; }

.settings-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--bd-subtle);
}
.settings-row:last-child { border-bottom: none; }
.settings-row-label { font-size: 13px; color: var(--tx-2); }
.settings-row-value { font-size: 13px; color: var(--tx-1); font-weight: 500; text-align: right; }
.settings-row-value.muted { color: var(--tx-3); font-weight: 400; }
.settings-row-value .badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.badge.online { background: var(--bull-soft); color: var(--bull); border: 1px solid var(--bull-bd); }
.badge.offline { background: var(--bear-soft); color: var(--bear); border: 1px solid var(--bear-bd); }
.badge.paused { background: rgba(250,204,21,0.1); color: var(--warn); border: 1px solid rgba(250,204,21,0.22); }

/* Toggle Switch */
.toggle {
  position: relative; width: 44px; height: 24px;
  background: var(--bg-4); border: 1px solid var(--bd-default);
  border-radius: 12px; cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  flex-shrink: 0;
}
.toggle.active {
  background: var(--bull); border-color: var(--bull);
}
.toggle.active.warn {
  background: var(--bear); border-color: var(--bear);
}
.toggle::after {
  content: ''; position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: white; border-radius: 50%;
  transition: transform var(--dur) var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.toggle.active::after {
  transform: translateX(20px);
}

.settings-toggle-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--bd-subtle);
}
.settings-toggle-row:last-child { border-bottom: none; }
.settings-toggle-info { flex: 1; }
.settings-toggle-title { font-size: 13px; color: var(--tx-1); font-weight: 500; }
.settings-toggle-sub { font-size: 11px; color: var(--tx-3); margin-top: 2px; }

/* Pause Banner */
.pause-banner {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 12px;
  margin-bottom: 8px;
}
.pause-banner.active {
  background: var(--bull-soft); border: 1px solid var(--bull-bd);
}
.pause-banner.paused {
  background: var(--bear-soft); border: 1px solid var(--bear-bd);
}
.pause-banner-text { flex: 1; }
.pause-banner-title { font-size: 14px; font-weight: 600; }
.pause-banner.active .pause-banner-title { color: var(--bull); }
.pause-banner.paused .pause-banner-title { color: var(--bear); }
.pause-banner-sub { font-size: 12px; color: var(--tx-3); margin-top: 2px; }

/* Modal */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}
.modal-card {
  background: var(--bg-2); border: 1px solid var(--bd-default);
  border-radius: 16px; padding: 32px; max-width: 420px; width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 1px solid;
}
.modal-icon .ico { width: 22px; height: 22px; }
.modal-card h3 {
  font-size: 17px; font-weight: 600; color: var(--tx-1);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.modal-card p {
  font-size: 13px; color: var(--tx-2); line-height: 1.6;
  margin-bottom: 24px;
}
.modal-actions {
  display: flex; gap: 10px; justify-content: center;
}
.modal-actions .btn {
  flex: 1; justify-content: center; padding: 10px 20px;
  font-size: 13px; font-weight: 600;
}

/* ============================================================
   SUPPORT PAGE
   ============================================================ */

.support-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 0;
}
.support-hero {
  background: var(--bg-2); border: 1px solid var(--bd-subtle);
  border-radius: 14px; padding: 32px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 24px;
}
.support-hero-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--fct-soft); border: 1px solid var(--bd-orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.support-hero-icon .ico { width: 26px; height: 26px; color: var(--fct); }
.support-hero-text h2 { font-size: 18px; font-weight: 600; color: var(--tx-1); margin-bottom: 4px; }
.support-hero-text p { font-size: 13px; color: var(--tx-2); line-height: 1.5; }

.support-card {
  background: var(--bg-2); border: 1px solid var(--bd-subtle);
  border-radius: 14px; padding: 24px;
}
.support-card-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.support-card-head .ico { width: 18px; height: 18px; color: var(--fct); }
.support-card-head h3 { font-size: 15px; font-weight: 600; color: var(--tx-1); }

.faq-item {
  padding: 14px 0; border-bottom: 1px solid var(--bd-subtle);
  cursor: pointer;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--tx-1); font-weight: 500;
}
.faq-q .ico { width: 14px; height: 14px; color: var(--tx-3); transition: transform var(--dur) var(--ease); }
.faq-item.open .faq-q .ico { transform: rotate(90deg); }
.faq-a {
  font-size: 12px; color: var(--tx-2); line-height: 1.6;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; margin-top: 8px; }

.status-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--bd-subtle);
  font-size: 13px;
}
.status-row:last-child { border-bottom: none; }
.status-label { color: var(--tx-2); }
.status-value { color: var(--tx-1); font-weight: 500; }
.status-value .badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* iOS bottom bar — hidden on desktop, fills Safari toolbar area on mobile */
.ios-bottom-bar { display: none; }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bd-subtle);
  color: var(--tx-1); cursor: pointer; flex-shrink: 0;
}

/* Sidebar overlay — hidden on desktop */
.sidebar-overlay {
  display: none;
  position: fixed; top: 0; left: 270px; right: 0; bottom: 0;
  z-index: 41;
  background: rgba(0,0,0,0.55);
}

/* --- TABLET (<=1280px) --- */
@media (max-width: 1280px) {
  .row-2 { grid-template-columns: 1fr; }
  .row-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .settings-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
}

/* --- MOBILE (<=768px) --- */
@media (max-width: 768px) {
  /* Kill orange glow on mobile */
  body { background: var(--bg-1); }

  /* Layout: Sidebar → Fullscreen overlay from top */
  .app { grid-template-columns: 1fr; }
  .sidebar {
    display: flex;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 40;
    background: var(--bg-1);
    backdrop-filter: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-100%);
    transition: transform 0.28s var(--ease);
    padding-top: 20px;
  }
  .sidebar.open { transform: translateY(0); }
  .sidebar-foot { padding: 14px; padding-bottom: 32px; }
  .sidebar-overlay { display: none !important; }
  .hamburger { display: inline-flex; }

  /* Topbar */
  .topbar { padding: 0 16px; gap: 12px; }
  .search { display: none; }
  .crumb .a { display: none; }
  .crumb .sep { display: none; }
  .topbar-stat-label { font-size: 9px; }
  .topbar-stat-value { font-size: 14px; }
  .divider-v { margin: 0; }

  /* Content */
  .content { padding: 20px 16px 24px; }

  /* Page head */
  .page-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .page-head h1 { font-size: 22px; }

  /* Master Hero */
  .master-hero { padding: 22px 20px; border-radius: 14px; }
  .master-grid { grid-template-columns: 1fr; gap: 20px; }
  .master-right { align-items: flex-start; min-width: 0; }
  .master-chart { width: 100%; max-width: 280px; }
  .master-return-value { font-size: 40px; }
  .master-metrics { flex-wrap: wrap; gap: 20px; }
  .master-trader h2 { font-size: 18px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { padding: 16px; }
  .stat-value { font-size: 22px; }

  /* Chart */
  .chart-head { flex-direction: column; gap: 12px; }
  .chart-stats { flex-wrap: wrap; gap: 16px; }
  .chart-stat .v { font-size: 18px; }
  .chart-wrap { height: 220px; }

  /* Feed */
  .feed { max-height: 260px; }
  .feed-item { padding: 10px 16px; }
  .feed-head { padding: 14px 16px 12px; }

  /* Tables — horizontal scroll */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 600px; }
  thead th { padding: 10px 16px; font-size: 10px; }
  tbody td { padding: 12px 16px; font-size: 13px; }

  /* Section card */
  .section-head { padding: 16px 16px 12px; }
  .section-head h3 { font-size: 14px; }

  /* Row 4 */
  .row-4 { grid-template-columns: 1fr; }
  .compare-card { padding: 20px; }
  .activity-item { padding: 11px 16px; }
  .activity-head { padding: 16px 16px 12px; }

  /* Settings */
  .settings-grid { grid-template-columns: 1fr; }
  .settings-section { padding: 20px; }

  /* Support */
  .support-grid { grid-template-columns: 1fr; }
  .support-hero { flex-direction: column; text-align: center; padding: 24px 20px; }

  /* Modal */
  .modal-card { padding: 24px 20px; max-width: 90vw; }
  .modal-actions { flex-direction: column; }
  .modal-actions .btn { width: 100%; }

  /* Auth pages */
  .auth-container h1 { font-size: 20px; }
  .auth-card { padding: 24px 20px; }

  /* Register name grid */
  .name-grid { grid-template-columns: 1fr !important; }

  /* Setup */
  .setup-layout { padding: 32px 16px 48px; }
  .setup-header h1 { font-size: 20px; }
  .step-dot { width: 34px; height: 34px; font-size: 13px; }
  .setup-step-indicator:not(:last-child)::after { width: 28px; margin: 0 6px; }
  .setup-card { padding: 24px 20px; }
  .setup-card h2 { font-size: 16px; }

  /* Stub page */
  .stub-page { padding: 48px 20px; }
  .stub-page h2 { font-size: 18px; }

  /* Legal footer */
  .legal-bottom-footer a { margin: 0 5px !important; font-size: 11px; }

  /* Prevent iOS auto-zoom on input focus (requires >=16px) */
  input, select, textarea { font-size: 16px !important; }

  .ios-bottom-bar { display: none; }

  /* Cookie Banner */
  #cookieBanner > div { flex-direction: column; gap: 12px; }
  #cookieBanner > div > div { width: 100%; }
  #cookieBanner > div > div .btn { flex: 1; }
}

/* --- SMALL PHONE (<=480px) --- */
@media (max-width: 480px) {
  .topbar { height: 56px; }
  .content { padding: 16px 12px 32px; }
  .master-hero { padding: 18px 16px; }
  .master-return-value { font-size: 32px; }
  .master-trader { gap: 10px; }
  .master-avatar { width: 44px; height: 44px; font-size: 16px; border-radius: 12px; }
  .master-metrics { gap: 14px; }
  .master-metric .v { font-size: 14px; }
  .stat-card { padding: 14px; }
  .stat-value { font-size: 20px; }
  .chart-card { padding: 16px; }
  .chart-wrap { height: 180px; }
  .compare-card { padding: 16px; }
  .auth-container { max-width: 100vw; }
  .auth-card { padding: 20px 16px; border-radius: 12px; }
  .auth-logo .brand-icon-box { width: 32px; height: 32px; }
  .auth-logo .brand-icon-box img { width: 18px; height: 18px; }
  .setup-card { padding: 20px 16px; }
  .btn { padding: 10px 14px; font-size: 13px; }
  .btn-primary { font-size: 13px; }
  .page-head h1 { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
