﻿    :root {
      --ink-900: #0A0A0F;
      --ink-700: #1C1C28;
      --ink-500: #4B4B63;
      --ink-300: #8E8EA8;
      --ink-100: #E8E8F0;
      --ink-050: #F4F4F8;
      --white: #FFFFFF;
      --violet: #4F3EF5;
      --violet-dk: #3629D0;
      --violet-lt: #EEECFF;
      --amber: #D97A28;
      --amber-lt: #FDF1E7;
      --sage: #1B7B4B;
      --sage-lt: #EAF4EF;
      --s1: 0 1px 3px rgba(10, 10, 15, .06);
      --s2: 0 3px 12px rgba(10, 10, 15, .08);
      --max: 680px;
      --r-s: 10px;
      --r-m: 16px;
      --r-l: 20px
    }

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

    html {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--ink-050);
      color: var(--ink-700);
      -webkit-font-smoothing: antialiased;
      font-size: 15px
    }

    body {
      min-height: 100dvh;
      padding-bottom: 96px
    }

    a {
      text-decoration: none;
      color: inherit
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none
    }

    .page {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 18px
    }

    .ap {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1)
    }

    .ap.in {
      opacity: 1;
      transform: none
    }

    .ico {
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(250, 250, 252, .92);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--ink-100)
    }

    .tb {
      max-width: var(--max);
      margin: 0 auto;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .back-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: var(--ink-050);
      border: 1px solid var(--ink-100);
      color: var(--ink-500);
      flex-shrink: 0;
      transition: background .15s
    }

    .back-btn:hover {
      background: var(--ink-100)
    }

    .tb-info {
      flex: 1
    }

    .tb-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink-900)
    }

    .tb-meta {
      font-size: 11px;
      color: var(--ink-300);
      margin-top: 1px
    }

    .hero {
      background: linear-gradient(135deg, #3629D0 0%, #4F3EF5 50%, #7B6FF8 100%);
      border-radius: var(--r-l);
      padding: 22px;
      color: white;
      margin-bottom: 14px;
      position: relative;
      overflow: hidden
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06)
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -20px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04)
    }

    .hero-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 18px;
      position: relative;
      z-index: 1
    }

    .hero-loc {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      opacity: .8
    }

    .hero-date {
      text-align: right
    }

    .hero-masehi {
      font-size: 12px;
      opacity: .8
    }

    .hero-hijri {
      font-size: 11px;
      opacity: .5;
      margin-top: 2px
    }

    .hero-body {
      position: relative;
      z-index: 1;
      margin-bottom: 18px
    }

    .hero-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
      opacity: .5;
      margin-bottom: 4px
    }

    .hero-prayer {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -.5px;
      line-height: 1
    }

    .hero-time {
      font-size: 42px;
      font-weight: 700;
      letter-spacing: -2px;
      line-height: 1.1;
      margin-bottom: 4px
    }

    .hero-cd {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      opacity: .7
    }

    .hero-cd-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .6);
      animation: pulse 1.5s ease-in-out infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: .5
      }

      50% {
        opacity: 1
      }
    }

    .hero-prog-labels {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      opacity: .6;
      margin-bottom: 5px
    }

    .hero-prog-track {
      height: 3px;
      background: rgba(255, 255, 255, .2);
      border-radius: 99px;
      overflow: hidden
    }

    .hero-prog-fill {
      height: 100%;
      background: white;
      border-radius: 99px;
      transition: width 1s ease
    }

    .imsak-strip {
      background: linear-gradient(135deg, #1B7B4B, #25A668);
      border-radius: var(--r-m);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
      color: white
    }

    .imsak-lbl {
      font-size: 11px;
      font-weight: 600;
      opacity: .8;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .imsak-time {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -.5px
    }

    .loc-btn {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      border: 1px solid var(--ink-100);
      border-radius: var(--r-m);
      padding: 12px 14px;
      margin-bottom: 14px;
      box-shadow: var(--s1);
      cursor: pointer;
      transition: border-color .18s
    }

    .loc-btn:hover {
      border-color: var(--violet)
    }

    .loc-change {
      margin-left: auto;
      font-size: 11px;
      font-weight: 600;
      color: var(--violet);
      padding: 4px 10px;
      border: 1px solid var(--violet-lt);
      border-radius: 7px;
      background: var(--violet-lt)
    }

    .tab-nav {
      display: flex;
      background: var(--white);
      border: 1px solid var(--ink-100);
      border-radius: var(--r-m);
      padding: 4px;
      gap: 4px;
      margin-bottom: 16px;
      box-shadow: var(--s1)
    }

    .tab-btn {
      flex: 1;
      padding: 8px 4px;
      font-size: 10.5px;
      font-weight: 600;
      color: var(--ink-300);
      border-radius: 10px;
      transition: all .18s;
      font-family: inherit;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3px
    }

    .tab-btn.on {
      background: var(--violet);
      color: white;
      box-shadow: 0 2px 8px rgba(79, 62, 245, .3)
    }

    .grid-title {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--ink-300);
      margin-bottom: 10px
    }

    .prayer-scroll {
      overflow-x: auto;
      margin: -4px -18px;
      padding: 4px 18px 8px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch
    }

    .prayer-scroll::-webkit-scrollbar {
      display: none
    }

    .prayer-grid {
      display: flex;
      gap: 8px;
      width: max-content
    }

    .pg-item {
      background: var(--white);
      border: 1px solid var(--ink-100);
      border-radius: var(--r-m);
      padding: 12px 8px;
      text-align: center;
      position: relative;
      box-shadow: var(--s1);
      transition: all .18s;
      min-width: 68px;
      scroll-snap-align: start;
      flex-shrink: 0
    }

    .pg-item.active {
      background: var(--violet);
      border-color: var(--violet);
      box-shadow: 0 4px 16px rgba(79, 62, 245, .3)
    }

    .pg-item.passed {
      opacity: .4
    }

    .pg-item.sunrise-item {
      border-color: var(--amber);
      background: var(--amber-lt)
    }

    .pg-now-dot {
      position: absolute;
      top: 6px;
      right: 6px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: white;
      animation: pulse 1.5s infinite
    }

    .pg-ico {
      margin-bottom: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-300)
    }

    .pg-item.active .pg-ico {
      color: white
    }

    .pg-item.sunrise-item .pg-ico {
      color: var(--amber)
    }

    .pg-name {
      font-size: 9px;
      font-weight: 600;
      color: var(--ink-300);
      text-transform: uppercase;
      letter-spacing: .3px;
      margin-bottom: 4px
    }

    .pg-time {
      font-size: 13px;
      font-weight: 700;
      color: var(--ink-700);
      letter-spacing: -.2px
    }

    .pg-item.active .pg-name,
    .pg-item.active .pg-time {
      color: white
    }

    .pg-item.sunrise-item .pg-name,
    .pg-item.sunrise-item .pg-time {
      color: var(--amber)
    }

    .day-card {
      background: var(--white);
      border: 1px solid var(--ink-100);
      border-radius: var(--r-l);
      overflow: hidden;
      margin-bottom: 14px;
      box-shadow: var(--s1)
    }

    .day-card-head {
      padding: 14px 16px 10px;
      border-bottom: 1px solid var(--ink-050)
    }

    .day-card-title {
      font-size: 13px;
      font-weight: 700
    }

    .day-card-sub {
      font-size: 11px;
      color: var(--ink-300);
      margin-top: 2px
    }

    .day-row {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      border-bottom: 1px solid var(--ink-050);
      transition: background .15s
    }

    .day-row:last-child {
      border: none
    }

    .day-row.active {
      background: var(--violet-lt)
    }

    .day-row.passed {
      opacity: .5
    }

    .dr-ico {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: var(--ink-050);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-right: 12px;
      color: var(--ink-500)
    }

    .day-row.active .dr-ico {
      background: var(--violet-lt);
      color: var(--violet)
    }

    .dr-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-900);
      flex: 1
    }

    .dr-sub {
      font-size: 11px;
      color: var(--ink-300);
      margin-top: 1px
    }

    .dr-time {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink-900);
      letter-spacing: -.3px
    }

    .day-row.active .dr-time {
      color: var(--violet)
    }

    .dr-badge {
      font-size: 9px;
      font-weight: 600;
      color: var(--violet);
      background: var(--violet-lt);
      border-radius: 5px;
      padding: 2px 6px;
      margin-left: 8px
    }

    .method-card,
    .azan-card,
    .kiblat-card {
      background: var(--white);
      border: 1px solid var(--ink-100);
      border-radius: var(--r-l);
      padding: 16px;
      margin-bottom: 14px;
      box-shadow: var(--s1)
    }

    .method-label,
    .sec-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: var(--ink-300);
      margin-bottom: 10px
    }

    .method-row {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .method-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-900)
    }

    .month-card {
      background: var(--white);
      border: 1px solid var(--ink-100);
      border-radius: var(--r-l);
      overflow: hidden;
      margin-bottom: 14px;
      box-shadow: var(--s1)
    }

    .month-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px 10px;
      border-bottom: 1px solid var(--ink-050)
    }

    .month-title {
      font-size: 13px;
      font-weight: 700
    }

    .month-nav {
      display: flex;
      gap: 4px
    }

    .mnav-btn {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      border: 1px solid var(--ink-100);
      background: var(--ink-050);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-500);
      cursor: pointer;
      transition: all .18s
    }

    .mnav-btn:hover {
      border-color: var(--violet);
      color: var(--violet)
    }

    .cal-hdr {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      padding: 8px 12px 4px
    }

    .cal-hdr-d {
      font-size: 9px;
      font-weight: 600;
      text-align: center;
      color: var(--ink-300);
      text-transform: uppercase;
      letter-spacing: .3px
    }

    .cal-body {
      padding: 4px 8px 12px
    }

    .cal-row {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 2px
    }

    .cal-d {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 5px 2px;
      border-radius: 8px;
      cursor: pointer;
      transition: background .15s;
      position: relative
    }

    .cal-d:hover {
      background: var(--ink-050)
    }

    .cal-d.today {
      background: var(--violet)
    }

    .cal-d.selected {
      background: var(--violet-lt)
    }

    .cal-d.other-month .cal-d-num {
      color: var(--ink-100)
    }

    .cal-d-num {
      font-size: 12px;
      font-weight: 600;
      color: var(--ink-700)
    }

    .cal-d.today .cal-d-num {
      color: white;
      font-weight: 700
    }

    .cal-d-sub {
      font-size: 8px;
      color: var(--ink-300);
      margin-top: 1px
    }

    .cal-d.today .cal-d-sub {
      color: rgba(255, 255, 255, .6)
    }

    .cal-d .holiday-dot {
      position: absolute;
      top: 2px;
      right: 4px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--amber)
    }

    .cal-d.today .holiday-dot {
      background: white
    }

    .azan-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--ink-050)
    }

    .azan-row:last-child {
      border: none
    }

    .azan-info {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .azan-ico {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      background: var(--ink-050);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-500)
    }

    .azan-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-700)
    }

    .azan-time {
      font-size: 11px;
      color: var(--ink-300)
    }

    .toggle {
      width: 40px;
      height: 22px;
      border-radius: 99px;
      background: var(--ink-100);
      position: relative;
      cursor: pointer;
      transition: background .2s;
      flex-shrink: 0;
      border: none
    }

    .toggle.on {
      background: var(--violet)
    }

    .toggle::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
      transition: transform .2s
    }

    .toggle.on::after {
      transform: translateX(18px)
    }

    .week-list {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .week-item {
      background: var(--white);
      border: 1px solid var(--ink-100);
      border-radius: var(--r-l);
      padding: 14px 16px;
      box-shadow: var(--s1);
      cursor: pointer;
      transition: all .18s
    }

    .week-item:hover {
      box-shadow: var(--s2);
      transform: translateY(-1px)
    }

    .week-item.today-item {
      border-color: var(--violet);
      background: var(--violet-lt)
    }

    .week-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px
    }

    .week-day {
      font-size: 13px;
      font-weight: 700;
      color: var(--ink-900)
    }

    .week-item.today-item .week-day {
      color: var(--violet)
    }

    .week-hijri {
      font-size: 10px;
      color: var(--ink-300)
    }

    .week-holiday {
      font-size: 9px;
      font-weight: 700;
      color: white;
      background: var(--amber);
      padding: 2px 7px;
      border-radius: 20px
    }

    .week-times {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 6px;
      margin-top: 10px
    }

    .wt-cell {
      text-align: center
    }

    .wt-name {
      font-size: 9px;
      color: var(--ink-300);
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 3px
    }

    .wt-time {
      font-size: 12px;
      font-weight: 700;
      color: var(--ink-700)
    }

    .week-item.today-item .wt-time {
      color: var(--violet)
    }

    .imsakiyah-wrap {
      overflow-x: auto;
      border-radius: var(--r-l);
      border: 1px solid var(--ink-100);
      background: var(--white);
      box-shadow: var(--s1)
    }

    .imsakiyah-tbl {
      width: 100%;
      border-collapse: collapse;
      font-size: 11px;
      white-space: nowrap
    }

    .imsakiyah-tbl th {
      background: var(--violet);
      color: white;
      padding: 10px;
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      text-align: center
    }

    .imsakiyah-tbl td {
      padding: 9px 10px;
      border-bottom: 1px solid var(--ink-050);
      text-align: center;
      color: var(--ink-700);
      font-weight: 500
    }

    .imsakiyah-tbl tr:last-child td {
      border-bottom: none
    }

    .imsakiyah-tbl tr.today-row td {
      background: var(--violet-lt);
      color: var(--violet);
      font-weight: 700
    }

    .imsakiyah-tbl tr.holiday-row td {
      background: var(--amber-lt)
    }

    .imsakiyah-tbl td.day-col {
      font-weight: 700;
      color: var(--ink-900);
      text-align: left;
      padding-left: 12px
    }

    .imsakiyah-tbl tr.today-row td.day-col {
      color: var(--violet)
    }

    .holiday-badge {
      font-size: 8px;
      font-weight: 700;
      color: var(--amber);
      margin-left: 3px
    }

    .compass-outer {
      position: relative;
      width: 220px;
      height: 220px;
      margin: 0 auto 8px
    }

    .compass-ring {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: var(--ink-050);
      border: 2px solid var(--ink-100);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative
    }

    .compass-dir {
      position: absolute;
      font-size: 10px;
      font-weight: 700;
      color: var(--ink-300)
    }

    .compass-dir.n {
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--violet);
      font-size: 12px
    }

    .compass-dir.s {
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%)
    }

    .compass-dir.e {
      right: 8px;
      top: 50%;
      transform: translateY(-50%)
    }

    .compass-dir.w {
      left: 8px;
      top: 50%;
      transform: translateY(-50%)
    }

    .compass-inner {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--ink-100);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
    }

    .kiblat-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 14px
    }

    .ks-item {
      background: var(--ink-050);
      border-radius: var(--r-m);
      padding: 12px;
      text-align: center
    }

    .ks-val {
      font-size: 18px;
      font-weight: 700;
      color: var(--violet);
      letter-spacing: -.5px
    }

    .ks-lbl {
      font-size: 10px;
      color: var(--ink-300);
      margin-top: 3px
    }

    .kiblat-note {
      font-size: 11px;
      color: var(--ink-300);
      text-align: center;
      margin-top: 10px;
      line-height: 1.6;
      padding: 10px;
      background: var(--ink-050);
      border-radius: var(--r-s)
    }

    .compass-status {
      font-size: 12px;
      color: var(--ink-500);
      text-align: center;
      margin-top: 8px
    }

    .sk {
      background: linear-gradient(90deg, var(--ink-100) 25%, var(--ink-050) 50%, var(--ink-100) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.2s infinite;
      border-radius: 6px
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0
      }

      100% {
        background-position: -200% 0
      }
    }

    .modal-bg {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 15, .4);
      z-index: 200;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s
    }

    .modal-bg.show {
      opacity: 1;
      pointer-events: all
    }

    .modal {
      background: var(--white);
      border-radius: 24px 24px 0 0;
      padding: 16px 18px 40px;
      max-width: var(--max);
      width: 100%;
      max-height: 80dvh;
      display: flex;
      flex-direction: column;
      transform: translateY(60px);
      transition: transform .3s cubic-bezier(.16, 1, .3, 1)
    }

    .modal-bg.show .modal {
      transform: none
    }

    .modal-handle {
      width: 36px;
      height: 4px;
      border-radius: 99px;
      background: var(--ink-100);
      margin: 0 auto 14px
    }

    .modal-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 12px
    }

    .search-input {
      width: 100%;
      border: 1.5px solid var(--ink-100);
      border-radius: var(--r-m);
      padding: 11px 14px;
      font-size: 14px;
      color: var(--ink-700);
      background: var(--ink-050);
      font-family: inherit;
      outline: none;
      transition: border-color .18s;
      margin-bottom: 10px
    }

    .search-input:focus {
      border-color: var(--violet);
      background: var(--white)
    }

    .search-results {
      overflow-y: auto;
      flex: 1
    }

    .search-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 4px;
      border-bottom: 1px solid var(--ink-050);
      cursor: pointer;
      font-size: 13px;
      color: var(--ink-700);
      transition: color .15s
    }

    .search-item:hover {
      color: var(--violet)
    }

    .search-item:last-child {
      border: none
    }

    .nav-shell {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0 18px 18px;
      z-index: 100;
      pointer-events: none
    }

    .nav-bar {
      max-width: var(--max);
      margin: 0 auto;
      background: rgba(255, 255, 255, .88);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      border: 1px solid rgba(255, 255, 255, .9);
      border-radius: 22px;
      padding: 8px 6px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      box-shadow: 0 2px 0 rgba(255, 255, 255, .8) inset, 0 10px 36px rgba(10, 10, 15, .12);
      pointer-events: all
    }

    .nl {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      padding: 7px 12px;
      border-radius: 12px;
      color: var(--ink-300);
      cursor: pointer;
      transition: all .18s;
      -webkit-tap-highlight-color: transparent;
      min-width: 52px;
      flex: 1;
      text-decoration: none
    }

    .nl:hover {
      background: var(--ink-050);
      color: var(--ink-700)
    }

    .nl.on {
      color: var(--violet)
    }

    .nl-ico {
      width: 21px;
      height: 21px
    }

    .nl-lbl {
      font-size: 9.5px;
      font-weight: 600
    }

    .nl.on .nl-lbl {
      color: var(--violet)
    }

    .nl.on .nl-ico-wrap {
      background: var(--violet-lt);
      border-radius: 10px;
      padding: 4px
    }

    .nav-dot {
      width: 4px;
      height: 4px;
      border-radius: 99px;
      background: transparent;
      margin-top: 1px;
      transition: background .18s
    }

    .nl.on .nav-dot {
      background: var(--violet)
    }