/* =====================================================
   DIGITALLAHORE — CYBER LOCK THEME v5.0
   ===================================================== */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Share+Tech+Mono&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* LOCK / CYBER COLORS */
  --bg:        #020408;
  --bg2:       #040a10;
  --bg3:       #071018;
  --bg4:       #0a1520;
  --card:      #050d15;
  --card2:     #071220;
  --card3:     #091828;

  --border:    rgba(0,255,136,0.08);
  --border2:   rgba(0,255,136,0.15);
  --border3:   rgba(0,255,136,0.28);

  /* LOCK GREEN — main accent */
  --lock:      #00ff88;
  --lock2:     #00cc66;
  --lock-dim:  rgba(0,255,136,0.12);
  --lock-glow: rgba(0,255,136,0.25);

  /* CYAN — secondary */
  --cyan:      #00e5ff;
  --cyan-dim:  rgba(0,229,255,0.1);

  /* RED — danger / alert */
  --red:       #ff2244;
  --red-dim:   rgba(255,34,68,0.12);

  /* GOLD — featured */
  --gold:      #ffd700;
  --gold-dim:  rgba(255,215,0,0.1);

  --purple:    #7c3aed;
  --blue:      #2563eb;

  --text:      #c8ffe8;
  --text2:     #5a8a6a;
  --text3:     #2d5040;

  --radius:    10px;
  --radius-sm: 7px;
  --shadow:    0 4px 24px rgba(0,255,136,0.08);
  --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);

  /* FONTS */
  --font-display: 'Orbitron', monospace;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--lock2); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--lock); }

/* ===== MATRIX RAIN CANVAS ===== */
#matrixCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.07;
}

/* ===== SCAN LINE EFFECT ===== */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,255,136,0.015) 2px,
    rgba(0,255,136,0.015) 4px
  );
  pointer-events: none; z-index: 1;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--lock), var(--cyan), var(--lock));
  z-index: 9999; width: 0%;
  box-shadow: 0 0 10px var(--lock), 0 0 20px var(--lock-glow);
  transition: width 0.1s;
}

/* ===== TOPBAR ===== */
.dl-topbar {
  background: rgba(2,4,8,0.97);
  border-bottom: 1px solid var(--border2);
  padding: 5px 20px;
  font-size: 11px;
  color: var(--text3);
  position: relative; z-index: 10;
  font-family: var(--font-mono);
}
.dl-topbar-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.dl-topbar a { color: var(--lock); font-weight: 500; text-decoration: none; }
.dl-topbar a:hover { color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }
.dl-live { display: flex; align-items: center; gap: 5px; color: var(--lock); }
.dl-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lock); animation: pulse-lock 1.5s infinite; }
@keyframes pulse-lock {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(0,255,136,0); }
}
.dl-member-pill {
  background: transparent; border: 1px solid var(--lock);
  color: var(--lock); padding: 3px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700; cursor: pointer;
  font-family: var(--font-mono);
  transition: var(--transition);
}
.dl-member-pill:hover {
  background: var(--lock-dim);
  box-shadow: 0 0 10px var(--lock-glow);
}

/* ===== VISITOR COUNTER BAR ===== */
.dl-vcounter {
  background: linear-gradient(90deg, #020408, #040c14, #020408);
  border-bottom: 1px solid var(--border);
  padding: 5px 20px; position: relative; z-index: 10;
  font-family: var(--font-mono);
}
.dl-vcounter-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.dl-vc-item { display: flex; align-items: center; gap: 5px; color: var(--text3); font-size: 11px; }
.dl-vc-num { font-weight: 700; color: var(--lock); font-size: 12px; text-shadow: 0 0 8px var(--lock); }
.dl-vc-label { font-size: 10px; color: var(--text3); }
.dl-clock { color: var(--lock); font-weight: 700; font-size: 12px; font-family: var(--font-mono); text-shadow: 0 0 8px var(--lock-glow); }
.dl-mode-toggle {
  width: 34px; height: 18px; border-radius: 4px;
  background: var(--bg3); border: 1px solid var(--border2);
  cursor: pointer; position: relative;
}
.dl-mode-toggle::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 12px; height: 12px; border-radius: 2px;
  background: var(--lock); transition: transform 0.3s;
  box-shadow: 0 0 6px var(--lock);
}

/* ===== NEWS TICKER ===== */
.dl-ticker {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 5px 20px; overflow: hidden;
  position: relative; z-index: 10;
}
.dl-ticker-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 10px; }
.dl-ticker-label {
  background: var(--lock); color: #000;
  font-size: 9px; font-weight: 700; padding: 2px 8px;
  border-radius: 3px; white-space: nowrap; flex-shrink: 0;
  font-family: var(--font-mono); letter-spacing: 1px;
}
.dl-ticker-text {
  white-space: nowrap; animation: ticker 45s linear infinite;
  display: inline-block; font-size: 11px; color: var(--text2);
  font-family: var(--font-mono);
}
.dl-ticker-text:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ===== DASHBOARD BAR ===== */
.dl-dash {
  background: rgba(0,255,136,0.03);
  border-bottom: 1px solid rgba(0,255,136,0.1);
  padding: 7px 20px; display: none;
  position: relative; z-index: 10;
}
.dl-dash.show { display: block; }
.dl-dash-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 12px; font-size: 12px; font-family: var(--font-mono); }
.dl-dash-avatar {
  width: 28px; height: 28px; border-radius: 4px;
  background: var(--lock-dim); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--lock);
}
.dl-dash-plan {
  background: rgba(0,255,136,0.08); border: 1px solid var(--border2);
  border-radius: 4px; padding: 2px 8px; font-size: 10px; color: var(--lock); font-weight: 700;
}
.dl-dash-logout { margin-left: auto; font-size: 11px; color: var(--text3); cursor: pointer; background: none; border: none; font-family: var(--font-mono); }
.dl-dash-logout:hover { color: var(--red); }

/* ===== HEADER ===== */
.dl-header {
  background: rgba(4,10,16,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  padding: 0 20px;
  position: sticky; top: 0; z-index: 300;
  position: relative; z-index: 10;
}
.dl-header-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; padding: 12px 0;
}

/* LOCK LOGO */
.dl-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.dl-logo-icon {
  width: 50px; height: 50px; border-radius: 8px;
  background: var(--bg3); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 20px var(--lock-glow), inset 0 0 20px rgba(0,255,136,0.05);
  animation: lock-pulse 3s ease-in-out infinite;
}
@keyframes lock-pulse {
  0%,100% { box-shadow: 0 0 20px var(--lock-glow), inset 0 0 20px rgba(0,255,136,0.05); }
  50%      { box-shadow: 0 0 35px rgba(0,255,136,0.4), inset 0 0 30px rgba(0,255,136,0.1); }
}
.dl-logo-icon svg { width: 32px; height: 32px; filter: drop-shadow(0 0 6px var(--lock)); }
.dl-logo-name { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--lock); letter-spacing: 1px; text-shadow: 0 0 15px var(--lock-glow); }
.dl-logo-sub { font-size: 9px; color: var(--text3); letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-mono); }

/* SEARCH */
.dl-search-wrap { flex: 1; max-width: 500px; position: relative; }
.dl-search-wrap input {
  width: 100%; padding: 10px 44px 10px 16px;
  background: var(--bg3); border: 1.5px solid var(--border2);
  border-radius: 6px; color: var(--text); font-size: 13px;
  font-family: var(--font-mono); outline: none;
  transition: var(--transition);
}
.dl-search-wrap input::placeholder { color: var(--text3); }
.dl-search-wrap input:focus {
  border-color: var(--lock);
  box-shadow: 0 0 0 3px var(--lock-dim), 0 0 15px var(--lock-glow);
  color: var(--lock);
}
.dl-search-btn {
  position: absolute; right: 0; top: 0; height: 100%; width: 42px;
  background: var(--lock-dim); border: none; border-left: 1px solid var(--border2);
  border-radius: 0 6px 6px 0; cursor: pointer; color: var(--lock); font-size: 15px;
  transition: var(--transition);
}
.dl-search-btn:hover { background: var(--lock); color: #000; }

/* HEADER BUTTONS */
.dl-hdr-btns { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.dl-btn {
  padding: 8px 14px; border-radius: 6px; font-size: 12px; font-weight: 600;
  cursor: pointer; border: none; font-family: var(--font-mono); transition: var(--transition);
  text-decoration: none; display: inline-flex; align-items: center; letter-spacing: 0.5px;
}
.dl-btn.gold { background: var(--lock); color: #000; }
.dl-btn.gold:hover { box-shadow: 0 0 20px var(--lock-glow); transform: translateY(-1px); }
.dl-btn.outline { background: transparent; color: var(--lock); border: 1px solid var(--border2); }
.dl-btn.outline:hover { border-color: var(--lock); background: var(--lock-dim); }
.dl-btn.green { background: var(--lock-dim); color: var(--lock); border: 1px solid var(--border2); }
.dl-btn.green:hover { background: var(--lock); color: #000; }

/* SEARCH DROPDOWN */
.dl-search-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: 0 0 8px 8px; z-index: 500;
  max-height: 300px; overflow-y: auto; display: none;
  box-shadow: 0 10px 30px rgba(0,255,136,0.1);
}
.dl-search-dropdown.open { display: block; }
.dl-sd-item {
  padding: 10px 16px; cursor: pointer; font-size: 12px; color: var(--text2);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border); transition: background 0.15s;
  font-family: var(--font-mono);
}
.dl-sd-item:hover { background: var(--lock-dim); color: var(--lock); }
.dl-sd-item:last-child { border-bottom: none; }

/* ===== NAV TABS ===== */
.dl-nav {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  position: sticky; top: 74px; z-index: 200;
  overflow-x: auto; scrollbar-width: none;
}
.dl-nav::-webkit-scrollbar { display: none; }
.dl-nav-inner { max-width: 1300px; margin: 0 auto; display: flex; padding: 0 20px; }
.dl-tab {
  padding: 10px 14px; white-space: nowrap; font-size: 11px; font-weight: 600;
  cursor: pointer; border-bottom: 2px solid transparent; color: var(--text3);
  transition: var(--transition); display: flex; align-items: center; gap: 5px;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-mono); flex-shrink: 0; letter-spacing: 0.3px;
}
.dl-tab:hover { color: var(--lock); }
.dl-tab.active { color: var(--lock); border-bottom-color: var(--lock); text-shadow: 0 0 8px var(--lock-glow); }
.dl-tab .cnt {
  background: rgba(0,255,136,0.1); color: var(--lock);
  font-size: 9px; padding: 1px 5px; border-radius: 3px; font-weight: 700;
}

/* ===== HERO ===== */
.dl-hero {
  padding: 30px 20px 24px;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,255,136,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 50%, rgba(0,229,255,0.03) 0%, transparent 60%),
              var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.dl-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 80px,
    rgba(0,255,136,0.02) 80px, rgba(0,255,136,0.02) 81px
  ),
  repeating-linear-gradient(
    0deg, transparent, transparent 80px,
    rgba(0,255,136,0.02) 80px, rgba(0,255,136,0.02) 81px
  );
  pointer-events: none;
}
.dl-hero-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }

/* Hero badge */
.dl-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,255,136,0.06); border: 1px solid var(--border2);
  border-radius: 4px; padding: 4px 12px; font-size: 11px; color: var(--lock);
  font-weight: 600; margin-bottom: 10px; font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* Hero title */
.dl-hero-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
  color: var(--lock); letter-spacing: 1px; margin-bottom: 6px;
  text-shadow: 0 0 30px var(--lock-glow), 0 0 60px rgba(0,255,136,0.1);
  line-height: 1.2;
}
.dl-hero-title span { color: var(--cyan); text-shadow: 0 0 20px rgba(0,229,255,0.4); }

/* Stats */
.dl-stats { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.dl-stat {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 8px; padding: 10px 16px; display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.dl-stat:hover { border-color: var(--lock); box-shadow: 0 0 15px var(--lock-glow); }
.dl-stat-num { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--lock); text-shadow: 0 0 10px var(--lock-glow); }
.dl-stat-lbl { font-size: 10px; color: var(--text3); font-family: var(--font-mono); line-height: 1.3; }

/* Hero CTA */
.dl-hero-cta {
  background: linear-gradient(135deg, var(--card), var(--card2));
  border: 1px solid var(--border2); border-radius: 10px; padding: 20px; min-width: 260px;
  position: relative; overflow: hidden;
}
.dl-hero-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--lock), var(--cyan), var(--lock));
}
.dl-cta-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--lock); margin-bottom: 6px; letter-spacing: 0.5px; }
.dl-plan-row { display: flex; gap: 8px; margin-bottom: 12px; }
.dl-plan {
  flex: 1; border-radius: 6px; padding: 10px; text-align: center;
  border: 1px solid var(--border2); background: var(--bg3);
  transition: var(--transition);
}
.dl-plan.featured { border-color: var(--lock); background: rgba(0,255,136,0.05); }
.dl-plan-name { font-size: 10px; font-weight: 700; color: var(--text3); text-transform: uppercase; font-family: var(--font-mono); }
.dl-plan-price { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--lock); }
.dl-cta-btn {
  width: 100%; padding: 10px; background: var(--lock);
  border: none; border-radius: 6px; color: #000;
  font-weight: 700; font-size: 13px; cursor: pointer;
  font-family: var(--font-display); letter-spacing: 0.5px;
  transition: var(--transition);
}
.dl-cta-btn:hover { box-shadow: 0 0 20px var(--lock-glow); transform: translateY(-1px); }

/* ===== MAIN LAYOUT ===== */
.dl-wrap { max-width: 1300px; margin: 0 auto; padding: 20px; display: flex; gap: 22px; }
.dl-content { flex: 1; min-width: 0; }
.dl-sidebar { width: 284px; flex-shrink: 0; }

/* ===== FEATURED ADS ===== */
.dl-feat {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 10px; padding: 16px; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.dl-feat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lock), transparent);
}
.dl-feat-lbl { font-size: 10px; font-weight: 700; color: var(--lock); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-family: var(--font-mono); }
.dl-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dl-feat-card {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 8px; padding: 11px; display: flex; align-items: center; gap: 9px;
  text-decoration: none; transition: var(--transition);
}
.dl-feat-card:hover { border-color: var(--border2); background: var(--card3); transform: translateY(-1px); box-shadow: 0 4px 15px var(--lock-dim); }
.dl-adpill { font-size: 9px; background: var(--lock); color: #000; padding: 2px 5px; border-radius: 3px; font-weight: 700; margin-left: auto; font-family: var(--font-mono); }

/* ===== MEMBER BANNER ===== */
.dl-member-banner {
  background: linear-gradient(135deg, rgba(0,255,136,0.04), rgba(0,229,255,0.03));
  border: 1px solid var(--border2); border-radius: 10px; padding: 16px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.dl-mb-btn {
  margin-left: auto; flex-shrink: 0; padding: 8px 16px;
  background: var(--lock-dim); border: 1px solid var(--border2);
  border-radius: 6px; color: var(--lock); font-weight: 700; font-size: 12px;
  cursor: pointer; font-family: var(--font-mono); white-space: nowrap;
  transition: var(--transition);
}
.dl-mb-btn:hover { background: var(--lock); color: #000; }

/* ===== SECTIONS ===== */
.dl-section { margin-bottom: 26px; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.dl-section.visible { opacity: 1; transform: translateY(0); }
.dl-sec-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.dl-sec-ico {
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  background: var(--lock-dim); border: 1px solid var(--border2);
}
.dl-sec-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--lock); letter-spacing: 0.5px; }
.dl-sec-cnt { font-size: 10px; color: var(--text3); background: var(--bg3); padding: 2px 8px; border-radius: 4px; margin-left: auto; font-family: var(--font-mono); border: 1px solid var(--border); }

/* ===== CARDS ===== */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(188px, 1fr)); gap: 10px; }
.dl-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 13px; text-decoration: none;
  display: block; transition: var(--transition); position: relative; overflow: hidden;
}
.dl-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lock), transparent);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.dl-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,255,136,0.03), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.dl-card:hover { border-color: var(--border2); background: var(--card2); transform: translateY(-2px); box-shadow: 0 4px 20px var(--lock-dim); }
.dl-card:hover::before { transform: scaleX(1); }
.dl-card:hover::after { opacity: 1; }
.dl-card-top { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.dl-card-ico { width: 36px; height: 36px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border: 1px solid var(--border); }
.dl-card-name { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.3; font-family: var(--font-mono); }
.dl-card-url { font-size: 10px; color: var(--lock2); margin-bottom: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--font-mono); }
.dl-card-desc { font-size: 11px; color: var(--text2); line-height: 1.5; }
.dl-card-tag { display: inline-block; font-size: 9px; padding: 2px 6px; border-radius: 3px; margin-top: 7px; font-weight: 600; font-family: var(--font-mono); }
.dl-map-btn {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; padding: 3px 7px; border-radius: 4px;
  background: var(--cyan-dim); color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.2); text-decoration: none;
  transition: var(--transition); white-space: nowrap; font-family: var(--font-mono);
}
.dl-map-btn:hover { background: rgba(0,229,255,0.15); box-shadow: 0 0 8px rgba(0,229,255,0.2); }

/* ===== SIDEBAR ===== */
.sw { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 14px; margin-bottom: 14px; position: relative; overflow: hidden; }
.sw::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--lock), transparent); }
.sw-title { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--lock); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; letter-spacing: 0.5px; }
.sw-title::before { content: ''; width: 3px; height: 12px; background: var(--lock); border-radius: 2px; flex-shrink: 0; box-shadow: 0 0 8px var(--lock); }
.dl-ql { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text3); font-size: 12px; transition: color 0.15s; font-family: var(--font-mono); }
.dl-ql:last-child { border-bottom: none; }
.dl-ql:hover { color: var(--lock); }
.dl-ql-ico { font-size: 13px; width: 18px; text-align: center; }
.dl-ql-num { font-size: 10px; font-weight: 700; color: var(--lock); margin-left: auto; background: rgba(0,255,136,0.08); padding: 1px 6px; border-radius: 3px; }

/* STATS WIDGET */
.dl-stat-box { background: var(--bg3); border: 1px solid var(--border); border-radius: 7px; padding: 10px; text-align: center; transition: var(--transition); }
.dl-stat-box:hover { border-color: var(--lock); box-shadow: 0 0 10px var(--lock-dim); }
.dl-stat-num { font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.dl-stat-lbl { font-size: 9px; color: var(--text3); margin-top: 2px; font-family: var(--font-mono); }

/* ADVERTISE BOX */
.dl-adv-box { background: var(--card); border: 1px solid var(--border2); border-radius: 8px; padding: 16px; margin-bottom: 14px; text-align: center; position: relative; overflow: hidden; }
.dl-adv-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--lock), transparent); }
.dl-adv-box h3 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--lock); margin-bottom: 5px; letter-spacing: 0.5px; }
.dl-adv-box p { font-size: 11px; color: var(--text2); line-height: 1.6; margin-bottom: 12px; font-family: var(--font-mono); }
.dl-price-row { display: flex; gap: 6px; margin-bottom: 12px; }
.dl-pt { flex: 1; background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 8px 4px; text-align: center; }
.dl-pt-val { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--lock); }
.dl-pt-lbl { font-size: 9px; color: var(--text3); margin-top: 2px; font-family: var(--font-mono); }
.dl-adv-btn { display: block; background: var(--lock); color: #000; padding: 9px; border-radius: 6px; font-weight: 700; font-size: 12px; text-decoration: none; font-family: var(--font-display); transition: var(--transition); }
.dl-adv-btn:hover { box-shadow: 0 0 15px var(--lock-glow); }

/* MEMBER WIDGET */
.dl-member-widget { background: linear-gradient(135deg, rgba(0,255,136,0.04), rgba(0,229,255,0.02)); border: 1px solid var(--border2); border-radius: 8px; padding: 16px; margin-bottom: 14px; }
.dl-mw-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--lock); margin-bottom: 4px; letter-spacing: 0.5px; }
.dl-mwf { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text2); margin-bottom: 5px; font-family: var(--font-mono); }
.dl-mwf::before { content: '✓'; color: var(--lock); font-weight: 700; font-size: 11px; text-shadow: 0 0 6px var(--lock); }

/* ===== CONTACT ===== */
.dl-contact { background: var(--card); border: 1px solid var(--border2); border-radius: 10px; padding: 26px; margin-bottom: 20px; text-align: center; position: relative; overflow: hidden; }
.dl-contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--lock), var(--cyan), var(--lock)); }
.dl-contact h2 { font-family: var(--font-display); font-size: 18px; font-weight: 900; color: var(--lock); margin-bottom: 5px; letter-spacing: 1px; }
.dl-contact p { font-size: 12px; color: var(--text2); margin-bottom: 18px; font-family: var(--font-mono); }
.dl-cc-grid { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.dl-cc { background: var(--card2); border: 1px solid var(--border2); border-radius: 8px; padding: 13px 18px; min-width: 130px; }
.dl-cc-lbl { font-size: 9px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-family: var(--font-mono); }
.dl-cc-val { font-size: 12px; font-weight: 600; color: var(--text); font-family: var(--font-mono); }
.dl-cc-val a { color: var(--lock); text-decoration: none; }

/* ===== AI CHATBOT ===== */
.dl-chat-fab { position: fixed; bottom: 24px; right: 24px; z-index: 500; }
.dl-chat-btn {
  width: 56px; height: 56px; border-radius: 8px;
  background: var(--bg3); border: 2px solid var(--border2);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: var(--transition);
  animation: float-lock 3s ease-in-out infinite;
  box-shadow: 0 0 20px var(--lock-dim);
}
@keyframes float-lock { 0%,100% { transform: translateY(0); box-shadow: 0 0 20px var(--lock-dim); } 50% { transform: translateY(-4px); box-shadow: 0 0 30px var(--lock-glow); } }
.dl-chat-btn:hover { border-color: var(--lock); background: var(--lock-dim); }
.dl-chat-notif { position: absolute; top: -4px; right: -4px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 2px solid var(--bg); font-size: 9px; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dl-chat-window {
  position: fixed; bottom: 90px; right: 24px; width: 360px; height: 520px;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 10px; z-index: 499; display: none;
  flex-direction: column; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px var(--lock-dim);
}
.dl-chat-window.open { display: flex; animation: lock-in 0.25s ease; }
@keyframes lock-in { from { opacity: 0; transform: scale(0.93) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.dl-chat-header { background: linear-gradient(135deg, var(--bg3), var(--bg4)); border-bottom: 1px solid var(--border2); padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.dl-chat-avatar { width: 36px; height: 36px; border-radius: 6px; background: var(--lock-dim); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.dl-chat-hinfo h4 { font-size: 13px; font-weight: 700; color: var(--lock); font-family: var(--font-display); letter-spacing: 0.5px; }
.dl-chat-hinfo p { font-size: 10px; color: var(--text3); font-family: var(--font-mono); }
.dl-chat-close { margin-left: auto; background: var(--bg3); border: 1px solid var(--border2); border-radius: 5px; width: 28px; height: 28px; color: var(--text3); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.dl-chat-close:hover { color: var(--lock); border-color: var(--border2); }
.dl-chat-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.dl-msg { max-width: 85%; animation: msg-in 0.2s ease; }
@keyframes msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.dl-msg.bot { align-self: flex-start; }
.dl-msg.user { align-self: flex-end; }
.dl-msg-bubble { padding: 9px 13px; border-radius: 6px; font-size: 12px; line-height: 1.5; font-family: var(--font-mono); }
.dl-msg.bot .dl-msg-bubble { background: var(--bg3); color: var(--text); border: 1px solid var(--border); border-radius: 2px 6px 6px 6px; }
.dl-msg.user .dl-msg-bubble { background: var(--lock-dim); color: var(--lock); border: 1px solid var(--border2); border-radius: 6px 2px 6px 6px; }
.dl-msg-time { font-size: 9px; color: var(--text3); margin-top: 3px; padding: 0 2px; font-family: var(--font-mono); }
.dl-typing { display: flex; align-items: center; gap: 4px; padding: 9px 13px; background: var(--bg3); border: 1px solid var(--border); border-radius: 2px 6px 6px 6px; width: fit-content; }
.dl-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--lock); animation: typing 1.2s infinite; }
.dl-typing span:nth-child(2) { animation-delay: 0.2s; }
.dl-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-5px); opacity: 1; } }
.dl-chat-sugg { padding: 8px 14px; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; border-top: 1px solid var(--border); }
.dl-chat-sugg::-webkit-scrollbar { display: none; }
.dl-sugg { background: var(--bg3); border: 1px solid var(--border2); border-radius: 4px; padding: 5px 10px; font-size: 11px; color: var(--text3); cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: var(--transition); font-family: var(--font-mono); }
.dl-sugg:hover { border-color: var(--lock); color: var(--lock); }
.dl-chat-input-area { padding: 12px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.dl-chat-input { flex: 1; background: var(--bg3); border: 1px solid var(--border2); border-radius: 6px; padding: 9px 13px; color: var(--text); font-size: 12px; font-family: var(--font-mono); outline: none; resize: none; transition: var(--transition); }
.dl-chat-input:focus { border-color: var(--lock); color: var(--lock); }
.dl-chat-send { background: var(--lock-dim); border: 1px solid var(--border2); border-radius: 6px; width: 38px; height: 38px; cursor: pointer; color: var(--lock); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.dl-chat-send:hover { background: var(--lock); color: #000; }

/* ===== AUTH MODAL ===== */
.dl-modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(10px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.dl-modal-bg.open { display: flex; }
.dl-modal { background: var(--card); border: 1px solid var(--border2); border-radius: 10px; padding: 28px; width: 100%; max-width: 440px; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px var(--lock-dim); }
.dl-modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--lock), var(--cyan), var(--lock)); border-radius: 10px 10px 0 0; }
.dl-modal-close { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; border-radius: 5px; background: var(--bg3); border: 1px solid var(--border2); color: var(--text3); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.dl-modal-close:hover { border-color: var(--lock); color: var(--lock); }
.dl-modal-tabs { display: flex; gap: 6px; background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 4px; margin-bottom: 20px; }
.dl-mtab { flex: 1; padding: 8px; border-radius: 5px; font-size: 12px; font-weight: 600; cursor: pointer; border: none; background: none; color: var(--text3); font-family: var(--font-mono); transition: var(--transition); }
.dl-mtab.active { background: var(--lock-dim); color: var(--lock); border: 1px solid var(--border2); }
.dl-form-group { margin-bottom: 13px; }
.dl-form-group label { display: block; font-size: 10px; font-weight: 700; color: var(--text3); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-mono); }
.dl-form-group input { width: 100%; padding: 10px 13px; background: var(--bg3); border: 1px solid var(--border2); border-radius: 6px; color: var(--text); font-size: 13px; font-family: var(--font-mono); outline: none; transition: var(--transition); }
.dl-form-group input:focus { border-color: var(--lock); box-shadow: 0 0 0 2px var(--lock-dim); color: var(--lock); }
.dl-form-submit { width: 100%; padding: 11px; background: var(--lock); border: none; border-radius: 6px; color: #000; font-weight: 700; font-size: 13px; cursor: pointer; font-family: var(--font-display); transition: var(--transition); margin-top: 4px; letter-spacing: 0.5px; }
.dl-form-submit:hover { box-shadow: 0 0 20px var(--lock-glow); }
.dl-form-note { text-align: center; font-size: 11px; color: var(--text3); margin-top: 10px; font-family: var(--font-mono); }
.dl-form-note a { color: var(--lock); cursor: pointer; }
.dl-pln { border: 1px solid var(--border2); border-radius: 6px; padding: 10px; text-align: center; cursor: pointer; transition: var(--transition); }
.dl-pln:hover, .dl-pln.selected { border-color: var(--lock); background: var(--lock-dim); }

/* ===== NOTIFICATIONS ===== */
.dl-notif-container { position: fixed; top: 80px; right: 16px; z-index: 600; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.dl-notif { background: var(--card2); border: 1px solid var(--border2); border-radius: 6px; padding: 10px 14px; font-size: 12px; color: var(--text); box-shadow: var(--shadow); pointer-events: all; animation: notif-in 0.4s ease; max-width: 280px; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); }
@keyframes notif-in { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.dl-notif-close { margin-left: auto; background: none; border: none; color: var(--text3); cursor: pointer; font-size: 14px; }

/* ===== BACK TO TOP ===== */
.dl-back-top { position: fixed; bottom: 90px; left: 24px; width: 40px; height: 40px; border-radius: 6px; background: var(--bg3); border: 1px solid var(--border2); color: var(--lock); cursor: pointer; font-size: 16px; display: none; align-items: center; justify-content: center; z-index: 400; transition: var(--transition); font-family: var(--font-mono); }
.dl-back-top.show { display: flex; }
.dl-back-top:hover { background: var(--lock-dim); border-color: var(--lock); box-shadow: 0 0 12px var(--lock-dim); }

/* ===== CAR LISTING ===== */
.car-section { background: var(--card); border: 1px solid var(--border2); border-radius: 10px; padding: 20px; margin-bottom: 24px; position: relative; overflow: hidden; }
.car-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--lock), var(--cyan), var(--lock)); }
.car-section-title { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--lock); margin-bottom: 4px; letter-spacing: 0.5px; }
.car-section-sub { font-size: 11px; color: var(--text2); margin-bottom: 18px; font-family: var(--font-mono); }
.car-form { background: var(--card2); border: 1px solid var(--border); border-radius: 8px; padding: 16px; margin-bottom: 20px; }
.car-form-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--lock); margin-bottom: 14px; letter-spacing: 0.5px; }
.car-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.car-input { width: 100%; padding: 9px 13px; background: var(--bg3); border: 1px solid var(--border2); border-radius: 6px; color: var(--text); font-size: 12px; font-family: var(--font-mono); outline: none; transition: var(--transition); }
.car-input:focus { border-color: var(--lock); color: var(--lock); }
.car-input::placeholder { color: var(--text3); }
.car-textarea { width: 100%; padding: 9px 13px; background: var(--bg3); border: 1px solid var(--border2); border-radius: 6px; color: var(--text); font-size: 12px; font-family: var(--font-mono); outline: none; resize: vertical; min-height: 70px; transition: var(--transition); }
.car-textarea:focus { border-color: var(--lock); }
.car-img-upload { width: 100%; padding: 16px; background: var(--bg3); border: 1px dashed var(--border2); border-radius: 6px; text-align: center; cursor: pointer; transition: var(--transition); font-size: 12px; color: var(--text3); font-family: var(--font-mono); }
.car-img-upload:hover { border-color: var(--lock); color: var(--lock); }
.car-submit { width: 100%; padding: 11px; background: var(--lock); border: none; border-radius: 6px; color: #000; font-weight: 700; font-size: 13px; cursor: pointer; font-family: var(--font-display); transition: var(--transition); margin-top: 10px; letter-spacing: 0.5px; }
.car-submit:hover { box-shadow: 0 0 20px var(--lock-glow); }
.car-filter-bar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.car-filter { padding: 6px 14px; border-radius: 4px; font-size: 11px; font-weight: 600; cursor: pointer; border: 1px solid var(--border2); background: var(--card2); color: var(--text3); font-family: var(--font-mono); transition: var(--transition); }
.car-filter.active, .car-filter:hover { border-color: var(--lock); color: var(--lock); background: var(--lock-dim); }
.car-listings { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.car-card { background: var(--card2); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: var(--transition); position: relative; }
.car-card:hover { transform: translateY(-3px); box-shadow: 0 4px 20px var(--lock-dim); border-color: var(--border2); }
.car-card-img { width: 100%; height: 160px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 50px; }
.car-card-img img { width: 100%; height: 160px; object-fit: cover; }
.car-card-body { padding: 12px; }
.car-card-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; font-family: var(--font-mono); }
.car-card-price { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--lock); margin-bottom: 6px; text-shadow: 0 0 8px var(--lock-glow); }
.car-card-info { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 7px; }
.car-badge { font-size: 10px; background: var(--bg3); border: 1px solid var(--border); border-radius: 3px; padding: 2px 6px; color: var(--text2); font-family: var(--font-mono); }
.car-card-desc { font-size: 11px; color: var(--text2); margin-bottom: 8px; line-height: 1.5; font-family: var(--font-mono); }
.car-card-contact { display: flex; gap: 6px; }
.car-wa-btn { flex: 1; padding: 7px; background: rgba(0,255,136,0.1); border: 1px solid var(--border2); border-radius: 6px; color: var(--lock); font-weight: 700; font-size: 11px; cursor: pointer; font-family: var(--font-mono); text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 4px; transition: var(--transition); }
.car-wa-btn:hover { background: var(--lock); color: #000; }
.car-call-btn { flex: 1; padding: 7px; background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; color: var(--text3); font-weight: 600; font-size: 11px; cursor: pointer; font-family: var(--font-mono); text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 4px; transition: var(--transition); }
.car-call-btn:hover { border-color: var(--lock); color: var(--lock); }
.car-new-badge { position: absolute; top: 10px; left: 10px; background: var(--lock); color: #000; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 3px; font-family: var(--font-mono); }
.car-preview-imgs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.car-preview-img { width: 60px; height: 60px; object-fit: cover; border-radius: 5px; border: 1px solid var(--border2); }

/* ===== FOOTER ===== */
.dl-footer { background: var(--bg2); border-top: 1px solid var(--border2); padding: 26px 20px 14px; position: relative; }
.dl-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--lock), transparent); }
.dl-footer-inner { max-width: 1300px; margin: 0 auto; }
.dl-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 18px; }
.dl-fb-name { font-family: var(--font-display); font-size: 14px; font-weight: 900; color: var(--lock); margin-bottom: 5px; letter-spacing: 1px; text-shadow: 0 0 10px var(--lock-glow); }
.dl-fc h4 { font-size: 10px; font-weight: 700; color: var(--text3); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-mono); }
.dl-fc a { display: block; font-size: 11px; color: var(--text3); text-decoration: none; margin-bottom: 5px; font-family: var(--font-mono); transition: color 0.15s; }
.dl-fc a:hover { color: var(--lock); }
.dl-footer-bottom { border-top: 1px solid var(--border); padding-top: 12px; font-size: 10px; text-align: center; color: var(--text3); font-family: var(--font-mono); }
.dl-security-badges { display: flex; justify-content: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.dl-sbadge { font-size: 10px; color: var(--lock2); background: var(--lock-dim); padding: 3px 9px; border-radius: 4px; border: 1px solid var(--border2); font-family: var(--font-mono); }

/* ===== QR SECTION ===== */
.dl-qr-section { background: var(--bg2); border-top: 1px solid var(--border); padding: 24px; text-align: center; position: relative; }
.dl-qr-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 1px; background: linear-gradient(90deg, transparent, var(--lock), transparent); }

/* ===== LIGHT MODE ===== */
body.dl-light { --bg: #f0fff4; --bg2: #fff; --bg3: #f0fff4; --card: #fff; --card2: #f0fff4; --border: rgba(0,180,80,0.12); --border2: rgba(0,180,80,0.2); --text: #0a2018; --text2: #2d6040; --text3: #5a8a6a; }
body.dl-light .dl-topbar { background: #0a2018; }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) { .dl-wrap { flex-direction: column; } .dl-sidebar { width: 100%; } .dl-hero-cta { min-width: 100%; } }
@media(max-width:700px) { .dl-hdr-btns .dl-btn:not(.gold) { display: none; } .dl-footer-top { grid-template-columns: 1fr 1fr; } .dl-feat-grid { grid-template-columns: 1fr; } .dl-grid { grid-template-columns: repeat(2,1fr); } .dl-chat-window { width: calc(100vw - 32px); right: 16px; } .dl-hero-inner { flex-direction: column; } }
@media(max-width:420px) { .dl-grid { grid-template-columns: 1fr; } .dl-stats .dl-stat:nth-child(n+4) { display: none; } }
