:root {
  color-scheme: dark;
  --canvas: #11100f;
  --phone: #0e0d0c;
  --phone-deep: #090807;
  --ink: #fff8ed;
  --muted: rgba(255, 248, 237, 0.58);
  --faint: rgba(255, 248, 237, 0.26);
  --line: rgba(255, 248, 237, 0.1);
  --accent: #e8d4b0;
  --accent-strong: #fff1cd;
  --danger: #ff6969;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --serif: "DM Serif Display", Georgia, serif;
  --display: "Syne", "Avenir Next", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100%;
  background: var(--canvas);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 8%, rgba(232, 212, 176, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 78%, rgba(122, 74, 39, 0.2), transparent 32rem),
    linear-gradient(135deg, #151210, #050505);
  color: var(--ink);
  font-family: var(--serif);
}

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

h1,
h2,
p {
  margin: 0;
}

.app-shell {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.phone {
  width: min(390px, 100vw);
  height: min(844px, 100dvh);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 48px;
  background: var(--phone);
  box-shadow:
    0 45px 120px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(232, 212, 176, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  isolation: isolate;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  z-index: 1;
}

.notch-wrap {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--phone);
}

.notch {
  width: 120px;
  height: 34px;
  border-radius: 0 0 21px 21px;
  background: #000;
}

.status-bar {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px 0;
}

.status-time,
.status-icons {
  font-family: var(--mono);
}

.status-time {
  font-size: 15px;
  font-weight: 500;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-icons svg {
  width: 18px;
  height: 14px;
  fill: currentColor;
}

.status-icons svg:last-child {
  width: 25px;
}

.content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.screen {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  background: var(--phone);
}

.screen.active {
  display: block;
  animation: screenIn 260ms ease both;
}

.feed-scroll {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
}

.feed-scroll::-webkit-scrollbar,
.vd-body::-webkit-scrollbar,
.wardrobe-scroll::-webkit-scrollbar {
  width: 2px;
}

.feed-scroll::-webkit-scrollbar-thumb,
.vd-body::-webkit-scrollbar-thumb,
.wardrobe-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
}

.feed-item {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  scroll-snap-align: start;
}

.feed-art {
  position: absolute;
  inset: 0;
  background: var(--look-bg);
}

.feed-art::before {
  content: "";
  position: absolute;
  inset: 12% 14% 18%;
  border-radius: 42% 58% 48% 52% / 34% 42% 58% 66%;
  background:
    radial-gradient(circle at 44% 23%, rgba(255, 255, 255, 0.65), transparent 0.28rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.05));
  opacity: 0.4;
  filter: blur(0.2px);
  transform: rotate(-7deg);
}

.feed-art::after,
.grain {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feed-art::after {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent 48%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.2), transparent 11rem);
}

.grain {
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.play-btn {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.play-btn::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.82);
}

.feed-right {
  position: absolute;
  top: 50%;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-50%);
}

.action-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--display);
  font-size: 15px;
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.action-btn.active {
  border-color: rgba(232, 212, 176, 0.6);
  background: var(--accent);
  color: #0e0d0c;
  box-shadow: 0 10px 32px rgba(232, 212, 176, 0.22);
}

.feed-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 20px 26px;
}

.feed-user,
.tag,
.feed-likes,
.vd-section-title,
.vd-chip,
.section-kicker,
.choose-header p:last-child,
.wardrobe-header p:last-child,
.section-name,
.section-count,
.wi-type,
.wi-item-name,
.stat-box span,
.stat-item span,
.tab span {
  font-family: var(--mono);
  text-transform: uppercase;
}

.feed-user {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.feed-title {
  color: #fff;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.feed-scene {
  margin-top: 6px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-style: italic;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.feed-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feed-likes {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.try-btn,
.vd-apply {
  border-radius: 999px;
  background: var(--accent);
  color: #0e0d0c;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(232, 212, 176, 0.18);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.try-btn {
  padding: 8px 20px;
}

.try-btn:active,
.vd-apply:active,
.swipe-btn:active,
.action-btn:active {
  transform: scale(0.96);
}

.video-detail {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--phone-deep);
  transform: translateY(105%);
  transition: transform 430ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-detail.open {
  transform: translateY(0);
}

.vd-hero {
  position: relative;
  flex: 0 0 260px;
  overflow: hidden;
  background: var(--detail-bg, linear-gradient(160deg, #e8ddd0, #a0876c));
}

.vd-hero::before {
  content: "";
  position: absolute;
  inset: 12% 22% -8%;
  border-radius: 40% 60% 38% 62%;
  background: rgba(255, 255, 255, 0.24);
  filter: blur(1px);
  transform: rotate(12deg);
}

.vd-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 42%, rgba(10, 9, 8, 0.92));
}

.vd-back {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  font-size: 17px;
  backdrop-filter: blur(8px);
}

.vd-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
}

.vd-user {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.vd-title {
  color: #fff;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
}

.vd-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
}

.vd-section-title {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.vd-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.vd-chip {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.01em;
  text-transform: none;
}

.vd-chip.active {
  border-color: var(--accent);
  background: rgba(232, 212, 176, 0.09);
  color: var(--accent);
}

.vd-preview {
  height: 104px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: var(--detail-bg, linear-gradient(160deg, #e8ddd0, #a0876c));
  text-align: center;
}

.vd-preview p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.vd-preview strong {
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
}

.vd-apply {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 12px;
}

.vd-apply.saved {
  background: #8aaa6a;
  color: #081008;
}

.choose-wrap,
.wardrobe-wrap {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.choose-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background:
    radial-gradient(circle at 50% 25%, rgba(232, 212, 176, 0.1), transparent 13rem),
    var(--phone);
}

.choose-header,
.wardrobe-header {
  padding: 16px 20px 12px;
}

.choose-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.section-kicker {
  margin-bottom: 5px;
  color: rgba(232, 212, 176, 0.56);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.choose-header h1,
.wardrobe-header h1 {
  color: #fff;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.choose-header p:last-child,
.wardrobe-header p:last-child {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.card-stack {
  position: relative;
  width: min(300px, calc(100vw - 58px));
  height: min(420px, calc(100dvh - 310px));
  min-height: 360px;
  margin-top: 66px;
}

.style-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: var(--card-bg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  user-select: none;
  touch-action: none;
  transition:
    transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 340ms ease;
}

.style-card::before {
  content: "";
  position: absolute;
  inset: 10% 18% 16%;
  border-radius: 46% 54% 45% 55% / 36% 42% 58% 64%;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(0.5px);
  transform: rotate(-9deg);
}

.style-card.ghost1 {
  z-index: 2;
  opacity: 0.78;
  transform: translateY(-12px) scale(0.96);
}

.style-card.ghost2 {
  z-index: 1;
  opacity: 0.5;
  transform: translateY(-24px) scale(0.92);
}

.style-card.main {
  z-index: 3;
}

.style-card.exit-right {
  opacity: 0;
  transform: translateX(155%) rotate(20deg) !important;
}

.style-card.exit-left {
  opacity: 0;
  transform: translateX(-155%) rotate(-20deg) !important;
}

.card-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(to top, rgba(0, 0, 0, 0.52), transparent 62%);
}

.card-inner {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
}

.card-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: none;
}

.card-brand {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.card-name {
  margin: 5px 0;
  color: #fff;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
}

.card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.card-price {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-style: italic;
}

.card-season {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.swipe-label {
  position: absolute;
  top: 20px;
  display: none;
  padding: 4px 12px;
  border: 3px solid currentColor;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.swipe-label.want {
  left: 20px;
  color: var(--accent);
  transform: rotate(-15deg);
}

.swipe-label.pass {
  right: 20px;
  color: var(--danger);
  transform: rotate(15deg);
}

.swipe-btns {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.swipe-btn {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 24px;
  transition: transform 180ms ease;
}

.pass-btn {
  background: #1f1d1b;
  color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.42);
}

.like-btn {
  background: var(--accent);
  color: #0e0d0c;
  box-shadow: 0 4px 22px rgba(232, 212, 176, 0.26);
}

.choose-stats {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.stat-item {
  min-width: 58px;
  text-align: center;
}

.stat-item strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

.stat-item:last-child strong {
  color: rgba(255, 255, 255, 0.34);
}

.stat-item span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.wardrobe-wrap {
  display: flex;
  flex-direction: column;
}

.wardrobe-header {
  flex: 0 0 auto;
}

.stats-bar {
  display: flex;
  flex: 0 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-box {
  flex: 1;
  padding: 12px 8px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stat-box:last-child {
  border-right: 0;
}

.stat-box strong {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

.stat-box span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.wardrobe-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 20px 20px;
}

.wardrobe-section {
  margin-top: 18px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-name {
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.section-count {
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 9px;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wardrobe-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: var(--item-bg);
}

.wardrobe-item.saved {
  border-color: rgba(232, 212, 176, 0.24);
  box-shadow: inset 0 0 0 1px rgba(232, 212, 176, 0.08);
}

.wardrobe-item::before {
  content: "";
  position: absolute;
  inset: 20% 30% 28%;
  border-radius: 50% 50% 34% 34%;
  background: var(--item-color);
  opacity: 0.36;
}

.wi-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 62%);
}

.wi-type {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.wi-brand {
  margin-top: 2px;
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.wi-item-name {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-transform: none;
}

.wi-meta {
  margin-top: 7px;
  color: rgba(232, 212, 176, 0.58);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wi-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  backdrop-filter: blur(6px);
}

.wi-badge.owned {
  background: var(--accent);
  color: #0e0d0c;
}

.wi-badge.saved {
  background: rgba(232, 212, 176, 0.92);
  color: #0e0d0c;
}

.toast {
  position: absolute;
  right: 24px;
  bottom: 104px;
  left: 24px;
  z-index: 40;
  padding: 12px 16px;
  border: 1px solid rgba(232, 212, 176, 0.24);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.82);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(16px);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.tab-bar {
  position: relative;
  z-index: 4;
  display: flex;
  flex: 0 0 auto;
  gap: 0;
  padding: 8px 20px 28px;
  border-top: 1px solid var(--line);
  background: rgba(14, 13, 12, 0.97);
  backdrop-filter: blur(20px);
}

.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.25);
}

.tab.active {
  color: var(--accent);
}

.tab svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.tab[data-tab="driproll"] svg path {
  fill: currentColor;
  stroke: none;
  opacity: 0.8;
}

.tab span {
  font-size: 9px;
  letter-spacing: 0.08em;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .try-btn:hover,
  .vd-apply:hover {
    background: var(--accent-strong);
    transform: translateY(-1px);
  }

  .action-btn:hover,
  .swipe-btn:hover {
    transform: translateY(-1px) scale(1.04);
  }
}

@media (max-width: 520px) {
  body {
    background: var(--phone);
  }

  .app-shell {
    padding: 0;
  }

  .phone {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .notch-wrap {
    display: none;
  }

  .status-bar {
    padding-top: calc(env(safe-area-inset-top) + 8px);
  }

  .tab-bar {
    padding-bottom: calc(env(safe-area-inset-bottom) + 12px);
  }

  .feed-content {
    padding-bottom: 28px;
  }

  .card-stack {
    margin-top: 56px;
  }
}

@media (max-height: 720px) {
  .card-stack {
    min-height: 312px;
  }

  .swipe-btns {
    margin-top: 18px;
  }

  .choose-stats {
    bottom: 8px;
  }
}
