/* ============ Screen: Extra (#/extra) ============ */

.extra .card { padding: 20px; margin-bottom: 24px; }

.extra-card-title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }

/* Shared sparkle glyph */
.extra-spark {
  position: absolute; color: #fff; line-height: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

/* ---------- Hero: glowing phone + confetti ---------- */
.extra-hero { text-align: center; padding-top: 10px; margin-bottom: 28px; }
.extra-hero__art { position: relative; width: 230px; height: 186px; margin: 0 auto; }
.extra-hero__glow {
  position: absolute; inset: -46px -78px; pointer-events: none;
  background: radial-gradient(55% 55% at 50% 52%,
    rgba(96, 214, 188, 0.30) 0%, rgba(96, 214, 188, 0.12) 46%, transparent 72%);
  filter: blur(8px);
}
.extra-hero__phone {
  position: absolute; left: 50%; top: 58px; width: 86px; height: 140px; margin-left: -43px;
  border-radius: 20px; z-index: 2;
  background: linear-gradient(150deg, #EAF98B 0%, #86DD7D 45%, #23A489 100%);
  transform: perspective(430px) rotateX(40deg) rotateZ(-38deg);
  box-shadow:
    -7px 9px 0 rgba(16, 90, 82, 0.55),
    0 22px 40px rgba(0, 0, 0, 0.38),
    0 0 46px rgba(150, 235, 130, 0.38);
}
.extra-hero__phone::before {
  content: ""; position: absolute; inset: 8px 7px 18px; border-radius: 12px;
  background: linear-gradient(150deg, #F6FDBE 0%, #B6F0A0 55%, #5BC993 100%);
}
.extra-hero__phone::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; width: 9px; height: 9px;
  margin-left: -4.5px; border-radius: 50%; border: 1.5px solid rgba(9, 74, 66, 0.45);
}
.extra-hero__confetti {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 3; pointer-events: none;
}
.extra-hero__title { font-size: var(--text-3xl); font-weight: 800; letter-spacing: -0.02em; margin-top: 12px; }
.extra-hero__sub { color: var(--color-text-muted); font-size: 17px; font-weight: 500; margin-top: 5px; }

/* ---------- Billsback card ---------- */
.extra-bb .extra-card-title { margin-bottom: 16px; }
.extra-bb__body {
  display: grid; grid-template-columns: 1fr 124px; gap: 18px; align-items: center;
}
.extra-bb__copy p { color: var(--color-text-muted); font-size: 16px; line-height: 1.5; }
.extra-bb__cta { margin-top: 22px; }
.extra-bb__art { position: relative; width: 124px; height: 118px; }
.extra-bb__cal {
  position: absolute; top: 14px; left: 20px; width: 80px; height: 88px; border-radius: 10px;
  background: linear-gradient(155deg, #C6EC6F 0%, #4FC48B 55%, #159AA4 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}
.extra-bb__coil { position: absolute; top: -11px; left: 6px; width: 68px; height: 14px; }
.extra-bb__fold {
  position: absolute; top: 0; left: 0; width: 58px; height: 50px;
  clip-path: polygon(0 0, 100% 0, 10% 100%); border-radius: 10px 0 0 0;
  background: linear-gradient(205deg, #A9E065 10%, #1E9C7C 85%);
  color: #fff; font-weight: 800; font-style: italic; font-size: 24px; line-height: 1;
  padding: 3px 0 0 12px;
}
.extra-bb__cells {
  position: absolute; left: 9px; right: 9px; bottom: 7px; height: 32px; opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1.5px, transparent 1.5px);
  background-size: 13px 11px;
}
.extra-bb__tile { position: absolute; display: grid; place-items: center; z-index: 2; }
.extra-bb__tile--octo {
  top: -6px; left: -10px; width: 34px; height: 34px; border-radius: 9px;
  background: #47156B; font-size: 17px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}
.extra-bb__tile--n {
  top: 30px; right: -8px; width: 30px; height: 36px; border-radius: 6px;
  background: #fff; color: #E50914; font-weight: 900; font-size: 22px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}
.extra-bb__tile--ee {
  bottom: -6px; left: -6px; width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(180deg, #2FD1C0 0%, #0FA3B0 100%);
  color: #fff; font-weight: 800; font-size: 13px; letter-spacing: 0.5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}
.extra-bb__s1 { left: -18px; top: 48px; font-size: 13px; }
.extra-bb__s2 { right: -2px; top: -10px; font-size: 15px; }

/* ---------- Most used tiles ---------- */
.extra-mu .extra-card-title { margin-bottom: 16px; }
.extra-mu .hscroll { margin: 0 -20px; padding: 2px 20px 4px; }
.extra-tile {
  width: 160px; min-height: 160px;
  background: var(--color-surface-subtle); border-radius: var(--radius-md);
  padding: 14px 14px 16px; display: flex; flex-direction: column;
}
.extra-tile__art { flex: 1; display: grid; place-items: center; min-height: 80px; position: relative; }
.extra-tile__name { font-weight: 600; font-size: 16px; margin-top: 10px; }
.extra-tile__sub { margin-top: 3px; color: var(--color-success); font-weight: 600; font-size: 14.5px; }
.extra-tile__sub .amount { font-size: 15px; }

.extra-gauge { width: 116px; height: auto; }

.extra-banks { position: relative; width: 106px; height: 82px; }
.extra-banks__card { position: absolute; width: 46px; height: 30px; border-radius: 6px; }
.extra-banks__card--a {
  right: 4px; top: 6px; transform: rotate(20deg);
  background: linear-gradient(140deg, #8FD8CF 0%, #F0A9C8 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.extra-banks__card--b {
  right: 14px; top: 26px; transform: rotate(-7deg);
  background: linear-gradient(140deg, #7CC7E8 0%, #BFEFC4 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.extra-banks__phone {
  position: absolute; left: 4px; top: 4px; font-size: 46px; line-height: 1;
  transform: rotate(-14deg);
  filter: saturate(1.3) brightness(1.15) drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
}
.extra-banks__s1 { left: -6px; top: -4px; font-size: 15px; }
.extra-banks__s2 { right: -6px; top: 46px; font-size: 12px; }
.extra-banks__s3 { left: 40px; bottom: -8px; font-size: 10px; }

.extra-roundups { display: flex; flex-direction: column; gap: 7px; }
.extra-roundups span {
  width: 62px; height: 17px; border-radius: 9px;
  background: linear-gradient(180deg, #4E9BDB 0%, #3374BE 100%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}
.extra-roundups span:first-child {
  background: linear-gradient(180deg, #63ACE5 0%, #3E82C9 100%);
}

/* ---------- Benefits list ---------- */
.extra-benefits .extra-card-title { margin-bottom: 4px; }
.extra-benefit__sq { background: var(--color-surface-subtle); font-size: 21px; }
.extra-chev { display: grid; place-items: center; color: var(--color-text-subtle); }
.extra-chev svg { width: 22px; height: 22px; }
