:root {
  color-scheme: dark;
  --bg: #02050d;
  --bg-elevated: #030817;
  --surface: rgba(4, 13, 35, 0.88);
  --surface-solid: #07132d;
  --surface-soft: rgba(8, 61, 137, 0.42);
  --text: #f7faff;
  --muted: #aebbd2;
  --subtle: #7485a5;
  --line: rgba(58, 137, 255, 0.24);
  --line-strong: rgba(77, 156, 255, 0.48);
  --gold: #ff7a18;
  --gold-bright: #ffad4f;
  --gold-deep: #c94c00;
  --emerald: #006df0;
  --emerald-bright: #29a8ff;
  --danger: #ff8d97;
  --danger-bg: rgba(124, 27, 43, 0.24);
  --success: #5ee6bd;
  --success-bg: rgba(14, 113, 91, 0.24);
  --shadow: 0 24px 80px rgba(0, 4, 20, 0.58);
  --shadow-soft: 0 12px 38px rgba(0, 4, 20, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

:root[lang="ar"] {
  --font: "Noto Sans Arabic", Tahoma, "Segoe UI", Arial, sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #edf4ff;
  --bg-elevated: #f8fbff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --surface-soft: rgba(219, 234, 255, 0.86);
  --text: #07152f;
  --muted: #52627d;
  --subtle: #7585a0;
  --line: rgba(0, 91, 211, 0.17);
  --line-strong: rgba(0, 102, 235, 0.34);
  --gold: #c64d00;
  --gold-bright: #e76708;
  --gold-deep: #963900;
  --emerald: #005ed5;
  --emerald-bright: #0078ef;
  --danger: #a3312d;
  --danger-bg: #fff0ed;
  --success: #08705b;
  --success-bg: #e3f8f1;
  --shadow: 0 24px 70px rgba(3, 30, 79, 0.14);
  --shadow-soft: 0 10px 32px rgba(3, 30, 79, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 82% -5%, rgba(0, 111, 255, 0.28), transparent 32rem),
    radial-gradient(circle at -12% 38%, rgba(255, 108, 0, 0.12), transparent 30rem),
    linear-gradient(160deg, var(--bg-elevated), var(--bg) 42%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: #07152f;
  background: var(--gold-bright);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.16;
}

.ambient-one {
  inset-block-start: -12rem;
  inset-inline-end: -8rem;
  background: var(--emerald-bright);
}

.ambient-two {
  inset-block-start: 42%;
  inset-inline-start: -14rem;
  background: var(--gold);
  opacity: 0.08;
}

.page-shell {
  width: min(100%, 880px);
  min-height: 100vh;
  margin-inline: auto;
  padding: 0 20px;
}

.topbar {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 122px;
  padding: 14px 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--bg) 92%, transparent), color-mix(in srgb, var(--bg) 70%, transparent));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  text-decoration: none;
}

.app-brand img {
  width: 90px;
  height: 90px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: var(--surface-solid);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  filter: saturate(1.04) contrast(1.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.app-brand:hover img {
  transform: translateY(-1px) scale(1.02);
}

:root[data-theme="dark"] .app-brand img {
  border-color: rgba(52, 154, 255, 0.58);
  background: #020711;
  box-shadow:
    0 17px 46px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(255, 122, 24, 0.12),
    0 0 36px rgba(0, 109, 240, 0.23);
  filter: saturate(1.1) contrast(1.06) brightness(1.04);
}

:root[data-theme="light"] .app-brand img {
  border-color: rgba(0, 94, 213, 0.3);
  background: #ffffff;
  box-shadow:
    0 17px 40px rgba(3, 30, 79, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.56);
  filter: saturate(1.02) contrast(1.05) brightness(1.02);
}

.app-brand span {
  display: grid;
  gap: 1px;
}

.app-brand strong {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.app-brand small {
  color: var(--muted);
  font-size: 0.77rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold-bright);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-button:hover {
  border-color: var(--line-strong);
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.icon-button:active {
  transform: translateY(1px);
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.language-toggle {
  width: auto;
  min-width: 44px;
  padding-inline: 10px;
  color: var(--text);
  font-weight: 900;
}

.language-toggle span {
  line-height: 1;
}

.install-button {
  color: var(--success);
}

.content {
  display: grid;
  gap: 30px;
  padding: 42px 0 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 7vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(0, 105, 255, 0.27), transparent 52%),
    linear-gradient(315deg, rgba(255, 106, 0, 0.12), transparent 48%),
    var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset-block-start: -60%;
  inset-inline-end: -10%;
  z-index: -1;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(34, 132, 255, 0.035), 0 0 0 90px rgba(34, 132, 255, 0.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 8%;
  inset-block-end: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 20px var(--gold);
  opacity: 0.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block-end: 26px;
  padding: 7px 11px;
  border: 1px solid rgba(72, 192, 133, 0.25);
  border-radius: 999px;
  color: var(--success);
  background: rgba(22, 94, 61, 0.16);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-badge.is-offline {
  color: var(--danger);
  border-color: rgba(255, 147, 135, 0.25);
  background: var(--danger-bg);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  direction: ltr;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

:root[lang="ar"] .eyebrow,
:root[lang="ar"] .section-kicker {
  direction: rtl;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 15ch;
  margin: 8px 0 12px;
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

:root[lang="ar"] .hero h1 {
  line-height: 1.25;
  letter-spacing: -0.025em;
}

:root[dir="rtl"] .copy-value,
:root[dir="rtl"] input[dir="ltr"] {
  text-align: left;
}

.hero p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 2.5vw, 1.13rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 28px;
}

.primary-link,
.secondary-link,
.secondary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.primary-link {
  color: #07152f;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 28px rgba(199, 151, 57, 0.22);
}

.secondary-link,
.secondary-action {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: var(--surface);
}

.primary-link:hover,
.secondary-link:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.bank-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.bank-panel::after {
  content: "";
  position: absolute;
  inset-inline-end: -3rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.28;
}

.bank-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  color: var(--gold-bright);
  background: linear-gradient(145deg, var(--surface-soft), transparent);
}

.bank-symbol svg {
  width: 29px;
  height: 29px;
}

.bank-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.bank-copy strong {
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.bank-copy small {
  direction: ltr;
  width: fit-content;
  color: var(--gold);
  font-size: 0.76rem;
}

.verified-mark {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font-size: 0.76rem;
  font-weight: 700;
}

.verified-mark svg {
  width: 20px;
  height: 20px;
}

.account-owner {
  display: grid;
  gap: 5px;
  padding-inline: 4px;
  text-align: center;
}

.account-owner h2 {
  margin: 0;
  font-size: clamp(1.2rem, 4vw, 1.65rem);
}

.review-note {
  color: var(--gold-bright);
  font-size: 0.73rem;
  line-height: 1.6;
}

.accounts-section {
  display: grid;
  gap: 15px;
  scroll-margin-top: 100px;
}

.section-heading {
  display: grid;
  gap: 6px;
  max-width: 660px;
  margin-block-end: 8px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  line-height: 1.3;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.compact-heading {
  padding-inline: 4px;
}

.cards {
  display: grid;
  gap: 13px;
}

.detail-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(118deg, rgba(0, 89, 220, 0.22), transparent 48%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.detail-card::before {
  content: "";
  position: absolute;
  inset-block: 18%;
  inset-inline-start: 0;
  width: 2px;
  background: linear-gradient(var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 16px rgba(255, 119, 24, 0.6);
}

.detail-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.detail-head,
.account-heading,
.value-row {
  display: flex;
  align-items: center;
}

.detail-head {
  justify-content: space-between;
  gap: 15px;
  margin-block-end: 19px;
}

.account-heading {
  min-width: 0;
  gap: 12px;
}

.account-heading > div {
  min-width: 0;
}

.account-heading h3 {
  margin: 0;
  font-size: 1rem;
}

.account-heading small {
  display: block;
  margin-block-start: 2px;
  color: var(--muted);
  font-size: 0.73rem;
}

.currency-badge,
.instapay-badge {
  display: grid;
  min-width: 48px;
  height: 48px;
  place-items: center;
  padding-inline: 8px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  color: var(--gold-bright);
  background: linear-gradient(145deg, rgba(0, 105, 255, 0.52), rgba(3, 12, 34, 0.5));
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.instapay-badge {
  color: var(--success);
  border-color: rgba(57, 178, 124, 0.38);
}

.detail-body {
  display: grid;
  gap: 10px;
}

.account-type {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.value-row {
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 10px 10px 10px 12px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, var(--bg) 46%, transparent);
}

.value-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.value-copy > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.copy-value {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.72rem, 2.9vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  display: inline-flex;
  min-width: 74px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--gold-bright);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 140ms ease, color 140ms ease, border-color 140ms ease;
}

.copy-button:hover {
  transform: translateY(-1px);
}

.copy-button.copied {
  color: var(--success);
  border-color: rgba(68, 195, 133, 0.5);
}

.copy-button svg {
  width: 18px;
  height: 18px;
}

.copy-all {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-block-start: 2px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: #07152f;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 34px rgba(196, 147, 54, 0.2);
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.copy-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(196, 147, 54, 0.28);
}

.copy-all svg {
  width: 21px;
  height: 21px;
}

.install-card {
  display: none;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.install-card.is-visible {
  display: grid;
}

.install-card img {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line-strong);
  border-radius: 23px;
}

.install-card h2 {
  margin: 2px 0 3px;
  font-size: 1.05rem;
}

.install-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.secondary-action {
  min-width: 116px;
  cursor: pointer;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.8;
}

.privacy-note svg {
  width: 19px;
  height: 19px;
  margin-block-start: 3px;
  flex: 0 0 auto;
  color: var(--success);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 84px;
  padding: 20px;
  color: var(--subtle);
  font-size: 0.72rem;
  text-align: center;
}

footer .dot {
  color: var(--gold);
}

.toast {
  position: fixed;
  inset-inline-start: 50%;
  inset-block-end: max(22px, env(safe-area-inset-bottom));
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100vw - 32px);
  padding: 12px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface-solid) 94%, transparent);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(16px);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast svg {
  width: 19px;
  height: 19px;
  color: var(--success);
}

.toast span {
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.noscript {
  position: fixed;
  inset-inline: 16px;
  inset-block-end: 16px;
  z-index: 200;
  padding: 14px;
  border: 1px solid rgba(255, 147, 135, 0.45);
  border-radius: 14px;
  color: var(--danger);
  background: var(--danger-bg);
  text-align: center;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold-bright) 82%, white);
  outline-offset: 3px;
}

@media (max-width: 680px) {
  .page-shell {
    padding-inline: 14px;
  }

  .topbar {
    min-height: 106px;
  }

  .app-brand img {
    width: 76px;
    height: 76px;
    border-radius: 22px;
  }

  .app-brand small {
    display: none;
  }

  .content {
    gap: 24px;
    padding-block-start: 24px;
  }

  .hero {
    padding: 29px 23px 33px;
    border-radius: 24px;
  }

  .hero-actions > * {
    flex: 1 1 140px;
  }

  .bank-panel {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 18px;
  }

  .verified-mark {
    grid-column: 1 / -1;
    padding-block-start: 12px;
    border-top: 1px solid var(--line);
  }

  .detail-card {
    padding: 17px;
  }

  .detail-head {
    align-items: flex-start;
  }

  .value-row {
    align-items: stretch;
    padding: 8px;
  }

  .copy-value {
    align-self: center;
  }

  .copy-button {
    min-width: 62px;
    padding-inline: 9px;
  }

  .install-card.is-visible {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .install-card .secondary-action {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .app-brand span {
    display: none;
  }

  .app-brand img {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .language-toggle {
    min-width: 42px;
    padding-inline: 8px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .account-heading {
    gap: 9px;
  }

  .currency-badge,
  .instapay-badge {
    min-width: 43px;
    height: 43px;
  }

  .account-type {
    display: none;
  }

  .value-row {
    flex-direction: column;
  }

  .copy-value {
    width: 100%;
    padding: 7px 5px;
    overflow-x: auto;
    text-overflow: initial;
  }

  .copy-button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .topbar {
    gap: 10px;
  }

  .app-brand img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .topbar-actions {
    gap: 5px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .language-toggle {
    min-width: 40px;
    padding-inline: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (display-mode: standalone) {
  .topbar {
    padding-block-start: max(14px, env(safe-area-inset-top));
  }

  .install-card {
    display: none !important;
  }
}
