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

    :root {
      --brand: #3B4CCA;
      --brand-12: rgba(59, 76, 202, 0.12);
      --brand-06: rgba(59, 76, 202, 0.06);
      --ink: #1A1F36;
      --ink2: #353C57;
      --ink3: #59627F;
      --ink4: #737C97;
      --line: #E8EAF2;
      --bg: #F5F6FB;
      --card: #FFFFFF;
      --g: #16A34A;
      --gbg: #DCFCE7;
      --r: #DC2626;
      --rbg: #FEE2E2;
      --amber: #F59E0B;
      --ambg: #FEF3C7
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--ink);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      line-height: 1.5
    }

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

    /* NAV */
    nav {
      background: linear-gradient(135deg, #3B4CCA, #5B6BE6);
      padding: 0 40px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(59, 76, 202, 0.25)
    }

    .logo {
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .logo svg {
      width: 28px;
      height: 28px
    }

    .nv {
      display: flex;
      gap: 28px;
      align-items: center
    }

    .nv>a {
      color: rgba(255, 255, 255, 0.82);
      font-size: 14px;
      font-weight: 500;
      transition: .15s;
      padding: 4px 0
    }

    .nv>a:hover {
      color: #fff
    }

    .nv>a.on {
      color: #fff;
      border-bottom: 2px solid #fff;
      padding-bottom: 2px
    }

    .ham {
      display: none;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      padding: 4px
    }

    .ham svg {
      width: 24px;
      height: 24px
    }

    /* DROPDOWN */
    .dd {
      position: relative
    }

    .dd-toggle {
      color: rgba(255, 255, 255, 0.82);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 4px 0;
      transition: .15s;
      background: none;
      border: none;
      font-family: inherit
    }

    .dd-toggle:hover,
    .dd.open .dd-toggle {
      color: #fff
    }

    .dd-toggle.on {
      color: #fff;
      border-bottom: 2px solid #fff;
      padding-bottom: 2px
    }

    .dd-toggle svg {
      width: 12px;
      height: 12px;
      transition: .2s
    }

    .dd.open .dd-toggle svg {
      transform: rotate(180deg)
    }

    .dd-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(26, 31, 54, 0.12);
      min-width: 240px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transition: .2s;
      z-index: 200
    }

    .dd.open .dd-menu {
      opacity: 1;
      visibility: visible
    }

    .dd-menu::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: var(--card);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line)
    }

    .dd-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 18px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink);
      transition: .12s
    }

    .dd-menu a:hover {
      background: var(--brand-06);
      color: var(--brand)
    }

    .dm-i {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--ink3)
    }

    .dm-i svg {
      width: 18px;
      height: 18px
    }

    .dd-menu a:hover .dm-i {
      color: var(--brand)
    }

    .dd-menu a .dm-label {
      display: flex;
      flex-direction: column
    }

    .dd-menu a .dm-sub {
      font-size: 11px;
      color: var(--ink4);
      font-weight: 400;
      margin-top: 1px
    }

    .dd-sep {
      height: 1px;
      background: var(--line);
      margin: 6px 0
    }

    /* NAV RIGHT */
    .nv-right {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .theme-btn {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.7);
      transition: .15s
    }

    .theme-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #fff
    }

    .theme-btn svg {
      width: 18px;
      height: 18px
    }

    .icon-moon {
      display: none
    }

    [data-theme="dark"] .icon-sun {
      display: none
    }

    [data-theme="dark"] .icon-moon {
      display: block
    }

    .lang-btn {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      padding: 6px 10px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 12.5px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: .15s
    }

    .lang-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #fff
    }

    .lang-btn svg {
      width: 10px;
      height: 10px
    }

    .prof-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center
    }

    .prof-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.8);
      transition: .15s
    }

    .prof-avatar svg {
      width: 18px;
      height: 18px
    }

    .prof-btn:hover .prof-avatar {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5)
    }

    .dd-menu-sm {
      min-width: 160px
    }

    .dd-menu-sm a {
      padding: 8px 18px;
      font-size: 13px
    }

    .dd-right {
      left: auto;
      right: 0;
      transform: none
    }

    .dd-right::before {
      left: auto;
      right: 16px;
      transform: rotate(45deg)
    }

    .lang-active {
      color: var(--brand) !important;
      font-weight: 600 !important
    }

    .prof-cta-row {
      justify-content: center;
      font-weight: 600 !important
    }

    .prof-cta-row span {
      padding: 6px 24px;
      border-radius: 8px;
      border: 1.5px solid var(--brand);
      color: var(--brand);
      transition: .15s;
      font-size: 12.5px
    }

    .prof-signup span {
      background: var(--brand);
      color: #fff !important;
      border-color: var(--brand)
    }

    .prof-cta-row:hover span {
      opacity: .85
    }

    /* MAIN */
    main {
      max-width: 1500px;
      margin: 0 auto;
      padding: 36px 24px 64px
    }

    .bread {
      font-size: 14px;
      color: var(--ink3);
      margin-bottom: 20px
    }

    .bread a {
      color: var(--brand);
      font-weight: 500
    }

    .bread span {
      margin: 0 6px;
      opacity: .5
    }

    /* HERO */
    .hero {
      text-align: center;
      margin-bottom: 12px;
      padding: 24px 0 0
    }

    .hero h1 {
      font-size: 38px;
      font-weight: 700;
      line-height: 1.22;
      margin-bottom: 12px;
      letter-spacing: -.02em
    }

    .hero h1 span {
      background: linear-gradient(135deg, var(--brand), #5B6BE6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hero p {
      font-size: 17px;
      color: var(--ink3);
      max-width: 720px;
      margin: 0 auto 24px
    }

    /* SEARCH */
    .search-wrap {
      max-width: 520px;
      margin: 0 auto 16px;
      position: relative
    }

    .search-wrap input {
      width: 100%;
      padding: 14px 20px 14px 46px;
      border: 2px solid var(--line);
      border-radius: 12px;
      font-size: 16px;
      font-family: inherit;
      background: var(--card);
      color: var(--ink);
      outline: none;
      transition: .2s
    }

    .search-wrap input:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 4px var(--brand-12)
    }

    .search-wrap input::placeholder {
      color: var(--ink4)
    }

    .search-wrap svg {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      color: var(--ink4)
    }

    /* TRUST BADGES */
    .trust {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 40px;
      flex-wrap: wrap
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink3)
    }

    .trust-item svg {
      width: 16px;
      height: 16px;
      color: var(--brand)
    }

    /* TRENDING MARQUEE */
    .marquee-wrap {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 12px 0;
      margin-bottom: 40px;
      overflow: hidden;
      position: relative
    }

    .marquee-label {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, var(--card) 70%, transparent);
      z-index: 2;
      font-size: 14px;
      font-weight: 700;
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: .06em
    }

    .marquee-track {
      display: flex;
      gap: 32px;
      animation: marquee 30s linear infinite;
      padding-left: 110px
    }

    .marquee-track:hover {
      animation-play-state: paused
    }

    @keyframes marquee {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .mq-item {
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      font-size: 14px;
      font-weight: 500
    }

    .mq-icon {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0
    }

    .mq-pct {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 5px
    }

    .mq-pct.u {
      color: var(--g);
      background: var(--gbg)
    }

    .mq-pct.d {
      color: var(--r);
      background: var(--rbg)
    }

    /* STATS */
    .stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 44px;
      flex-wrap: wrap
    }

    .stat {
      text-align: center
    }

    .stat-val {
      font-size: 28px;
      font-weight: 700;
      color: var(--brand);
      font-family: 'JetBrains Mono', monospace
    }

    .stat-label {
      font-size: 14px;
      color: var(--ink3);
      margin-top: 2px;
      font-weight: 500
    }

    /* CATEGORY CARDS */
    .cats {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      margin-bottom: 56px
    }

    .cat-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 28px 24px;
      transition: .25s;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      display: block
    }

    .cat-card:hover {
      border-color: var(--brand);
      box-shadow: 0 8px 32px rgba(59, 76, 202, 0.1);
      transform: translateY(-3px)
    }

    .cat-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px
    }

    .cat-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
      background: var(--brand-12) !important;
      color: var(--brand)
    }

    .cat-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--brand);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .cat-title {
      font-size: 18px;
      font-weight: 700
    }

    .cat-count {
      font-size: 14px;
      color: var(--ink4);
      font-weight: 500;
      margin-top: 1px
    }

    .cat-desc {
      font-size: 14px;
      color: var(--ink3);
      line-height: 1.55;
      margin-bottom: 16px
    }

    .cat-assets {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 18px
    }

    .cat-tag {
      font-size: 14px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 6px;
      background: var(--bg);
      color: var(--ink2);
      font-family: 'JetBrains Mono', monospace
    }

    .cat-arrow {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--brand)
    }

    .cat-arrow svg {
      width: 16px;
      height: 16px;
      transition: .15s
    }

    .cat-card:hover .cat-arrow svg {
      transform: translateX(4px)
    }

    /* QUICK JUMP */
    .preview {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 28px;
      margin-bottom: 56px
    }

    .preview h2 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px
    }

    .preview .sub {
      font-size: 14px;
      color: var(--ink3);
      margin-bottom: 20px
    }

    .prev-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 10px
    }

    .prev-item {
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 14px 12px;
      text-align: center;
      transition: .2s;
      cursor: pointer;
      display: block
    }

    .prev-item:hover {
      border-color: var(--brand);
      background: var(--brand-06)
    }

    .prev-icon {
      font-size: 20px;
      margin-bottom: 6px
    }

    .prev-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 2px
    }

    .prev-count {
      font-size: 14px;
      color: var(--ink4)
    }

    /* ALL ASSETS TABLE */
    .all-wrap {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      margin-bottom: 56px
    }

    .all-head {
      padding: 24px 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px
    }

    .all-head h2 {
      font-size: 20px;
      font-weight: 700
    }

    .all-head .sub {
      font-size: 14px;
      color: var(--ink3)
    }

    .filter-row {
      display: flex;
      gap: 8px;
      padding: 0 24px 16px;
      flex-wrap: wrap
    }

    .filter-btn {
      padding: 6px 16px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid var(--line);
      background: var(--card);
      color: var(--ink2);
      transition: .15s
    }

    .filter-btn:hover {
      border-color: var(--brand);
      color: var(--brand)
    }

    .filter-btn.on {
      background: var(--brand);
      color: #fff;
      border-color: var(--brand)
    }

    .all-table {
      width: 100%;
      min-width: 2520px;
      border-collapse: collapse
    }

    .all-table thead th {
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink3);
      text-align: left;
      border-bottom: 1px solid var(--line);
      border-top: 1px solid var(--line);
      background: #FAFBFE;
      letter-spacing: .03em;
      text-transform: uppercase
    }

    .all-table thead th.r {
      text-align: right
    }

    .all-table tbody tr {
      border-bottom: 1px solid var(--line);
      transition: .12s;
      cursor: pointer
    }

    .all-table tbody tr:last-child {
      border-bottom: none
    }

    .all-table tbody tr:hover {
      background: var(--brand-06)
    }

    .all-table td {
      padding: 12px 16px;
      font-size: 14px;
      vertical-align: middle
    }

    .asset-cell {
      display: flex;
      align-items: center;
      gap: 11px
    }

    .asset-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
    }

    .asset-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .asset-icon.asset-icon-logo img {
      object-fit: contain;
      padding: 4px;
      box-sizing: border-box;
      background: #fff
    }

    .asset-icon .asset-fallback-label {
      display: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .01em
    }

    .asset-icon.asset-icon-logo .asset-fallback-label {
      color: #1A1F36
    }

    .asset-icon.is-fallback .asset-fallback-label {
      display: flex
    }

    .asset-icon.asset-icon-flags {
      width: 40px;
      height: 24px;
      border-radius: 0;
      overflow: visible;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      display: block
    }

    .asset-icon.asset-icon-flags img {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid #fff;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
      position: absolute;
      top: 1px;
      object-fit: cover;
      transform: none !important
    }

    .asset-icon.asset-icon-flags img.flag-left {
      left: 0
    }

    .asset-icon.asset-icon-flags img.flag-right {
      right: 0
    }

    .asset-name {
      font-weight: 600;
      font-size: 14px
    }

    .asset-code {
      font-size: 14px;
      color: var(--ink4);
      font-family: 'JetBrains Mono', monospace
    }

    .asset-cat {
      font-size: 14px;
      padding: 3px 8px;
      border-radius: 5px;
      font-weight: 600
    }

    .asset-cat.crypto {
      background: #EDE7F6;
      color: #7C4DFF
    }

    .asset-cat.forex {
      background: #E3F2FD;
      color: #1976D2
    }

    .asset-cat.stocks {
      background: #E8F5E9;
      color: #388E3C
    }

    .asset-cat.commodity {
      background: #FFF3E0;
      color: #E65100
    }

    .asset-cat.indices {
      background: #FCE4EC;
      color: #C2185B
    }

    .asset-cat.etf {
      background: #E0F7FA;
      color: #00838F
    }

    .asset-cat.bonds {
      background: #ECEFF1;
      color: #455A64
    }

    .mono {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      text-align: right
    }

    .pct {
      font-size: 14px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 5px
    }

    .pct.u {
      color: var(--g);
      background: var(--gbg)
    }

    .pct.d {
      color: var(--r);
      background: var(--rbg)
    }

    .pct.n {
      color: var(--ink3);
      background: #EDF1F7
    }

    .forecast-cell {
      white-space: nowrap
    }

    .forecast-cell .forecast-price {
      display: block;
      margin-bottom: 6px;
      line-height: 1.2
    }

    .forecast-cell .pct {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end
    }

    .metric-stack {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 5px
    }

    .metric-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.1;
      white-space: nowrap
    }

    .metric-chip.up {
      background: #DCFCE7;
      color: #15803D
    }

    .metric-chip.down {
      background: #FEE2E2;
      color: #DC2626
    }

    .metric-chip.gold {
      background: #FEF3C7;
      color: #B45309
    }

    .metric-chip.death {
      background: #FCE7F3;
      color: #BE185D
    }

    .metric-chip.bullish {
      background: #DBEAFE;
      color: #1D4ED8
    }

    .metric-chip.bearish {
      background: #FEE2E2;
      color: #DC2626
    }

    .metric-chip.low {
      background: #DCFCE7;
      color: #15803D
    }

    .metric-chip.medium {
      background: #FEF3C7;
      color: #B45309
    }

    .metric-chip.high {
      background: #FEE2E2;
      color: #DC2626
    }

    .metric-chip.neutral {
      background: #EEF2FF;
      color: #4F46E5
    }

    .metric-note {
      font-size: 12px;
      color: var(--ink4);
      font-family: 'JetBrains Mono', monospace;
      white-space: nowrap
    }

    .row-go {
      color: var(--ink4);
      font-size: 14px;
      text-align: center
    }

    .all-table tbody tr:hover .row-go {
      color: var(--brand)
    }

    .all-table tbody tr[data-href] {
      cursor: pointer
    }

    .hub-asset-link {
      color: inherit;
      text-decoration: none
    }

    .hub-asset-link:hover {
      text-decoration: underline;
      text-underline-offset: 2px
    }

    .all-table tbody tr.is-loading td,
    .all-table tbody tr.is-empty td {
      color: var(--ink3);
      text-align: center;
      font-weight: 500
    }

    .all-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      padding: 14px 16px 18px;
      border-top: 1px solid var(--line)
    }

    .all-table-disclaimer {
      margin: 0 14px 14px;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      color: var(--ink3);
      font-size: 14px;
      line-height: 1.55;
      white-space: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch
    }

    .all-table-disclaimer strong {
      color: var(--ink)
    }

    @media(max-width:900px){.all-table-disclaimer{white-space:normal;overflow:visible}}

    .all-page-link {
      min-width: 36px;
      height: 36px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: var(--card);
      color: var(--ink);
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 10px;
      text-decoration: none;
      transition: .15s
    }

    .all-page-link:hover {
      border-color: var(--brand);
      color: var(--brand)
    }

    .all-page-link.on {
      border-color: var(--brand);
      background: var(--brand);
      color: #fff
    }

    .all-page-link.disabled {
      opacity: .45;
      pointer-events: none
    }

    .all-page-meta {
      font-size: 14px;
      color: var(--ink3);
      margin-left: 2px
    }

    /* HOW IT WORKS */
    .how {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 56px
    }

    .how-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center
    }

    .how-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--brand);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 10px
    }

    .how-card h3 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px
    }

    .how-card p {
      font-size: 14px;
      color: var(--ink3);
      line-height: 1.5
    }

    /* AEO BLOCK */
    .aeo {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 32px 28px;
      margin-bottom: 56px
    }

    .aeo h2 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 24px
    }

    .aeo-item {
      margin-bottom: 20px
    }

    .aeo-item:last-child {
      margin-bottom: 0
    }

    .aeo-item h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--brand);
      margin-bottom: 6px
    }

    .aeo-item p {
      font-size: 14px;
      color: var(--ink2);
      line-height: 1.6
    }

    /* FAQ */
    .faq-wrap {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 24px 28px;
      margin-bottom: 56px
    }

    .faq-wrap h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 16px
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 32px
    }

    .fi {
      border-bottom: 1px solid var(--line)
    }

    .fq {
      padding: 11px 0;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      transition: .12s
    }

    .fq:hover {
      color: var(--brand)
    }

    .fq::after {
      content: '+';
      font-size: 16px;
      color: var(--brand);
      font-weight: 400;
      flex-shrink: 0;
      width: 20px;
      text-align: center
    }

    .fq.open::after {
      content: '−'
    }

    .fa {
      padding: 0 0 11px;
      font-size: 14px;
      line-height: 1.55;
      color: var(--ink3);
      display: none
    }

    .fa.open {
      display: block
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, var(--brand), #5B6BE6);
      border-radius: 16px;
      padding: 44px;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .cta::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -10%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06)
    }

    .cta::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04)
    }

    .cta h2 {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      position: relative
    }

    .cta p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.86);
      margin-bottom: 22px;
      position: relative
    }

    .cta a {
      display: inline-block;
      background: #fff;
      color: var(--brand);
      padding: 13px 36px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      transition: .2s;
      position: relative
    }

    .cta a:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15)
    }

    /* FOOTER */
    footer {
      background: #3B4CCA;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 0
    }

    .ft-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 24px 28px
    }

    .ft-disc {
      font-size: 14px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.62);
      max-width: 900px
    }

    .ft-sep {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 24px 0
    }

    .ft-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 24px;
      margin-bottom: 14px
    }

    .ft-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.78);
      transition: .15s
    }

    .ft-links a:hover {
      color: #fff
    }

    .ft-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.1)
    }

    .ft-copy {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.52)
    }

    .ft-social {
      display: flex;
      align-items: center;
      gap: 14px
    }

    .ft-social span {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.58);
      font-weight: 500
    }

    .ft-social a {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      transition: .15s
    }

    .ft-social a:hover {
      background: rgba(255, 255, 255, 0.15);
      color: #fff
    }

    /* PAYWALL */
    .pw-toggle {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 6px 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
      font-size: 12px;
      font-weight: 600
    }

    .pw-toggle span {
      color: var(--ink3);
      padding: 0 4px
    }

    .pw-btn {
      padding: 6px 14px;
      border-radius: 7px;
      cursor: pointer;
      border: none;
      font-family: inherit;
      font-size: 12px;
      font-weight: 600;
      transition: .15s
    }

    .pw-btn.free {
      background: var(--rbg);
      color: var(--r)
    }

    .pw-btn.pro {
      background: var(--gbg);
      color: var(--g)
    }

    .pw-btn.on {
      box-shadow: 0 0 0 2px var(--brand)
    }

    [data-plan="free"] .pw-blur {
      filter: blur(6px);
      -webkit-user-select: none;
      user-select: none;
      pointer-events: none
    }

    /* TICKER (home-page style) */
    .ticker-wrap {
      position: relative;
      z-index: 95;
      width: 100%;
      background: var(--card);
      border-bottom: 1px solid var(--line);
      overflow: hidden
    }

    .ticker-inner {
      display: flex;
      animation: tickerScroll 240s linear infinite;
      width: max-content
    }

    @keyframes tickerScroll {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      white-space: nowrap;
      border-right: 1px solid var(--line)
    }

    .ticker-item .t-name {
      font-family: 'JetBrains Mono', monospace;
      font-size: .82rem;
      font-weight: 700;
      color: var(--ink)
    }

    .ticker-item .t-price {
      font-family: 'JetBrains Mono', monospace;
      font-size: .82rem;
      color: var(--ink3)
    }

    .ticker-item .t-chg {
      font-family: 'JetBrains Mono', monospace;
      font-size: .78rem;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 4px
    }

    .t-up {
      color: var(--g);
      background: var(--gbg)
    }

    .t-dn {
      color: var(--r);
      background: var(--rbg)
    }

    /* SEARCH DROPDOWN */
    .search-dd {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      right: 0;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
      max-height: 280px;
      overflow-y: auto;
      z-index: 50;
      display: none
    }

    .search-dd.open {
      display: block
    }

    .search-dd .sd-group {
      padding: 6px 0
    }

    .search-dd .sd-item {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      border: 0;
      background: transparent;
      text-align: left;
      padding: 8px 14px;
      font-size: .88rem;
      color: var(--ink);
      cursor: pointer;
      transition: .1s;
      font-family: inherit
    }

    .search-dd .sd-item:hover {
      background: var(--brand-06)
    }

    .search-dd .sd-ticker {
      font-family: 'JetBrains Mono', monospace;
      font-size: .8rem;
      font-weight: 700;
      min-width: 56px
    }

    .search-dd .sd-sym {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .72rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line)
    }

    .search-dd .sd-sym img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .search-dd .sd-sym .asset-fallback-label {
      display: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .01em
    }

    .search-dd .sd-sym.is-fallback .asset-fallback-label {
      display: flex
    }

    .search-dd .sd-sym.sd-sym-flags {
      width: 30px;
      height: 20px;
      border-radius: 0;
      overflow: visible;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      display: block
    }

    .search-dd .sd-sym.sd-sym-flags img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1px solid #fff;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .22);
      position: absolute;
      top: 1px;
      object-fit: cover;
      transform: none !important
    }

    .search-dd .sd-sym.sd-sym-flags img.flag-left {
      left: 0
    }

    .search-dd .sd-sym.sd-sym-flags img.flag-right {
      right: 0
    }

    .search-dd .sd-name {
      color: var(--ink3);
      font-size: .82rem
    }

    .search-dd .sd-none {
      padding: 16px 14px;
      text-align: center;
      font-size: .85rem;
      color: var(--ink3)
    }

    /* AEO REDESIGN */
    .seo-blocks {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      margin-bottom: 56px
    }

    .seo-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 28px 24px;
      position: relative;
      overflow: hidden
    }

    .seo-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      border-radius: 16px 16px 0 0
    }

    .seo-card:nth-child(1)::before {
      background: linear-gradient(90deg, var(--brand), #5B6BE6)
    }

    .seo-card:nth-child(2)::before {
      background: linear-gradient(90deg, #16A34A, #22C55E)
    }

    .seo-card:nth-child(3)::before {
      background: linear-gradient(90deg, #F59E0B, #EAB308)
    }

    .seo-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 14px
    }

    .seo-card:nth-child(1) .seo-icon {
      background: var(--brand-12)
    }

    .seo-card:nth-child(2) .seo-icon {
      background: var(--gbg)
    }

    .seo-card:nth-child(3) .seo-icon {
      background: var(--ambg)
    }

    .seo-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3
    }

    .seo-card p {
      font-size: 13.5px;
      color: var(--ink2);
      line-height: 1.65
    }

    [data-plan="free"] .pw-cta {
      display: flex !important
    }

    [data-plan="pro"] .pw-blur {
      filter: none;
      -webkit-user-select: auto;
      user-select: auto;
      pointer-events: auto
    }

    [data-plan="pro"] .pw-cta {
      display: none !important
    }

    .pw-cta {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 36px 24px;
      background: linear-gradient(180deg, rgba(245, 246, 251, 0) 0%, var(--bg) 20%);
      margin: -80px 0 0;
      position: relative;
      z-index: 20;
      text-align: center;
      gap: 12px;
      border-radius: 0 0 14px 14px
    }

    .pw-cta-inner {
      background: var(--card);
      border: 2px dashed var(--brand-12);
      border-radius: 14px;
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      max-width: 500px;
      width: 100%
    }

    .pw-cta-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--brand-12);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .pw-cta-icon svg {
      width: 24px;
      height: 24px;
      color: var(--brand)
    }

    .pw-cta h3 {
      font-size: 17px;
      font-weight: 700;
      margin: 0
    }

    .pw-cta h3 em {
      color: var(--brand);
      font-style: normal
    }

    .pw-cta p {
      font-size: 13px;
      color: var(--ink3);
      max-width: 420px;
      margin: 0;
      line-height: 1.55;
      white-space: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch
    }

    .pw-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 36px;
      background: var(--brand);
      color: #fff;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      transition: .2s
    }

    .pw-cta-btn:hover {
      background: #2D3BB5;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(59, 76, 202, 0.3)
    }

    .pw-cta-sub {
      font-size: 11px;
      color: var(--ink4)
    }

    /* DARK */
    [data-theme="dark"] {
      --ink: #E8EAF2;
      --ink2: #C5CBDD;
      --ink3: #AAB2C9;
      --ink4: #8A93AF;
      --line: #2D3348;
      --bg: #13162B;
      --card: #1A1F36;
      --gbg: rgba(22, 163, 74, 0.15);
      --rbg: rgba(220, 38, 38, 0.15);
      --ambg: rgba(245, 158, 11, 0.15)
    }

    [data-theme="dark"] thead th {
      background: #1E2340
    }

    [data-theme="dark"] .cat-tag {
      background: #2D3348
    }

    [data-theme="dark"] .filter-btn {
      background: var(--card);
      border-color: var(--line);
      color: var(--ink3)
    }

    [data-theme="dark"] .pw-cta {
      background: linear-gradient(180deg, rgba(19, 22, 43, 0) 0%, var(--bg) 20%)
    }

    [data-theme="dark"] .marquee-label {
      background: linear-gradient(90deg, var(--card) 70%, transparent)
    }

    [data-theme="dark"] .hero h1 span {
      -webkit-text-fill-color: unset;
      background: none;
      color: #7B8CFF
    }

    /* MOBILE */
    @media(max-width:768px) {
      nav {
        padding: 0 16px
      }

      .nv {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #3B4CCA, #5B6BE6);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(59, 76, 202, 0.3)
      }

      .nv.open {
        display: flex
      }

      .nv>a,
      .dd-toggle {
        font-size: 14px;
        padding: 10px 0
      }

      .ham {
        display: flex
      }

      .dd-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-top: 4px
      }

      .dd-menu::before {
        display: none
      }

      .dd-menu a {
        color: rgba(255, 255, 255, 0.8)
      }

      .dd-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff
      }

      main {
        padding: 24px 16px 40px
      }

      .hero h1 {
        font-size: 26px
      }

      .hero p {
        font-size: 15px
      }

      .trust {
        gap: 12px
      }

      .trust-item {
        font-size: 14px
      }

      .stats {
        gap: 20px
      }

      .stat-val {
        font-size: 22px
      }

      .cats {
        grid-template-columns: 1fr
      }

      .cats .cat-card {
        grid-column: span 1 !important
      }

      .cats .cat-card[style] {
        grid-column: span 1 !important
      }

      .prev-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .all-wrap {
        overflow-x: auto
      }

      .all-table {
        min-width: 900px
      }

      .how {
        grid-template-columns: 1fr
      }

      .seo-blocks {
        grid-template-columns: 1fr
      }

      .filter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        overflow: visible
      }

      .filter-btn {
        text-align: center
      }

      .all-head {
        padding: 20px 16px 0
      }

      .all-head h2 {
        font-size: 18px
      }

      .faq-grid {
        grid-template-columns: 1fr
      }

      .aeo {
        padding: 24px 20px
      }

      .marquee-label {
        width: 70px;
        font-size: 10px
      }

      .marquee-track {
        padding-left: 80px
      }
    }
  