   :root[data-theme="light"] {
      --bg: #080c14;
      --bg2: #0d1424;
      --bg3: #111c30;
      --card: #0f1929;
      --card2: #162138;
      --border: rgba(255, 200, 50, 0.12);
      --border2: rgba(255, 200, 50, 0.25);
      --gold: #0044aa;
      --gold2: #0044aa;
      --gold3: #0044aa;
      --green: #00e87a;
      --green2: #00c268;
      --red: #ff4b4b;
      --text: #e8edf5;
      --text2: #8fa0bb;
      --text3: #c2cfe0;
      --glow: 0 0 40px rgba(245, 184, 0, 0.25);
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }

    :root[data-theme="dark"] {

      --bg: #080c14;
      --bg2: #0d1424;
      --bg3: #111c30;
      --card: #0f1929;
      --card2: #162138;
      --border: rgba(255, 200, 50, 0.12);
      --border2: rgba(255, 200, 50, 0.25);
      --gold: #0044aa;
      --gold2: #0044aa;
      --gold3: #0044aa;
      --green: #00e87a;
      --green2: #00c268;
      --red: #ff4b4b;
      --text: #e8edf5;
      --text2: #8fa0bb;
      --text3: #c2cfe0;
      --glow: 0 0 40px rgba(245, 184, 0, 0.25);
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
      --bg: #f0f4fc;
      --bg2: #e4ecf8;
      --bg3: #dce6f5;
      --card: #ffffff;
      --card2: #f7f9ff;
      --border: rgba(245, 184, 0, 0.2);
      --border2: rgba(245, 184, 0, 0.4);
      --gold: #0044aa;
      --gold2: #0044aa;
      --gold3: #0044aa;
      --green: #00b85e;
      --green2: #009a4e;
      --red: #e03030;
      --text: #101828;
      --text2: #4a6080;
      --text3: #2c3e5a;
      --glow: 0 0 30px rgba(245, 184, 0, 0.15);
      --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: background-color 0.4s, color 0.3s, border-color 0.3s
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .syne {
      font-family: 'Syne', sans-serif
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: var(--bg2)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 10px
    }

    /* PAGES */
    .page {
      display: none;
      animation: fadeSlide 0.5s ease
    }

    .page.active {
      display: block
    }

    @keyframes fadeSlide {
      from {
        opacity: 0;
        transform: translateY(16px)
      }

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

    /* NAV */
    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 1.5rem;
      background: rgba(240, 244, 252, 0.88);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    [data-theme="light"] .main-nav {
      background: rgba(25, 27, 32, 0.88)
    }

    .brand {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--gold);
      letter-spacing: -0.5px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .brand span {
      color: var(--text)
    }

    .brand-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem
    }

    .nav-links a {
      color: var(--text2);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      margin-left: 1.5rem;
      transition: color .2s
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold)
    }

    .nav-cta {
      background: var(--gold);
      color: #000 !important;
      padding: .42rem 1.1rem;
      border-radius: 50px;
      font-weight: 700 !important;
      font-size: .85rem !important;
      transition: all .25s !important
    }

    .nav-cta:hover {
      background: var(--gold2);
      transform: scale(1.04)
    }

    .theme-toggle {
      background: var(--card2);
      border: 1px solid var(--border);
      color: var(--text2);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: all .25s;
      margin-left: 1rem
    }

    .theme-toggle:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 90px 0 60px;
      position: relative;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: .35
    }

    .hero-orb-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--gold), transparent 70%);
      top: -100px;
      right: -100px
    }

    .hero-orb-2 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, #003a80, transparent 70%);
      bottom: 0;
      left: -80px
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(245, 184, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 184, 0, 0.04) 1px, transparent 1px);
      background-size: 60px 60px
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 184, 0, 0.1);
      border: 1px solid var(--border2);
      border-radius: 50px;
      padding: .4rem 1rem;
      font-size: .8rem;
      color: var(--gold2);
      font-weight: 600;
      margin-bottom: 1.5rem;
      animation: pulse 2.5s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(245, 184, 0, 0)
      }

      50% {
        box-shadow: 0 0 0 8px rgba(245, 184, 0, 0)
      }
    }

    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -2px;
      margin-bottom: 1.5rem
    }

    .hero h1 .highlight {
      color: var(--gold);
      position: relative;
      display: inline-block
    }

    .hero h1 .highlight::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      border-radius: 2px
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--text2);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 2rem
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap
    }

    .hero-stat {
      text-align: left
    }

    .hero-stat-val {
      font-family: 'Syne', sans-serif;
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -1px
    }

    .hero-stat-lbl {
      font-size: .78rem;
      color: var(--text2);
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .btn-hero-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      color: #000;
      font-weight: 700;
      font-family: 'Syne', sans-serif;
      padding: .85rem 2rem;
      border-radius: 14px;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      transition: all .3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      color: #000
    }

    .btn-hero-secondary {
      background: transparent;
      color: var(--text);
      font-weight: 600;
      font-family: 'Syne', sans-serif;
      padding: .85rem 2rem;
      border-radius: 14px;
      border: 1.5px solid var(--border2);
      font-size: .95rem;
      cursor: pointer;
      transition: all .3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-left: 1rem
    }

    .btn-hero-secondary:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    .hero-visual {
      position: relative;
      z-index: 1
    }

    .hero-card-float {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
      position: relative
    }

    .hero-card-float::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(245, 184, 0, 0.2), transparent, rgba(245, 184, 0, 0.1));
      z-index: -1
    }

    .moto-img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      background: linear-gradient(135deg, #0d1a2e, #162138);
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .moto-placeholder {
      font-size: 8rem;
      filter: drop-shadow(0 10px 30px rgba(245, 184, 0, 0.3))
    }

    .moto-badge-float {
      position: absolute;
      background: var(--card2);
      border: 1px solid var(--border2);
      border-radius: 14px;
      padding: .7rem 1rem;
      display: flex;
      align-items: center;
      gap: .6rem;
      box-shadow: var(--shadow)
    }

    .moto-badge-float.top-right {
      top: 16px;
      right: 16px
    }

    .moto-badge-float.bot-left {
      bottom: 16px;
      left: 16px
    }

    .moto-badge-float .val {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--green)
    }

    .moto-badge-float .lbl {
      font-size: .72rem;
      color: var(--text2)
    }

    /* SECTION BASICS */
    .section-tag {
      display: inline-block;
      background: rgba(245, 184, 0, 0.1);
      border: 1px solid var(--border2);
      color: var(--gold);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: .35rem .9rem;
      border-radius: 50px;
      margin-bottom: 1rem
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.15;
      margin-bottom: 1rem
    }

    .section-sub {
      color: var(--text2);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 540px
    }

    /* INVESTMENT MODEL */
    .invest-section {
      padding: 100px 0;
      position: relative
    }

    .invest-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s
    }

    .invest-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--glow), var(--shadow)
    }

    .invest-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold3))
    }

    .invest-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(245, 184, 0, 0.1);
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.2rem
    }

    .invest-amount {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -1px
    }

    .invest-label {
      font-size: .8rem;
      color: var(--text2);
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .invest-desc {
      color: var(--text3);
      font-size: .92rem;
      line-height: 1.6;
      margin-top: .8rem
    }

    /* FLOW DIAGRAM */
    .flow-wrap {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden
    }

    .flow-step {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      margin-bottom: 1.8rem;
      position: relative
    }

    .flow-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 23px;
      top: 50px;
      bottom: -30px;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), transparent)
    }

    .flow-num {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      color: white;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .flow-content h5 {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: .3rem
    }

    .flow-content p {
      color: var(--text2);
      font-size: .88rem;
      line-height: 1.6
    }

    /* RETURNS */
    .returns-section {
      padding: 100px 0;
      background: var(--bg2)
    }

    .returns-big {
      font-family: 'Syne', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -3px;
      line-height: 1
    }

    .split-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.8rem;
      margin-bottom: 1rem
    }

    .split-bar {
      display: flex;
      border-radius: 12px;
      overflow: hidden;
      height: 52px;
      margin: 1.2rem 0
    }

    .split-bar-agency {
      background: linear-gradient(90deg, #1a3a6e, #2452a0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      font-weight: 700;
      color: #7ab4ff;
      width: 40%
    }

    .split-bar-owner {
      background: linear-gradient(90deg, var(--gold3), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      font-weight: 700;
      color: #000;
      width: 60%
    }

    .earning-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0, 232, 122, 0.1);
      border: 1px solid rgba(0, 232, 122, 0.25);
      color: var(--green);
      padding: .4rem 1rem;
      border-radius: 50px;
      font-size: .82rem;
      font-weight: 600
    }

    /* FEATURES */
    .features-section {
      padding: 100px 0
    }

    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.8rem;
      height: 100%;
      transition: all .3s;
      cursor: default
    }

    .feature-card:hover {
      border-color: var(--border2);
      transform: translateY(-4px)
    }

    .feature-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      display: block
    }

    .feature-card h5 {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: .6rem
    }

    .feature-card p {
      color: var(--text2);
      font-size: .88rem;
      line-height: 1.6
    }

    /* CALCULATOR */
    .calc-section {
      padding: 100px 0;
      background: var(--bg2)
    }

    .calc-wrap {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden
    }

    .calc-wrap::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(245, 184, 0, 0.1), transparent);
      border-radius: 50%
    }

    .calc-input-group {
      margin-bottom: 1.5rem
    }

    .calc-input-group label {
      font-size: .82rem;
      font-weight: 600;
      color: var(--text2);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: .6rem;
      display: block
    }

    .calc-input-group input[type=range] {
      width: 100%;
      accent-color: var(--gold);
      cursor: pointer
    }

    .calc-val {
      font-family: 'Syne', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--gold)
    }

    .result-box {
      background: linear-gradient(135deg, var(--bg3), var(--card2));
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 2rem;
      text-align: center
    }

    .result-box .big-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--green);
      letter-spacing: -2px
    }

    /* PAYMENT */
    .payment-section {
      padding: 100px 0
    }

    .payment-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      transition: all .3s
    }

    .payment-card:hover {
      border-color: var(--border2)
    }

    .payment-card.featured {
      border-color: var(--gold);
      box-shadow: 0 0 40px rgba(245, 184, 0, 0.12)
    }

    .payment-method {
      display: flex;
      align-items: center;
      gap: .8rem;
      padding: 1rem;
      background: var(--card2);
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: .8rem;
      cursor: pointer;
      transition: all .2s
    }

    .payment-method:hover,
    .payment-method.selected {
      border-color: var(--gold);
      background: rgba(245, 184, 0, 0.05)
    }

    .payment-method-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(245, 184, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem
    }

    .btn-pay {
      background: linear-gradient(135deg, var(--gold), var(--gold3));
      color: #000;
      font-weight: 700;
      font-family: 'Syne', sans-serif;
      padding: .9rem;
      border-radius: 14px;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      width: 100%;
      transition: all .3s;
      box-shadow: 0 6px 24px rgba(245, 184, 0, 0.3)
    }

    .btn-pay:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(245, 184, 0, 0.4)
    }

    .form-control-dark {
      background: var(--card2) !important;
      border: 1px solid var(--border) !important;
      color: var(--text) !important;
      border-radius: 12px !important;
      padding: .8rem 1rem !important
    }

    .form-control-dark:focus {
      border-color: var(--gold) !important;
      box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15) !important
    }

    .form-control-dark::placeholder {
      color: var(--text2) !important
    }

    /* CONTACT */
    .contact-section {
      padding: 100px 0;
      background: var(--bg2)
    }

    .contact-info-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem
    }

    .contact-info-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: rgba(245, 184, 0, 0.1);
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0
    }

    /* FOOTER */
    .main-footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 60px 0 30px
    }

    .footer-brand {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--gold)
    }

    .footer-links a {
      color: var(--text2);
      text-decoration: none;
      font-size: .88rem;
      display: block;
      margin-bottom: .5rem;
      transition: color .2s
    }

    .footer-links a:hover {
      color: var(--gold)
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      margin-top: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem
    }

    .footer-bottom p {
      color: var(--text2);
      font-size: .82rem
    }

    /* ===== ADMIN PAGE ===== */
    .admin-layout {
      display: flex;
      min-height: 100vh;
      background: var(--bg)
    }

    .admin-sidebar {
      width: 260px;
      background: var(--card);
      border-right: 1px solid var(--border);
      padding: 0;
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      z-index: 200;
      transition: transform .3s
    }

    .admin-sidebar.collapsed {
      transform: translateX(-260px)
    }

    .sidebar-brand {
      padding: 1.5rem 1.5rem 1rem;
      border-bottom: 1px solid var(--border)
    }

    .sidebar-nav {
      padding: 1rem;
      flex: 1;
      overflow-y: auto
    }

    .sidebar-nav-item {
      display: flex;
      align-items: center;
      gap: .8rem;
      padding: .75rem 1rem;
      border-radius: 12px;
      color: var(--text2);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      margin-bottom: .25rem;
      transition: all .2s;
      cursor: pointer;
      border: none;
      background: transparent;
      width: 100%;
      text-align: left
    }

    .sidebar-nav-item:hover {
      background: rgba(245, 184, 0, 0.07);
      color: var(--gold)
    }

    .sidebar-nav-item.active {
      background: rgba(245, 184, 0, 0.12);
      color: var(--gold);
      font-weight: 700
    }

    .sidebar-nav-item i {
      font-size: 1.1rem;
      width: 22px;
      text-align: center
    }

    .sidebar-section-label {
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text2);
      padding: .5rem 1rem;
      margin-top: .5rem;
      opacity: .6
    }

    .sidebar-footer {
      padding: 1rem 1.5rem;
      border-top: 1px solid var(--border)
    }

    .admin-main {
      margin-left: 260px;
      flex: 1;
      padding: 0;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      transition: margin .3s
    }

    .admin-main.full {
      margin-left: 0
    }

    .admin-topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #ffffff;
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: .9rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem
    }

    [data-theme="light"] .admin-topbar {
      background: rgba(240, 244, 252, 0.92)
    }

    .admin-content {
      padding: 2rem 1.5rem;
      flex: 1
    }

    .admin-tab {
      display: none
    }

    .admin-tab.active {
      display: block;
      animation: fadeSlide .4s ease
    }

    .kpi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
      transition: all .3s
    }

    .kpi-card:hover {
      border-color: var(--border2);
      transform: translateY(-3px)
    }

    .kpi-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px
    }

    .kpi-card.gold::before {
      background: linear-gradient(90deg, var(--gold), var(--gold3))
    }

    .kpi-card.green::before {
      background: linear-gradient(90deg, var(--green), var(--green2))
    }

    .kpi-card.blue::before {
      background: linear-gradient(90deg, #4a9eff, #2563eb)
    }

    .kpi-card.purple::before {
      background: linear-gradient(90deg, #a78bfa, #7c3aed)
    }

    .kpi-val {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin: 0.3rem 0
    }

    .kpi-val.gold {
      color: var(--gold)
    }

    .kpi-val.green {
      color: var(--green)
    }

    .kpi-val.blue {
      color: #4a9eff
    }

    .kpi-val.purple {
      color: #a78bfa
    }

    .kpi-label {
      font-size: .78rem;
      color: var(--text2);
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .kpi-change {
      font-size: .8rem;
      font-weight: 600;
      margin-top: .4rem
    }

    .kpi-change.up {
      color: var(--green)
    }

    .kpi-change.down {
      color: var(--red)
    }

    .kpi-icon {
      position: absolute;
      right: 1.2rem;
      top: 1.2rem;
      font-size: 2rem;
      opacity: .15
    }

    .earnings-chart-wrap {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.5rem
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 160px;
      margin-top: 1rem
    }

    .chart-bar {
      flex: 1;
      border-radius: 6px 6px 0 0;
      min-width: 24px;
      position: relative;
      cursor: pointer;
      transition: opacity .2s
    }

    .chart-bar:hover {
      opacity: .8
    }

    .chart-bar.gold {
      background: linear-gradient(to top, var(--gold3), var(--gold))
    }

    .chart-bar.dim {
      background: var(--card2)
    }

    .chart-bar-label {
      font-size: .65rem;
      color: var(--text2);
      text-align: center;
      margin-top: .4rem
    }

    .chart-months {
      display: flex;
      gap: 6px;
      margin-top: .2rem
    }

    .chart-months span {
      flex: 1;
      text-align: center;
      font-size: .65rem;
      color: var(--text2)
    }

    .recent-table {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden
    }

    .table-header {
      padding: 1.2rem 1.5rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .table-header h6 {
      font-weight: 700;
      font-size: .95rem;
      margin: 0
    }

    .t-row {
      display: flex;
      align-items: center;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border);
      gap: 1rem;
      transition: background .2s
    }

    .t-row:last-child {
      border-bottom: none
    }

    .t-row:hover {
      background: rgba(245, 184, 0, 0.03)
    }

    .t-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold3), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: .85rem;
      color: #000;
      flex-shrink: 0
    }

    .t-name {
      font-weight: 600;
      font-size: .88rem
    }

    .t-sub {
      font-size: .75rem;
      color: var(--text2)
    }

    .t-badge {
      display: inline-flex;
      align-items: center;
      padding: .25rem .7rem;
      border-radius: 50px;
      font-size: .72rem;
      font-weight: 700
    }

    .t-badge.active {
      background: rgba(0, 232, 122, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 232, 122, 0.2)
    }

    .t-badge.pending {
      background: rgba(245, 184, 0, 0.1);
      color: var(--gold);
      border: 1px solid rgba(245, 184, 0, 0.2)
    }

    .t-badge.inactive {
      background: rgba(255, 75, 75, 0.1);
      color: var(--red);
      border: 1px solid rgba(255, 75, 75, 0.2)
    }

    .t-amount {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      color: var(--green);
      margin-left: auto;
      flex-shrink: 0
    }

    /* USER DASHBOARD SPECIFIC */
    .owner-balance-card {
      background: linear-gradient(135deg, #0f2a4a, #1a3a6e);
      border: 1px solid rgba(74, 158, 255, 0.2);
      border-radius: 24px;
      padding: 2rem;
      position: relative;
      overflow: hidden
    }

    .owner-balance-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(245, 184, 0, 0.15), transparent);
      border-radius: 50%
    }

    [data-theme="light"] .owner-balance-card {
      background: linear-gradient(135deg, #e8f0ff, #d0e2ff)
    }

    .balance-amount {
      font-family: 'Syne', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -2px
    }

    .btn-withdraw {
      background: var(--gold);
      color: #000;
      font-weight: 700;
      font-family: 'Syne', sans-serif;
      padding: .7rem 1.8rem;
      border-radius: 50px;
      border: none;
      font-size: .9rem;
      cursor: pointer;
      transition: all .25s
    }

    .btn-withdraw:hover {
      background: var(--gold2);
      transform: scale(1.04)
    }

    .week-progress {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.5rem
    }

    .week-track {
      display: flex;
      gap: 4px;
      margin-top: 1rem
    }

    .week-dot {
      flex: 1;
      height: 36px;
      border-radius: 6px;
      background: var(--card2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .65rem;
      font-weight: 700;
      color: var(--text2);
      transition: all .3s
    }

    .week-dot.earned {
      background: linear-gradient(135deg, var(--gold3), var(--gold));
      color: #000
    }

    .week-dot.today {
      background: linear-gradient(135deg, var(--green2), var(--green));
      color: #000;
      animation: todayPulse 2s infinite
    }

    @keyframes todayPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(0, 232, 122, 0.4)
      }

      50% {
        box-shadow: 0 0 0 6px rgba(0, 232, 122, 0)
      }
    }

    .week-dot.weekend {
      background: rgba(255, 255, 255, 0.03)
    }

    .history-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: var(--card2);
      border-radius: 12px;
      margin-bottom: .5rem
    }

    .history-item-left i {
      color: var(--green);
      margin-right: .6rem
    }

    .history-amount-pos {
      color: var(--green);
      font-weight: 700
    }

    .history-amount-neg {
      color: var(--red);
      font-weight: 700
    }

    .notif-badge {
      background: var(--red);
      color: #fff;
      font-size: .6rem;
      font-weight: 700;
      padding: 2px 5px;
      border-radius: 50px;
      margin-left: 4px
    }

    /* MOBILE NAV */
    .mobile-menu-btn {
      display: none;
      background: transparent;
      border: none;
      color: var(--text);
      font-size: 1.5rem;
      cursor: pointer
    }

    .mobile-sidebar-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 199;
      backdrop-filter: blur(4px)
    }

    /* HAMBURGER ADMIN */
    .admin-menu-btn {
      background: transparent;
      border: none;
      color: var(--text);
      font-size: 1.3rem;
      cursor: pointer;
      margin-right: .5rem
    }

    /* NOTIFICATIONS */
    .toast-container {
      position: fixed;
      top: 80px;
      right: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: .5rem
    }

    .toast-notif {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 14px;
      padding: 1rem 1.2rem;
      max-width: 320px;
      box-shadow: var(--shadow);
      animation: toastIn .3s ease, toastOut .3s ease 3.5s forwards;
      display: flex;
      align-items: flex-start;
      gap: .8rem
    }

    @keyframes toastIn {
      from {
        transform: translateX(100px);
        opacity: 0
      }

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

    @keyframes toastOut {
      to {
        transform: translateX(100px);
        opacity: 0
      }
    }

    .toast-icon {
      font-size: 1.3rem;
      flex-shrink: 0
    }

    .toast-title {
      font-weight: 700;
      font-size: .88rem;
      margin-bottom: .2rem
    }

    .toast-msg {
      font-size: .8rem;
      color: var(--text2)
    }

    /* MODAL */
    .modal-dark .modal-content {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 24px
    }

    .modal-dark .modal-header {
      border-bottom: 1px solid var(--border);
      padding: 1.5rem
    }

    .modal-dark .modal-body {
      padding: 1.5rem
    }

    .modal-dark .modal-footer {
      border-top: 1px solid var(--border);
      padding: 1.2rem 1.5rem
    }

    .btn-close-dark {
      background: var(--card2);
      border: 1px solid var(--border);
      color: var(--text);
      opacity: 1;
      border-radius: 8px;
      width: 32px;
      height: 32px;
      font-size: .85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .2s
    }

    .btn-close-dark:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    /* RESPONSIVE */
    @media(max-width:991px) {
      .admin-sidebar {
        transform: translateX(-260px)
      }

      .admin-sidebar.open {
        transform: translateX(0)
      }

      .admin-main {
        margin-left: 0
      }

      .mobile-sidebar-overlay.show {
        display: block
      }

      .nav-links {
        display: none
      }

      .mobile-menu-btn {
        display: block
      }

      .hero h1 {
        font-size: 2.2rem
      }

      .balance-amount {
        font-size: 2.2rem
      }
    }

    @media(max-width:576px) {
      .hero-stats {
        gap: 1.2rem
      }

      .returns-big {
        font-size: 3rem
      }

      .admin-content {
        padding: 1.2rem 1rem
      }

      .hero {
        padding: 80px 0 50px
      }
    }

    /* LOGO SPECIAL */
    .logo-electric {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      font-family: 'Syne', sans-serif;
      font-weight: 800
    }

    .logo-electric .afri {
      color: var(--gold)
    }

    .logo-electric .moov {
      color: var(--text)
    }

    .logo-electric .tri {
      color: var(--gold)
    }

    /* ANIMATED NUMBERS */
    @keyframes countUp {
      from {
        opacity: 0;
        transform: translateY(10px)
      }

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

    .count-anim {
      animation: countUp .6s ease
    }

    /* MOTO SVG */
    .electric-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(0, 232, 122, 0.1);
      border: 1px solid rgba(0, 232, 122, 0.25);
      color: var(--green);
      font-size: .72rem;
      font-weight: 700;
      padding: .25rem .6rem;
      border-radius: 50px
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 10px;
      margin-top: 20px;
    }

    .hero-stat {
      background: linear-gradient(145deg, rgba(29, 60, 106, 0.15), rgba(57, 56, 56, 0.4));
      backdrop-filter: blur(12px);
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      border: 1px solid rgba(0, 68, 170, 0.2);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .hero-stat::before {
      content: "";
      position: absolute;
      width: 80%;
      height: 50%;
      background: radial-gradient(circle, rgba(0, 68, 170, 0.2), transparent);
      top: -50%;
      left: -50%;
      opacity: 0;
      transition: 0.4s;
    }

    .hero-stat:hover::before {
      opacity: 1;
    }

    .hero-stat:hover {
      transform: translateY(-8px) scale(1.03);
      border-color: #0044aa;
      box-shadow: 0 10px 30px rgba(0, 68, 170, 0.3);
    }

    .hero-stat i {
      font-size: 26px;
      color: #0044aa;
      margin-bottom: 10px;
    }

    .hero-stat-val {
      font-size: 22px;
      font-weight: 700;
      color: #0044aa;
    }

    .hero-stat-lbl {
      font-size: 13px;
      color: #140606;
      margin-top: 5px;
    }
