
:root {
  --dtp-bg: linear-gradient(180deg, #f7f8ff 0%, #fdfcff 52%, #f7fafc 100%);
  --dtp-bg-solid: #f5f7ff;
  --dtp-card: rgba(255, 255, 255, 0.82);
  --dtp-card-strong: #ffffff;
  --dtp-ink: #171b2c;
  --dtp-muted: #7b8198;
  --dtp-line: rgba(129, 141, 178, 0.16);
  --dtp-soft: rgba(255,255,255,0.54);
  --dtp-accent: linear-gradient(135deg, #45b8ff 0%, #536dff 52%, #8c5cff 100%);
  --dtp-accent-strong: #7b87ff;
  --dtp-accent-soft: #edf0ff;
  --dtp-good: #10a16d;
  --dtp-good-bg: #ebfff6;
  --dtp-bad: #da596e;
  --dtp-bad-bg: #fff1f4;
  --dtp-shadow: 0 20px 40px rgba(132, 145, 183, 0.18);
}

.dtp-wallet-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 12px 28px;
  box-sizing: border-box;
  background: radial-gradient(circle at top left, rgba(164, 213, 255, 0.28), transparent 28%),
              radial-gradient(circle at top right, rgba(196, 169, 255, 0.26), transparent 30%),
              #eef2fb;
}

.dtp-mobile-frame {
  position: relative;
  width: min(100%, 430px);
  height: min(860px, calc(100dvh - 32px));
  aspect-ratio: 9 / 16;
  background: var(--dtp-bg);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 34px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  box-shadow: 0 24px 70px rgba(105, 122, 165, 0.26);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dtp-ink);
  scrollbar-width: none;
}

.dtp-mobile-frame::-webkit-scrollbar,
.dtp-dashboard-screen::-webkit-scrollbar {
  display: none;
}

.dtp-login-screen,
.dtp-dashboard-screen {
  position: relative;
  min-height: 100%;
  box-sizing: border-box;
  padding: 22px 18px 26px;
}

.dtp-dashboard-screen { overflow-y: visible; }

.dtp-login-screen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dtp-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.dtp-bg-orb-a {
  width: 180px; height: 180px;
  background: rgba(146, 225, 255, 0.35);
  top: -28px; left: -38px;
}

.dtp-bg-orb-b {
  width: 150px; height: 150px;
  background: rgba(193, 173, 255, 0.34);
  right: -34px; bottom: 80px;
}

.dtp-bg-orb-c {
  width: 180px; height: 180px;
  background: rgba(170, 233, 219, 0.22);
  right: -44px; top: 80px;
}

.dtp-login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 30px;
  padding: 22px 18px 20px;
  box-shadow: var(--dtp-shadow);
}

.dtp-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dtp-brand-mark,
.dtp-avatar-badge {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.05em;
  color: #fff;
  background: var(--dtp-accent);
  box-shadow: 0 10px 22px rgba(140, 146, 255, 0.35);
}

.dtp-avatar-badge {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-size: 21px;
}

.dtp-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #8890a8;
  font-weight: 800;
}

.dtp-login-screen h1,
.dtp-topbar h1 {
  margin: 0;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--dtp-ink);
}

.dtp-muted {
  margin: 12px 0 0;
  color: var(--dtp-muted);
  font-size: 14px;
  line-height: 1.6;
}

.dtp-muted.small {
  font-size: 12px;
  margin-top: 4px;
}

.dtp-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.dtp-soft-pill,
.dtp-mini-pill,
.dtp-hero-chip,
.dtp-period-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.dtp-soft-pill {
  background: #fff;
  color: #7581ae;
  border: 1px solid rgba(128, 146, 201, 0.14);
}

.dtp-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.dtp-form label {
  display: grid;
  gap: 8px;
}

.dtp-form label span {
  font-size: 13px;
  font-weight: 800;
}

.dtp-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(137, 150, 186, 0.18);
  border-radius: 18px;
  padding: 0 16px;
  font-size: 16px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.92);
  color: var(--dtp-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 22px rgba(166, 177, 207, 0.08);
}

.dtp-form input::placeholder { color: #a2abc2; }

.dtp-primary-btn {
  min-height: 58px;
  border: 0;
  border-radius: 19px;
  background: var(--dtp-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 18px 26px rgba(132, 146, 255, 0.32);
}

.dtp-fineprint {
  margin: 18px 2px 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--dtp-muted);
}

.dtp-fineprint.bottom {
  padding-bottom: 10px;
}

.dtp-alert {
  margin-top: 18px;
  background: #fff3f5;
  border: 1px solid rgba(218, 89, 110, 0.18);
  color: var(--dtp-bad);
  border-radius: 14px;
  padding: 12px;
  font-weight: 800;
  font-size: 13px;
}

.dtp-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.dtp-userline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dtp-logout {
  border: 1px solid rgba(140, 153, 193, 0.16);
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 10px 13px;
  color: #7b84a3;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(174, 182, 210, 0.12);
}

.dtp-hero-card {
  position: relative;
  background: linear-gradient(135deg, #0c9fe8 0%, #2878f5 38%, #5458f4 70%, #7d42e8 100%);
  color: #fff;
  border-radius: 30px;
  padding: 18px;
  min-height: 188px;
  box-sizing: border-box;
  box-shadow: 0 24px 38px rgba(45, 82, 220, 0.34);
  overflow: hidden;
}

.dtp-hero-card::before,
.dtp-hero-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}

.dtp-hero-card::before { width: 120px; height: 120px; top: -24px; right: -12px; }
.dtp-hero-card::after { width: 88px; height: 88px; bottom: -24px; left: 58%; }

.dtp-hero-top,
.dtp-hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dtp-hero-top { margin-bottom: 18px; }

.dtp-hero-chip {
  color: #fff;
  background: rgba(255,255,255,0.26);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.dtp-hero-chip-light {
  background: rgba(255,255,255,0.20);
}

.dtp-hero-main {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.dtp-hero-main small {
  display: block;
  font-size: 12px;
  font-weight: 800;
  opacity: .96;
  text-shadow: 0 1px 8px rgba(18, 24, 75, 0.18);
}

.dtp-hero-main strong {
  display: block;
  font-size: clamp(29px, 8vw, 38px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  word-break: keep-all;
  margin: 10px 0 8px;
  text-shadow: 0 3px 14px rgba(8, 20, 86, 0.24);
}

.dtp-hero-main em {
  display: block;
  font-style: normal;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 700;
}

.dtp-hero-sub {
  margin-top: 5px;
  font-size: 12px !important;
  color: rgba(255,255,255,0.88) !important;
}

.dtp-coin-badge {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(255,255,255,0.24);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}

.dtp-hero-bottom {
  margin-top: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.dtp-mini-pill {
  color: #fff;
  background: rgba(255,255,255,0.16);
}

.dtp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.dtp-mini-card,
.dtp-period-card,
.dtp-history-item,
.dtp-empty {
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 14px 26px rgba(169, 178, 209, 0.14);
}

.dtp-mini-card,
.dtp-period-card {
  border-radius: 24px;
  padding: 16px 15px;
  box-sizing: border-box;
}

.dtp-mini-card span,
.dtp-period-card span {
  display: block;
  font-size: 12px;
  color: #8790ab;
  font-weight: 800;
}

.dtp-mini-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(19px, 5.2vw, 24px);
  letter-spacing: -0.05em;
  color: var(--dtp-ink);
  word-break: keep-all;
}

.dtp-mini-card b {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #a1a8be;
}

.dtp-period-card {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dtp-period-card strong {
  display: block;
  margin-top: 7px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.dtp-period-badge {
  flex: 0 0 auto;
  background: var(--dtp-accent-soft);
  color: var(--dtp-accent-strong);
}

.dtp-history-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 24px 2px 12px;
}

.dtp-history-head h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.dtp-history-head span {
  color: #8a93af;
  font-size: 12px;
  font-weight: 800;
}

.dtp-history-list {
  display: grid;
  gap: 10px;
}

.dtp-history-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 22px;
  padding: 13px;
}

.dtp-history-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}

.dtp-history-icon.plus { color: var(--dtp-good); background: var(--dtp-good-bg); }
.dtp-history-icon.minus { color: var(--dtp-bad); background: var(--dtp-bad-bg); }

.dtp-history-copy strong {
  display: block;
  font-size: 14px;
}

.dtp-history-copy span {
  display: block;
  margin-top: 4px;
  color: var(--dtp-muted);
  font-size: 12px;
  line-height: 1.4;
}

.dtp-history-item em {
  flex: 0 0 auto;
  font-style: normal;
  font-size: 15px;
  font-weight: 900;
}

.dtp-history-item em.plus { color: var(--dtp-good); }
.dtp-history-item em.minus { color: var(--dtp-bad); }

.dtp-empty {
  border-radius: 22px;
  color: var(--dtp-muted);
  text-align: center;
  padding: 24px;
  font-size: 14px;
}

.dtp-footer {
  margin: 22px 0 6px;
  text-align: center;
  color: #9aa2b9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}



/* DECKRIA Home */
.dtp-home-screen {
  padding-bottom: 96px;
}

.dtp-wallet-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dtp-home-hero {
  position: relative;
  min-height: 166px;
  border-radius: 30px;
  padding: 20px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #2451df 0%, #2f80ff 48%, #7b46f2 100%);
  box-shadow: 0 24px 38px rgba(48, 88, 220, 0.30);
}

.dtp-home-hero::before,
.dtp-home-hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.dtp-home-hero::before { width: 128px; height: 128px; top: -34px; right: -28px; }
.dtp-home-hero::after { width: 78px; height: 78px; bottom: -20px; left: 56%; }

.dtp-home-hero-copy {
  position: relative;
  z-index: 2;
}

.dtp-home-hero span,
.dtp-home-hero em {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  font-style: normal;
}

.dtp-home-hero strong {
  display: block;
  margin: 11px 0 12px;
  font-size: clamp(29px, 8vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  text-shadow: 0 3px 14px rgba(8, 20, 86, 0.24);
}

.dtp-home-bubble {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 21px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  background: rgba(255,255,255,0.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}

.dtp-home-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.dtp-home-summary article,
.dtp-section-card,
.dtp-news-item {
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 14px 26px rgba(169, 178, 209, 0.14);
}

.dtp-home-summary article {
  border-radius: 24px;
  padding: 16px 15px;
}

.dtp-home-summary span,
.dtp-ref-grid span {
  display: block;
  font-size: 12px;
  color: #8790ab;
  font-weight: 800;
}

.dtp-home-summary strong,
.dtp-ref-grid strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(20px, 5.2vw, 24px);
  letter-spacing: -0.05em;
  color: var(--dtp-ink);
}

.dtp-home-summary b {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  color: #a1a8be;
}

.dtp-section-card {
  margin-top: 14px;
  border-radius: 26px;
  padding: 17px;
}

.dtp-section-card a,
.dtp-news-item {
  color: inherit;
  text-decoration: none;
}

.dtp-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.dtp-section-title span {
  color: #8790ab;
  font-size: 12px;
  font-weight: 900;
}

.dtp-section-title b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: #6975d8;
  background: #eef1ff;
  font-size: 11px;
}

.dtp-section-card > strong,
.dtp-section-card a > strong {
  display: block;
  color: var(--dtp-ink);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.dtp-section-card p,
.dtp-section-card a > p {
  margin: 8px 0 0;
  color: var(--dtp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.dtp-section-head {
  margin-top: 24px;
}

.dtp-news-list {
  display: grid;
  gap: 10px;
}

.dtp-news-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  border-radius: 22px;
  padding: 13px;
}

.dtp-news-badge {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #65c8ff, #8a6cff);
}

.dtp-news-item strong {
  display: block;
  font-size: 14px;
  color: var(--dtp-ink);
  line-height: 1.36;
}

.dtp-news-item span {
  display: block;
  margin-top: 5px;
  color: var(--dtp-muted);
  font-size: 12px;
}

.dtp-checkin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dtp-checkin-row strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.dtp-checkin-row p {
  margin: 6px 0 0;
}

.dtp-checkin-btn {
  min-width: 112px;
  min-height: 48px;
  border: 0;
  border-radius: 18px;
  background: var(--dtp-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 20px rgba(132, 146, 255, 0.26);
  cursor: pointer;
}

.dtp-checkin-btn:disabled {
  background: #e8ecf7;
  color: #929bb4;
  box-shadow: none;
  cursor: default;
}

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

.dtp-ref-grid > div {
  padding: 14px;
  border-radius: 20px;
  background: rgba(244, 247, 255, 0.72);
}

.dtp-my-card {
  margin-bottom: 0;
}

.dtp-footer-nav-space {
  padding-bottom: 76px;
}

.dtp-bottom-nav {
  position: sticky;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 4px;
  margin: 18px 4px 0;
  padding: 8px 8px;
  border-radius: 26px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 18px 36px rgba(113, 125, 164, 0.20);
}

.dtp-bottom-nav a {
  min-height: 50px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #8e96ad;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}

.dtp-bottom-nav a span {
  font-size: 18px;
  line-height: 1;
}

.dtp-bottom-nav a b {
  font-size: 10px;
}

.dtp-bottom-nav a.active {
  color: #5f6cf1;
  background: #eef1ff;
}

.dtp-bottom-nav .dtp-nav-home {
  min-height: 62px;
  margin-top: -18px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #45b8ff, #7d5cff);
  box-shadow: 0 14px 24px rgba(98, 110, 246, 0.30);
}

.dtp-bottom-nav .dtp-nav-home.active {
  color: #fff;
  background: linear-gradient(135deg, #45b8ff, #7d5cff);
}

@media (max-width: 480px) {
  .dtp-wallet-shell {
    padding: 0;
    min-height: 100dvh;
    background: #eef2fb;
  }
  .dtp-mobile-frame {
    width: 100%;
    height: auto;
    min-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
    overflow: visible;
  }
  .dtp-login-screen,
  .dtp-dashboard-screen {
    padding: 22px 16px 26px;
  }
  .dtp-hero-main strong {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .dtp-home-screen {
    padding-bottom: 98px;
  }
  .dtp-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    margin: 0;
  }
  .dtp-footer-nav-space {
    padding-bottom: 84px;
  }
}


/* v1.3.1 mobile lock/fix: vertical scroll only, no horizontal shaking */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  touch-action: pan-y;
}

.dtp-wallet-shell,
.dtp-wallet-shell * {
  box-sizing: border-box;
}

.dtp-wallet-shell {
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 0 !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

.dtp-mobile-frame,
.dtp-login-screen,
.dtp-dashboard-screen,
.dtp-home-screen {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

.dtp-home-hero,
.dtp-hero-card,
.dtp-home-summary,
.dtp-grid-2,
.dtp-section-card,
.dtp-news-list,
.dtp-news-item,
.dtp-history-list,
.dtp-history-item,
.dtp-period-card {
  max-width: 100% !important;
  min-width: 0 !important;
}

.dtp-home-summary article,
.dtp-mini-card,
.dtp-section-card,
.dtp-news-item,
.dtp-history-copy,
.dtp-home-hero-copy,
.dtp-hero-main > div {
  min-width: 0 !important;
  overflow-wrap: anywhere;
}

.dtp-home-summary strong,
.dtp-mini-card strong,
.dtp-home-hero strong,
.dtp-hero-main strong {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .dtp-wallet-shell {
    position: relative;
    left: auto;
    right: auto;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .dtp-mobile-frame {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .dtp-login-screen,
  .dtp-dashboard-screen {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .dtp-home-screen {
    padding-bottom: calc(118px + env(safe-area-inset-bottom)) !important;
  }
  .dtp-footer-nav-space {
    padding-bottom: calc(118px + env(safe-area-inset-bottom)) !important;
  }
  .dtp-bottom-nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) !important;
    border-radius: 26px 26px 0 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    box-shadow: 0 -12px 34px rgba(91, 103, 145, 0.20) !important;
  }
  .dtp-bottom-nav .dtp-nav-home {
    margin-top: -22px !important;
  }
}
