:root{
  --bg:#05070f;
  --card:#0d1119;
  --card-hover:#161f2e;
  --muted:#64748b;
  --muted-bright:#94a3b8;
  --text:#f1f5f9;
  --text-dim:#94a3b8;
  --brand:#22c55e;
  --brand-glow:#22c55e;
  --danger:#ef4444;
  --success:#22c55e;
  --warning:#f59e0b;
  --info:#3b82f6;
  --border:rgba(148,163,184,.12);
  --border-hover:rgba(148,163,184,.25);
  --shadow: 0 10px 40px rgba(0,0,0,.5);
  --shadow-glow: 0 0 40px rgba(34,197,94,.15);
  --section-spacing:72px;
}
*{box-sizing:border-box}
html{height:100%; scroll-padding-top:80px}
body{
  margin:0;
  padding-top:72px;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(34,197,94,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(139,92,246,.05) 0%, transparent 50%),
    var(--bg);
  background-attachment: fixed;
  color:var(--text);
  line-height:1.6;
}
a{color:inherit; text-decoration:none; transition: color .2s ease}
a:hover{color:var(--brand)}
.container{max-width:1200px; margin:0 auto; padding:24px}

/* ===== HEADER ===== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:
    linear-gradient(90deg, rgba(22,163,74,.08) 0%, rgba(5,7,15,.95) 35%, rgba(5,7,15,.95) 65%, rgba(37,99,235,.08) 100%),
    rgba(5,7,15,.95);
  backdrop-filter: blur(20px);
  border-bottom:1px solid var(--border);
  padding:0 24px;
  height:72px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
html{
  scroll-padding-top:80px;
}
.header-inner{
  max-width:1200px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}

/* ===== ADMIN TABS ===== */
.tabs{
  margin-bottom: 20px; display:flex; gap:8px; margin-top:24px; border-bottom:1px solid var(--border); padding-bottom:16px; overflow-x:auto;
}
.tabs a{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 18px; border-radius:8px;
  font-size:14px; font-weight:500; color:var(--muted-bright);
  white-space:nowrap; transition:all .2s;
}
.tabs a:hover{
  background: rgba(255,255,255,.05); color:var(--text);
}
.tabs a.active{
  background: var(--brand); color:#fff; font-weight:600;
}
.header-logo img{max-height:48px; width:auto; display:block}
.header-logo{
  transition: transform .2s ease;
}
.header-logo:hover{
  transform: translateY(-1px);
}

/* ===== HERO SPLIT LAYOUT ===== */
.hero-split{
  display:grid;
  grid-template-columns: 1fr 380px;
  gap:40px;
  align-items:start;
  padding:60px 0 80px;
  max-width:1400px;
  margin:0 auto;
}
.hero-content{
  padding-right:40px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 20px;
  background: rgba(34,197,94,.1);
  border:1px solid rgba(34,197,94,.3);
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  color:var(--brand);
  margin-bottom:24px;
}
.badge-pulse{
  width:8px;
  height:8px;
  background:var(--brand);
  border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.5;transform:scale(1.2)}
}
.hero-split h1{
  font-size:56px;
  font-weight:800;
  line-height:1.1;
  margin:0 0 24px;
  color:#fff;
}
.hero-split h1 .gradient-text{
  background: linear-gradient(135deg, var(--brand), #4ade80, #22c55e);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-desc{
  font-size:18px;
  line-height:1.7;
  color:var(--muted-bright);
  margin:0 0 32px;
  max-width:520px;
}

/* ===== STATS CARDS ===== */
.stats-row{
  display:flex;
  gap:48px;
  margin-bottom:32px;
  max-width:700px;
}
.stat-item{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.stat-label{
  font-size:13px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-weight:600;
}
.stat-value{
  font-size:28px;
  font-weight:800;
  color:#fff;
  letter-spacing:-0.5px;
}

/* ===== PRIZE FUND BADGE ===== */
.prize-fund-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  background: linear-gradient(135deg, rgba(139,92,246,.15) 0%, rgba(59,130,246,.15) 100%);
  border:1px solid rgba(139,92,246,.3);
  border-radius:12px;
  margin-top:16px;
}
.prize-fund-badge .prize-icon{
  font-size:20px;
}
.prize-fund-badge .prize-name{
  font-size:14px;
  font-weight:600;
  color:#fff;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator{
  display:inline-flex;
  align-items:center;
  gap:16px;
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:2px;
  cursor:pointer;
  margin-top:32px;
  transition:color .3s ease;
}
.scroll-indicator:hover{
  color:#fff;
}
.scroll-text{
  position:relative;
}
.scroll-text::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:1px;
  background:var(--brand);
  transition:width .3s ease;
}
.scroll-indicator:hover .scroll-text::after{
  width:100%;
}
.scroll-line{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.scroll-dot{
  width:4px;
  height:4px;
  background:var(--brand);
  border-radius:50%;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot{
  0%{opacity:1; transform:translateY(0);}
  50%{opacity:0.3; transform:translateY(8px);}
  100%{opacity:1; transform:translateY(0);}
}
.hero-kpis{
  display:flex;
  align-items:center;
  gap:32px;
  margin-bottom:40px;
  padding:24px;
  background: rgba(255,255,255,.03);
  border-radius:16px;
  border:1px solid var(--border);
}
.kpi-item{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.kpi-label{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:600;
}
.kpi-value{
  font-size:28px;
  font-weight:800;
  color:#fff;
}
.kpi-divider{
  width:1px;
  height:40px;
  background:var(--border);
}
.hero-actions{
  display:flex;
  gap:16px;
  margin-bottom:32px;
}
.winner-banner{
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:16px 24px;
  background: linear-gradient(135deg, rgba(250,204,21,.15), rgba(34,197,94,.1));
  border:1px solid rgba(250,204,21,.3);
  border-radius:16px;
}
.winner-icon{
  font-size:32px;
}
.winner-content{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.winner-label{
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:1px;
}
.winner-name{
  font-size:18px;
  font-weight:700;
  color:#facc15;
}
.winner-votes{
  font-size:13px;
  color:var(--muted);
}

/* ===== HERO LEADERBOARD SIDEBAR ===== */
.hero-sidebar{
  position:sticky;
  top:96px;
}
.leaderboard-card{
  background: rgba(13,17,25,.8);
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  backdrop-filter: blur(20px);
}
.leaderboard-header{
  margin-bottom:20px;
}
.leaderboard-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:4px;
}
.trophy-icon{
  font-size:24px;
}
.leaderboard-title h3{
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin:0;
}
.leaderboard-subtitle{
  font-size:13px;
  color:var(--muted);
  margin-left:34px;
}
.leaderboard-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}
.leaderboard-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  background: rgba(255,255,255,.03);
  border-radius:14px;
  transition:all .2s;
}
.leaderboard-item:hover{
  background: rgba(255,255,255,.06);
  transform:translateX(4px);
}
.leaderboard-item.rank-1{
  background: linear-gradient(90deg, rgba(250,204,21,.15), rgba(250,204,21,.05));
  border:1px solid rgba(250,204,21,.3);
}
.rank-badge{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  background: rgba(255,255,255,.08);
  color:var(--muted-bright);
}
.rank-1 .rank-badge{
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color:#000;
}
.rank-2 .rank-badge{
  background: #94a3b8;
  color:#000;
}
.rank-3 .rank-badge{
  background: #b45309;
  color:#fff;
}
.dex-info{
  flex:1;
  min-width:0;
}
.dex-name{
  font-size:14px;
  font-weight:600;
  color:#fff;
  display:block;
  margin-bottom:6px;
}
.rank-1 .dex-name{color:#facc15;}
.vote-bar{
  height:4px;
  background: rgba(255,255,255,.08);
  border-radius:2px;
  overflow:hidden;
}
.vote-bar-fill{
  height:100%;
  background: linear-gradient(90deg, var(--brand), #4ade80);
  border-radius:2px;
  transition:width .5s ease;
}
.rank-1 .vote-bar-fill{background: linear-gradient(90deg, #facc15, #f59e0b);}
.vote-count{
  font-size:14px;
  font-weight:700;
  color:var(--brand);
  white-space:nowrap;
}
.rank-1 .vote-count{color:#facc15;}
.leaderboard-empty{
  text-align:center;
  padding:30px 20px;
}
.leaderboard-empty .empty-icon{
  font-size:40px;
  margin-bottom:12px;
  display:block;
}
.leaderboard-empty p{
  font-size:14px;
  color:var(--muted);
  margin:0 0 4px;
}
.leaderboard-empty .empty-hint{
  font-size:12px;
  color:var(--muted);
}
.leaderboard-footer{
  padding-top:16px;
  border-top:1px solid var(--border);
}

/* ===== BTN GHOST ===== */
.btn-ghost{
  background: transparent;
  border:1px solid var(--border);
  color:var(--muted-bright);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.05);
  border-color: var(--border-hover);
  color:#fff;
}

/* ===== DEX GRID SECTION ===== */
.dex-section{
  padding:60px 0 100px;
  max-width:1400px;
  margin:0 auto;
}
.lanes-hero{
  position:relative;
  max-width:1400px;
  margin:24px auto 24px;
  padding:56px 0 20px;
  overflow:visible;
}
.lanes-hero::before{
  content:'';
  position:absolute;
  inset:-80px -40px -20px -40px;
  background:
    radial-gradient(ellipse 60% 45% at 18% 8%, rgba(34,197,94,.12) 0%, transparent 70%),
    radial-gradient(ellipse 52% 40% at 84% 14%, rgba(59,130,246,.10) 0%, transparent 72%),
    radial-gradient(ellipse 45% 35% at 50% 100%, rgba(14,165,233,.07) 0%, transparent 78%);
  filter: blur(6px);
  pointer-events:none;
}
.lanes-hero .mint-lanes-intro{
  position:relative;
  z-index:1;
  margin:0 0 26px;
}
.lanes-hero-copy{
  position:relative;
  z-index:1;
  max-width:980px;
  margin:0 auto 30px;
  padding-right:0;
  text-align:center;
}
.lanes-hero-copy .hero-badge{
  margin:0 auto 22px;
}
.lanes-hero-copy h1{
  margin:0 0 18px;
}
.lanes-hero-copy .hero-desc{
  max-width:760px;
  margin:0 auto;
}
.lanes-hero .mint-lanes-grid{
  position:relative;
  z-index:1;
}
.lanes-hero .mint-lane-card{
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.mint-lanes-intro{
  margin:0 0 22px;
  text-align:center;
}
.mint-lanes-kicker{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  padding:10px 18px;
  border:1px solid var(--border);
  border-radius:12px;
  background:rgba(255,255,255,.03);
  margin-bottom:12px;
}
.mint-lanes-kicker strong{
  font-size:30px;
  line-height:1;
  letter-spacing:.3px;
  color:var(--text);
}
.mint-lanes-kicker span{
  font-size:13px;
  color:var(--muted);
}
.mint-lanes-intro h2{
  margin:0;
  font-size:50px;
  line-height:1.08;
  color:var(--text);
}
.mint-lanes-intro p{
  margin:10px 0 0;
  font-size:20px;
  color:var(--muted-bright);
}
.mint-lanes-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-bottom:32px;
}
.mint-lane-card{
  background:rgba(13,17,25,.72);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  backdrop-filter: blur(12px);
}
.mint-lane-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}
.mint-lane-head-link{
  display:block;
  color:inherit;
}
.mint-lane-head-link:hover .mint-lane-view-link{
  color:#fff;
}
.mint-lane-head h3{
  margin:0;
  color:#fff;
  font-size:22px;
  line-height:1.15;
}
.mint-lane-head span{
  font-size:11px;
  color:var(--muted);
  letter-spacing:1px;
  text-transform:uppercase;
}
.mint-lane-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}
.mint-lane-view-link{
  font-size:12px;
  color:var(--brand);
  font-weight:600;
}
.mint-lane-view-link:hover{
  color:#fff;
}
.mint-lane-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mint-lane-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.15);
  background:rgba(255,255,255,.02);
}
.mint-lane-item-link{
  color:inherit;
}
.mint-lane-item-link:hover{
  background:rgba(255,255,255,.05);
  border-color:var(--border-hover);
}
.mint-lane-item-main{
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
}
.mint-lane-logo{
  width:36px;
  height:36px;
  border-radius:999px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  flex-shrink:0;
  text-decoration:none;
  color:inherit;
}
.mint-lane-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.mint-lane-logo span{
  font-weight:700;
  color:var(--brand);
}
.mint-lane-meta{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.mint-lane-meta strong{
  color:#fff;
  font-size:17px;
  font-weight:650;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mint-lane-title-link{
  color:inherit;
  text-decoration:none;
}
.mint-lane-title-link:hover{
  color:var(--brand);
}
.mint-lane-meta small{
  color:var(--muted);
  font-size:12px;
}
.mint-lane-links{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:4px;
}
.mint-social-link{
  display:inline-flex;
  align-items:center;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(148,163,184,.08);
  color:var(--muted-bright);
  text-decoration:none;
  font-size:11px;
  font-weight:600;
  line-height:1.2;
}
.mint-social-link:hover{
  color:#fff;
  border-color:var(--border-hover);
  background:rgba(148,163,184,.14);
}
.mint-vote-btn{
  background:linear-gradient(135deg, rgba(59,130,246,.35), rgba(14,165,233,.25));
  border-color:rgba(59,130,246,.45);
  color:#e0f2fe;
}
.mint-vote-btn:hover{
  background:linear-gradient(135deg, rgba(59,130,246,.45), rgba(14,165,233,.32));
  border-color:rgba(59,130,246,.7);
}
.mint-lane-empty{
  border:1px dashed rgba(148,163,184,.35);
  border-radius:12px;
  padding:14px;
  color:var(--muted);
  font-size:14px;
}
.mint-lane-footer{
  margin-top:12px;
}
.section-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
  flex-wrap:wrap;
  gap:20px;
}
.section-title h2{
  font-size:32px;
  font-weight:700;
  color:#fff;
  margin:0 0 8px;
}
.section-title p{
  font-size:16px;
  color:var(--muted);
  margin:0;
}
.section-actions{
  display:flex;
  gap:12px;
  align-items:center;
}
.section-actions .btn{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.search-box{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 20px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius:12px;
  flex:1;
  max-width:300px;
}
.search-box{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 20px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius:12px;
  min-width:280px;
}
.search-box svg{
  color:var(--muted);
}
.search-box input{
  background:none;
  border:none;
  outline:none;
  color:#fff;
  font-size:14px;
  width:100%;
}
.search-box input::placeholder{
  color:var(--muted);
}
.lane-search-box{
  min-width:360px;
  max-width:440px;
}
.filter-select{
  padding:12px 20px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius:12px;
  color:#fff;
  font-size:14px;
  cursor:pointer;
  outline:none;
}
.filter-select:focus{
  border-color:var(--brand);
}
.dex-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap:24px;
}

/* ===== DEX CARD ===== */
.dex-card{
  background: rgba(13,17,25,.6);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  transition:all .3s ease;
}
.dex-card:hover{
  transform:translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 25px 60px rgba(0,0,0,.4), var(--shadow-glow);
}
.dex-card.dex-leading{
  border-color: rgba(250,204,21,.5);
  background: linear-gradient(180deg, rgba(250,204,21,.05) 0%, rgba(13,17,25,.6) 100%);
}
.dex-card.dex-leading:hover{
  border-color: rgba(250,204,21,.8);
  box-shadow: 0 25px 60px rgba(0,0,0,.4), 0 0 30px rgba(250,204,21,.15);
}
.dex-card-inner{
  padding:24px;
}
.dex-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.dex-logo{
  width:52px;
  height:52px;
  border-radius:14px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex-shrink:0;
}
.dex-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.dex-logo span{
  font-size:20px;
  font-weight:700;
  color:var(--brand);
}
.dex-meta{
  flex:1;
  min-width:0;
}
.dex-meta h3{
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin:0 0 6px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.dex-badge{
  display:inline-block;
  padding:4px 10px;
  border-radius:6px;
  font-size:11px;
  font-weight:600;
  background: rgba(148,163,184,.1);
  color:var(--muted-bright);
}
.dex-badge.featured{
  background: rgba(34,197,94,.15);
  color:#4ade80;
}
.dex-link{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: rgba(34,197,94,.1);
  border:1px solid rgba(34,197,94,.2);
  color:var(--brand);
  transition:all .2s;
  flex-shrink:0;
}
.dex-link:hover{
  background: var(--brand);
  color:#fff;
  transform:translateX(4px);
}
.dex-description{
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
  margin:0 0 20px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.dex-quick-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:-6px 0 16px;
}
.dex-quick-links a{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(148,163,184,.08);
  color:var(--muted-bright);
  text-decoration:none;
  font-size:12px;
  font-weight:600;
}
.dex-quick-links a:hover{
  color:#fff;
  border-color:var(--border-hover);
}
.dex-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.vote-info{
  display:flex;
  align-items:center;
  gap:12px;
}
.vote-count{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:600;
  color:var(--brand);
}
.vote-count svg{
  color:var(--brand);
}
.vote-percentage{
  font-size:12px;
  color:var(--muted);
}
.vote-progress{
  flex:1;
  max-width:100px;
}
.progress-bar{
  height:6px;
  background: rgba(255,255,255,.08);
  border-radius:3px;
  overflow:hidden;
}
.progress-fill{
  height:100%;
  background: linear-gradient(90deg, var(--brand), #4ade80);
  border-radius:3px;
  transition:width .5s ease;
}

/* ===== EMPTY STATE ===== */
.empty-state{
  grid-column: 1 / -1;
  text-align:center;
  padding:80px 40px;
  background: rgba(13,17,25,.4);
  border:1px dashed var(--border);
  border-radius:20px;
}
.empty-state .empty-icon{
  font-size:64px;
  margin-bottom:20px;
}
.empty-state h3{
  font-size:24px;
  color:#fff;
  margin:0 0 8px;
}
.empty-state p{
  color:var(--muted);
  margin:0 0 24px;
}

/* ===== HOW IT WORKS ===== */
.how-section{
  position:relative;
  padding:var(--section-spacing) 0;
  margin:0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(34,197,94,.08) 0%, transparent 70%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.how-header{
  position:relative;
  text-align:center;
  margin-bottom:60px;
}
.how-header h2{
  font-size:40px;
  font-weight:700;
  color:#fff;
  margin:0 0 12px;
}
.how-header p{
  font-size:18px;
  color:var(--muted);
}
.how-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  max-width:1000px;
  margin:0 auto;
}
.how-card{
  position:relative;
  padding:32px;
  background: rgba(13,17,25,.6);
  border:1px solid var(--border);
  border-radius:20px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.how-icon{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(34,197,94,.1));
  font-size:24px;
  font-weight:700;
  color:var(--brand);
}
.how-content h3{
  font-size:20px;
  font-weight:700;
  color:#fff;
  margin:0 0 8px;
}
.how-content p{
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
  margin:0;
}
.how-arrow{
  position:absolute;
  right:-28px;
  top:50%;
  transform:translateY(-50%);
  color:var(--brand);
  opacity:0.3;
}

/* ===== ABOUT SECTION ===== */
.about-section{
  position:relative;
  padding:var(--section-spacing) 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(34,197,94,.08) 0%, transparent 70%);
}
.about-container{
  position:relative;
  max-width:1200px;
  margin:0 auto;
}
.about-header{
  text-align:center;
  margin-bottom:60px;
}
.about-header h2{
  font-size:40px;
  font-weight:700;
  color:#fff;
  margin:0 0 12px;
}
.about-header p{
  font-size:18px;
  color:var(--muted);
}
.features-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
}
.feature-card{
  padding:32px;
  background: rgba(13,17,25,.6);
  border:1px solid var(--border);
  border-radius:20px;
  text-align:center;
  transition:all .3s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  border-color: var(--border-hover);
}
.feature-icon{
  font-size:48px;
  margin-bottom:20px;
}
.feature-card h3{
  font-size:20px;
  font-weight:700;
  color:#fff;
  margin:0 0 12px;
}
.feature-card p{
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
  margin:0;
}

/* ===== CONTACT SECTION ===== */
.contact-section{
  position:relative;
  padding:var(--section-spacing) 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(34,197,94,.08) 0%, transparent 70%);
  border-top:1px solid var(--border);
}
.contact-container{
  max-width:600px;
  margin:0 auto;
  text-align:center;
}
.contact-content h2{
  font-size:40px;
  font-weight:700;
  color:#fff;
  margin:0 0 16px;
}
.contact-content p{
  font-size:18px;
  color:var(--muted);
  margin:0 0 40px;
}

.header-nav{
  display:flex; gap:8px;
  flex:1;
  justify-content:center;
}
.header-nav a{
  padding:10px 20px;
  border-radius:10px;
  font-size:14px; font-weight:500; color:var(--muted-bright);
  transition: all .2s ease;
}
.header-nav a:hover{
  background:rgba(148,163,184,.12);
  color:var(--text);
}
.header-actions{
  display:flex; align-items:center; gap:12px;
  flex-shrink:0;
}
.user-menu{
  display:flex; align-items:center; gap:10px;
}
.user-email{
  font-size:13px; color:var(--muted);
  max-width:180px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.mobile-toggle{
  display:none; flex-direction:column; gap:5px;
  padding:10px; background:none; border:none; cursor:pointer;
}
.mobile-toggle span{
  width:24px; height:2px; background:var(--text);
  border-radius:2px; transition: all .3s ease;
}
.mobile-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.mobile-toggle.active span:nth-child(2){opacity:0}
.mobile-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.mobile-menu{
  display:none; position:fixed; top:72px; left:0; right:0;
  background: rgba(5,7,15,.98);
  border-bottom:1px solid var(--border);
  padding:24px;
  z-index:999;
}
.mobile-menu.open{display:block}
.mobile-menu nav{
  display:flex; flex-direction:column; gap:8px;
}
.mobile-menu a{
  padding:14px 16px;
  border-radius:12px;
  font-size:16px; font-weight:500; color:var(--text);
  background: rgba(255,255,255,.03);
  transition: all .2s ease;
}
.mobile-menu a:hover{background: rgba(255,255,255,.08); color:#fff}
.mobile-menu hr{border:none; height:1px; background:var(--border); margin:12px 0;}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

/* ===== NAVIGATION ===== */
.nav{
  display:flex;
  align-items:center; justify-content:space-between;
  padding:14px 24px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(13,17,25,.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 8px 30px rgba(0,0,0,.4);
  margin-bottom:8px;
}
.nav .brand{display:flex; align-items:center; gap:12px}
.nav .brand img{max-height:40px; width:auto; display:block}
.nav-links{display:flex; gap:8px}
.nav-links a{
  padding:10px 16px;
  border-radius:10px;
  font-size:14px; font-weight:500; color:var(--muted-bright);
  transition: all .2s ease;
}
.nav-links a:hover{background:rgba(255,255,255,.05); color:var(--text)}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 18px; border-radius:12px; border:1px solid var(--border);
  background: rgba(148,163,184,.06);
  cursor:pointer; color:white; font-size:14px; font-weight:500;
  transition: all .25s cubic-bezier(0.4,0,0.2,1);
}
.btn:hover{
  background: rgba(148,163,184,.12);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(34,197,94,.1));
  border-color: rgba(34,197,94,.4);
  color:#bbf7d0;
}
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(34,197,94,.3), rgba(34,197,94,.2));
  box-shadow: 0 8px 25px rgba(34,197,94,.25);
}
.btn.danger{
  background: rgba(239,68,68,.1);
  border-color: rgba(239,68,68,.35);
  color:#fecaca;
}
.btn.danger:hover{background: rgba(239,68,68,.2)}
.btn-sm{padding:8px 12px; font-size:13px}
.btn-lg{padding:16px 28px; font-size:16px}

/* ===== GRID SYSTEM ===== */
.grid{display:grid; gap:20px}
.grid.cards{grid-template-columns: repeat(12, 1fr)}
.grid-2{grid-template-columns: repeat(2, 1fr)}
.grid-3{grid-template-columns: repeat(3, 1fr)}
.grid-4{grid-template-columns: repeat(4, 1fr)}

@media (max-width: 1200px){ 
  .grid-4{grid-template-columns: repeat(3, 1fr)}
  .grid.cards{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 900px){ 
  .grid-4{grid-template-columns: repeat(2, 1fr)}
  .grid-3{grid-template-columns: repeat(2, 1fr)}
  .grid.cards{grid-template-columns: 1fr}
}
@media (max-width: 640px){ 
  .grid-2,.grid-3,.grid-4{grid-template-columns: 1fr}
  .card{grid-column: span 12}
  .container{padding:16px}
}

/* ===== CARDS ===== */
.card{
  grid-column: span 4;
  border:1px solid var(--border);
  background: rgba(13,17,25,.7);
  border-radius:20px; padding:24px;
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: all .35s cubic-bezier(0.4,0,0.2,1);
}
.card:hover{
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), var(--shadow-glow);
}
.card-glow{
  position:relative;
}
.card-glow::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  padding:1px;
  background: linear-gradient(135deg, rgba(34,197,94,.3), rgba(59,130,246,.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity:0;
  transition: opacity .3s ease;
}
.card-glow:hover::before{opacity:1}

/* DEX Card */
.card.dex-card{
  padding:20px;
}
.card.dex-card .card-header{
  margin-bottom:14px;
}
.card.dex-card .logo{
  width:48px; height:48px;
  border-radius:12px;
}
.card.dex-card h3{
  font-size:17px; font-weight:700; color:#fff; margin:0;
}
.card.dex-card .description{
  font-size:14px; color:var(--muted);
  line-height:1.6; margin:0 0 14px;
}
.card.dex-card .btn-open{
  padding:8px 14px;
  font-size:13px;
  border-radius:8px;
  background: rgba(34,197,94,.1);
  border:1px solid rgba(34,197,94,.3);
  color:var(--brand);
  font-weight:600;
  transition:all .2s;
}
.card.dex-card .btn-open:hover{
  background: var(--brand);
  color:#fff;
  transform: translateX(4px);
}
.card.dex-card .btn-open span{
  margin-left:4px;
  transition:transform .2s;
}
.card.dex-card .btn-open:hover span{
  transform: translateX(4px);
}
.card.dex-card .kpi{
  margin-top:12px;
}
.card.dex-card .badge{
  font-size:11px; padding:4px 8px; border-radius:6px;
}
.card.dex-card .badge-featured{
  background: rgba(34,197,94,.15); color:#4ade80;
}
.card.dex-card .badge-listing{
  background: rgba(148,163,184,.15); color:var(--muted-bright);
}
.card.dex-card .pill-votes{
  background: rgba(59,130,246,.1); color:#60a5fa;
  font-size:12px; padding:6px 12px; border-radius:8px;
}
.card.dex-card .pill-leading{
  background: rgba(250,204,21,.15); color:#facc15;
  font-size:12px; padding:6px 12px; border-radius:8px;
}
.card.dex-card .bar{
  height:6px; background: rgba(255,255,255,.08);
  border-radius:3px; overflow:hidden;
}
.card.dex-card .bar span{
  display:block; height:100%;
  background: linear-gradient(90deg, var(--brand), #4ade80);
  border-radius:3px;
  transition: width .5s ease;
}
.card.dex-card.card-leading{
  border-color: rgba(250,204,21,.3);
  background: linear-gradient(180deg, rgba(250,204,21,.05) 0%, rgba(13,17,25,.7) 100%);
}

/* ===== STAT CARDS ===== */
.stat-card{
  padding:28px;
}
.stat-card .stat-icon{
  width:56px; height:56px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  margin-bottom:20px;
}
.stat-card .stat-icon.green{background: rgba(34,197,94,.15); color:var(--brand)}
.stat-card .stat-icon.blue{background: rgba(59,130,246,.15); color:#3b82f6}
.stat-card .stat-icon.purple{background: rgba(139,92,246,.15); color:#8b5cf6}
.stat-card .stat-icon.orange{background: rgba(245,158,11,.15); color:#f59e0b}
.stat-card .stat-value{
  font-size:42px; font-weight:800; color:#fff;
  line-height:1.1; margin-bottom:8px;
  letter-spacing:-1px;
}
.stat-card .stat-label{
  font-size:14px; color:var(--muted);
  text-transform:uppercase; letter-spacing:1px;
  font-weight:600;
}
.stat-card .stat-change{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:12px; padding:6px 12px;
  border-radius:8px; font-size:13px; font-weight:600;
}
.stat-card .stat-change.positive{background: rgba(34,197,94,.1); color:#4ade80}
.stat-card .stat-change.negative{background: rgba(239,68,68,.1); color:#f87171}

/* ===== FORM ELEMENTS ===== */
.muted{color:var(--muted)}
.row{display:flex; gap:16px; align-items:center; flex-wrap:wrap}
.col{display:flex; flex-direction:column; gap:8px}
.logo{
  width:52px; height:52px; border-radius:14px; border:1px solid var(--border);
  background: rgba(148,163,184,.08);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.logo img{width:100%; height:100%; object-fit:cover}
.kpi{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

/* ===== BADGES ===== */
.badge{
  display:inline-flex; gap:8px; align-items:center; padding:6px 12px;
  border-radius:999px; font-size:12px; font-weight:600;
  border:1px solid var(--border);
}
.badge-success{background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.3); color:#4ade80}
.badge-warning{background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.3); color:#fcd34d}
.badge-danger{background: rgba(239,68,68,.15); border-color: rgba(239,68,68,.3); color:#f87171}
.badge-info{background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.3); color:#60a5fa}
.badge-featured{background: linear-gradient(135deg, rgba(34,197,94,.25), rgba(16,185,129,.25)); border-color: rgba(34,197,94,.6); color:#bbf7d0}
.badge-listing{background: rgba(148,163,184,.1); color: var(--muted)}

/* ===== FORMS ===== */
.input, textarea, select{
  width:100%; padding:14px 16px; border-radius:12px;
  border:1px solid var(--border); background: rgba(148,163,184,.06);
  color:var(--text); outline:none; font-size:14px;
  transition: all .2s ease;
}
.input:focus, textarea:focus, select:focus{
  border-color: rgba(34,197,94,.5);
  background: rgba(148,163,184,.1);
  box-shadow: 0 0 0 3px rgba(34,197,94,.1);
}
label{display:block; font-size:13px; color:var(--muted); margin:16px 0 8px; font-weight:500}

/* ===== TABLES ===== */
.table{width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius:14px; border:1px solid var(--border)}
.table th,.table td{padding:14px 16px; border-bottom:1px solid var(--border); font-size:14px; vertical-align:middle}
.table th{color:var(--muted); font-weight:600; text-align:left; background: rgba(148,163,184,.04); font-size:12px; text-transform:uppercase; letter-spacing:0.5px}
.table tr:last-child td{border-bottom:none}
.table tbody tr{transition: background .2s ease}
.table tbody tr:hover{background: rgba(255,255,255,.02)}

/* ===== ALERTS ===== */
.alert{padding:16px 20px; border-radius:14px; border:1px solid var(--border); background: rgba(148,163,184,.08); color:var(--text)}
.alert.ok{border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.1); color:#bbf7d0}
.alert.err{border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.1); color:#fecaca}
.alert.info{border-color: rgba(59,130,246,.35); background: rgba(59,130,246,.1); color:#bfdbfe}
.alert.warning{border-color: rgba(245,158,11,.35); background: rgba(245,158,11,.1); color:#fcd34d}

hr{border:none; height:1px; background: var(--border); margin:24px 0}

/* ===== HERO SECTION ===== */
.hero{padding:60px 0 40px}
.hero h1{margin:0 0 16px; font-size:clamp(36px, 5vw, 56px); font-weight:800; letter-spacing:-0.03em; line-height:1.1}
.hero h1 span{display:block; background: linear-gradient(135deg, #22c55e, #3b82f6, #8b5cf6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text}
.hero p{margin:0; color:var(--muted-bright); font-size:18px; max-width:640px; line-height:1.7}

/* ===== HERO ULTRA (HOME) ===== */
.hero-ultra{
  position:relative;
  padding:100px 24px 80px;
  background:transparent;
  overflow:hidden;
  text-align:center;
}
.hero-ultra::before{
  content:"";
  position:absolute;
  top:-50%; left:50%; transform:translateX(-50%);
  width:100vw; height:100vw;
  background: radial-gradient(circle, rgba(34,197,94,.08) 0%, transparent 60%);
  pointer-events:none;
}
.hero-inner{max-width:900px; margin:0 auto; position:relative; z-index:2}
.hero-ultra h1{
  font-size:clamp(48px, 7vw, 80px);
  line-height:1.02;
  letter-spacing:-0.04em;
  margin-bottom:24px;
  font-weight:800;
}
.hero-ultra h1 span{
  display:inline-block;
  margin-top:8px;
  background: linear-gradient(135deg, #22c55e, #06b6d4, #3b82f6);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-desc{
  font-size:20px;
  line-height:1.7;
  color:var(--muted);
  max-width:680px;
  margin:0 auto 48px;
}

/* ===== HERO KPIs ===== */
.hero-kpis{
  margin-top:60px;
  display:flex;
  justify-content:center;
  gap:48px;
  flex-wrap:wrap;
}
.hero-kpis .pill{
  padding:20px 32px;
  background: rgba(13,17,25,.6);
  border:1px solid var(--border);
  border-radius:16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--muted);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}
.hero-kpis .pill:hover{
  border-color: rgba(34,197,94,.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.hero-kpis .pill strong{
  font-size:36px;
  font-weight:800;
  color:#fff;
  letter-spacing:-1px;
}
.hero-kpis .pill-highlight{
  background: linear-gradient(135deg, rgba(34,197,94,.15), rgba(59,130,246,.1));
  border-color: rgba(34,197,94,.3);
}
.hero-kpis .pill-highlight strong{
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ===== LEADERBOARD LAYOUT ===== */
.leaderboard-layout{
  max-width:1200px;
  margin:80px auto;
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap:32px;
}
@media (max-width: 1024px){ .leaderboard-layout{grid-template-columns:1fr} }

.leaderboard-card{
  position:relative;
  background: rgba(13,17,25,.8);
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.leaderboard-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events:none;
}
.leaderboard-card h3{
  font-size:22px; font-weight:700; color:#fff;
  margin:0 0 24px; position:relative;
}

/* ===== LEADERBOARD ROWS ===== */
.leaderboard-card .row.board{
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items:center;
  padding:18px 14px;
  border-radius:14px;
  margin-bottom:8px;
  background: rgba(255,255,255,.02);
  border:1px solid transparent;
  transition: all .25s ease;
}
.leaderboard-card .row.board:hover{
  background: rgba(255,255,255,.05);
  border-color: var(--border);
}
.leaderboard-card .row.board:first-child{
  background: linear-gradient(90deg, rgba(250,204,21,.15), rgba(250,204,21,.05), transparent 70%);
  border-color: rgba(250,204,21,.3);
  animation: winnerPulse 3s ease-in-out infinite;
}
.leaderboard-card .row.board:first-child strong{
  color:#facc15; font-size:18px;
}
.leaderboard-card .row.board:first-child .votes{
  color:#facc15; font-size:18px;
}
.leaderboard-card .row.board strong{
  font-size:16px; font-weight:600; color:#e2e8f0;
}
.leaderboard-card .votes{
  font-size:15px; font-weight:700; color:#fff;
}

/* ===== DEX PAGE: LANE LEADERBOARD ===== */
.lane-leaderboard{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:32px;
}
.lane-leaderboard-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid transparent;
  background:rgba(255,255,255,.02);
  transition:all .2s ease;
}
.lane-leaderboard-row:hover{
  background:rgba(255,255,255,.05);
  border-color:var(--border);
}
.lane-leaderboard-row .left{
  display:flex;
  align-items:center;
  min-width:0;
}
.lane-leaderboard-rank{
  margin-right:10px;
  min-width:18px;
  font-weight:700;
  color:var(--muted);
}
.lane-leaderboard-name{
  margin:0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-width:0;
  color:var(--text-dim);
}
.lane-leaderboard-name-text{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.lane-leaderboard-row .votes{
  font-weight:700;
  color:#fff;
}
.lane-leaderboard-row.is-current{
  background:linear-gradient(90deg, rgba(34,197,94,.16), rgba(34,197,94,.08));
  border-color:rgba(34,197,94,.35);
  box-shadow:0 8px 20px rgba(34,197,94,.12);
}
.lane-leaderboard-row.is-current .lane-leaderboard-rank{
  color:var(--brand);
}
.lane-leaderboard-row.is-current .lane-leaderboard-name,
.lane-leaderboard-row.is-current .votes{
  color:#fff;
}
.lane-leaderboard-footer{
  margin-top:8px;
}

@keyframes winnerPulse{
  0%, 100%{box-shadow: 0 0 20px rgba(250,204,21,.15)}
  50%{box-shadow: 0 0 40px rgba(250,204,21,.3)}
}

/* ===== LATEST VOTES ===== */
.latest-votes .vote-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-radius:12px;
  background: rgba(255,255,255,.03);
  margin-bottom:10px;
  border:1px solid transparent;
  transition: all .25s ease;
  animation: slideUp 0.4s ease forwards;
  opacity:0;
}
.latest-votes .vote-row:hover{
  background: rgba(255,255,255,.06);
  border-color: var(--border);
}
.latest-votes .vote-row:nth-child(1){animation-delay:0.05s}
.latest-votes .vote-row:nth-child(2){animation-delay:0.1s}
.latest-votes .vote-row:nth-child(3){animation-delay:0.15s}
.latest-votes .vote-row:nth-child(4){animation-delay:0.2s}
.latest-votes .vote-row:nth-child(5){animation-delay:0.25s}
.latest-votes .vote-row:nth-child(6){animation-delay:0.3s}

@keyframes slideUp{
  from{opacity:0; transform:translateY(10px)}
  to{opacity:1; transform:translateY(0)}
}
.latest-votes .left strong{display:block; font-size:15px; color:#fff}
.latest-votes .left small{display:block; font-size:12px; color:var(--muted); margin-top:2px}
.latest-votes .weight{
  font-size:16px; font-weight:700; color:#22c55e;
  text-shadow: 0 0 20px rgba(34,197,94,.4);
}

/* ===== HOW IT WORKS ===== */
.how-works.premium{
  max-width:1200px; margin:100px auto;
}
.how-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:20px; margin-bottom:32px;
}
.how-head h3{font-size:32px; font-weight:700; color:#fff; margin:0}
.how-head p{margin:0; font-size:15px; color:var(--muted); max-width:480px}

@media (max-width: 900px){ .how-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 640px){ .how-grid{grid-template-columns:1fr} }

.how-card{
  position:relative;
  padding:28px 24px;
  border-radius:20px;
  border:1px solid var(--border);
  background: rgba(13,17,25,.6);
  overflow:hidden;
  transition: all .3s ease;
}
.how-card:hover{
  transform: translateY(-6px);
  border-color: rgba(34,197,94,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.how-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events:none;
}
.how-num{
  position:absolute;
  top:10px; right:16px;
  font-size:64px; font-weight:900;
  color:rgba(255,255,255,.04);
  line-height:1;
  user-select:none;
}
.how-card strong{
  position:relative;
  display:block;
  font-size:17px; font-weight:700; color:#fff;
  margin-bottom:10px;
}
.how-card p{
  position:relative;
  margin:0;
  font-size:14px; color:var(--muted);
  line-height:1.6;
}
.how-card strong::after{
  content:"";
  display:block;
  width:48px; height:2px;
  margin-top:14px;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  border-radius:2px;
}

/* ===== DEX CARDS ===== */
.dex-card{transition: all .35s cubic-bezier(0.4,0,0.2,1)}
/* ===== PROGRESS BAR ===== */
.bar{
  margin-top:10px; height:6px;
  background: rgba(255,255,255,.1);
  border-radius:6px; overflow:hidden;
}
.bar span{
  display:block; height:100%;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  border-radius:6px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ===== FOOTER ===== */
.bar{
  margin-top:10px; height:6px;
  background: rgba(255,255,255,.1);
  border-radius:6px; overflow:hidden;
}
.bar span{
  display:block; height:100%;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  border-radius:6px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ===== FOOTER ===== */
.site-footer{
  margin-top:100px;
  padding:60px 24px 40px;
  border-top:1px solid var(--border);
  background: rgba(5,7,15,.8);
}
.footer-inner{
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap:40px; align-items:center;
}
@media (max-width: 900px){ .footer-inner{grid-template-columns:1fr; text-align:center} }

.footer-logo{display:flex; align-items:center; gap:12px; font-size:20px; font-weight:800; color:#fff}
.footer-logo img{max-height:36px}
.footer-desc{margin:12px 0 0; font-size:14px; color:var(--muted); line-height:1.7}

.footer-links{list-style:none; margin:0; padding:0; display:flex; gap:24px; justify-content:center}
@media (max-width: 900px){ .footer-links{justify-content:center} }
.footer-links a{font-size:14px; font-weight:500; color:var(--muted-bright); transition:color .2s ease}
.footer-links a:hover{color:#fff}

.footer-badges{display:flex; gap:10px; justify-content:flex-end}
@media (max-width: 900px){ .footer-badges{justify-content:center} }
.footer-copy{text-align:right; font-size:13px; color:var(--muted)}
@media (max-width: 900px){ .footer-copy{text-align:center} }

/* ===== ADMIN STYLES ===== */
.admin-layout{max-width:1400px; margin:0 auto; padding:32px}
.admin-header{margin-bottom:40px}
.admin-header h1{font-size:36px; font-weight:800; color:#fff; margin:0 0 8px}
.admin-header p{color:var(--muted); font-size:16px}

.admin-stats-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; margin-bottom:40px;
}
@media (max-width: 1200px){ .admin-stats-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 640px){ .admin-stats-grid{grid-template-columns:1fr} }

.admin-stat-card{
  background: rgba(13,17,25,.8);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  position:relative;
  overflow:hidden;
  transition: all .3s ease;
}
.admin-stat-card::before{
  content:"";
  position:absolute;
  top:0; right:0; width:120px; height:120px;
  background: radial-gradient(circle, rgba(34,197,94,.1) 0%, transparent 70%);
  pointer-events:none;
}
.admin-stat-card:hover{
  transform: translateY(-4px);
  border-color: rgba(34,197,94,.3);
}
.admin-stat-card .stat-icon{
  width:60px; height:60px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  font-size:28px; margin-bottom:20px;
  position:relative; z-index:1;
}
.admin-stat-card .stat-value{
  font-size:42px; font-weight:800; color:#fff;
  line-height:1; margin-bottom:8px; position:relative; z-index:1;
}
.admin-stat-card .stat-label{
  font-size:14px; color:var(--muted);
  text-transform:uppercase; letter-spacing:1px; font-weight:600;
}
.admin-stat-card .stat-detail{
  margin-top:16px; padding-top:16px; border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:var(--muted);
}
.admin-stat-card .stat-detail span:last-child{color:var(--brand); font-weight:600}

/* ===== ADMIN SECTIONS ===== */
.admin-section{
  background: rgba(13,17,25,.6);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  margin-bottom:32px;
}
.admin-section-header{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:24px;
}
.admin-section-title{font-size:22px; font-weight:700; color:#fff; margin:0}
.admin-section-title span{display:block; font-size:13px; color:var(--muted); font-weight:400; margin-top:4px}
.vote-boost-info{
  margin-bottom:20px;
  padding:14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(59,130,246,.08);
}
.vote-boost-lead{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.5;
  color:#dbeafe;
}
.vote-boost-token-wrap{
  margin:0 0 10px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}
.vote-boost-token-pill,
.vote-boost-token-inline,
.vote-boost-lead code{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(59,130,246,.35);
  background:rgba(15,23,42,.45);
  color:#bfdbfe;
  font-size:12px;
}
.vote-boost-token-pill,
.vote-boost-token-inline{
  max-width:100%;
  white-space:normal;
  word-break:break-all;
}
.vote-boost-note{
  font-size:14px;
  margin-bottom:12px;
  line-height:1.6;
}
.vote-boost-copy-btn{
  border:1px solid rgba(59,130,246,.45);
  background:rgba(30,64,175,.25);
  color:#dbeafe;
  font-size:12px;
  font-weight:700;
  padding:5px 12px;
  border-radius:999px;
  cursor:pointer;
  transition:all .2s ease;
}
.vote-boost-copy-btn:hover{
  background:rgba(37,99,235,.35);
  border-color:rgba(96,165,250,.7);
}
.vote-boost-copy-btn:focus-visible{
  outline:2px solid rgba(96,165,250,.9);
  outline-offset:2px;
}
.vote-boost-table{
  margin-top:10px;
}
.vote-boost-table th,
.vote-boost-table td{
  padding:10px 12px;
  font-size:12px;
}
.vote-boost-table th{
  letter-spacing:.4px;
}

/* ===== SIDEBAR LEADERBOARD (HOME) ===== */
.sidebar-leaderboard{
  background: linear-gradient(180deg, rgba(34,197,94,.08) 0%, rgba(13,17,25,.4) 100%);
  border:1px solid rgba(34,197,94,.2);
  border-radius:16px;
  padding:20px;
  margin-bottom:20px;
}
.leaderboard-header{
  display:flex; align-items:center; gap:10px;
  margin-bottom:16px;
}
.leaderboard-header .trophy{font-size:24px;}
.leaderboard-header h3{
  font-size:16px; font-weight:700; color:#fff; margin:0;
}
.leaderboard-header p{
  font-size:12px; color:var(--muted); margin:2px 0 0;
}
.leaderboard-item{
  display:flex; align-items:center; gap:12px;
  padding:12px;
  background: rgba(255,255,255,.03);
  border-radius:10px;
  margin-bottom:8px;
  transition:all .2s;
}
.leaderboard-item:hover{
  background: rgba(255,255,255,.06);
  transform: translateX(4px);
}
.leaderboard-item:last-child{margin-bottom:0}
.leaderboard-item.rank-1{
  background: linear-gradient(90deg, rgba(250,204,21,.15), transparent);
  border:1px solid rgba(250,204,21,.3);
}
.leaderboard-rank{
  width:28px; height:28px;
  display:flex; align-items:center; justify-content:center;
  border-radius:8px;
  font-size:13px; font-weight:700;
  background: rgba(255,255,255,.08);
  color:var(--muted-bright);
}
.rank-1 .leaderboard-rank{background: #facc15; color:#000;}
.rank-2 .leaderboard-rank{background: #94a3b8; color:#000;}
.rank-3 .leaderboard-rank{background: #b45309; color:#fff;}
.leaderboard-name{
  flex:1;
  font-size:14px; font-weight:600; color:#fff;
}
.rank-1 .leaderboard-name{color:#facc15;}
.leaderboard-votes{
  font-size:13px; font-weight:700; color:var(--brand);
}

/* ===== SIDEBAR LATEST VOTES ===== */
.sidebar-activity{
  background: rgba(13,17,25,.6);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
}
.activity-header{
  display:flex; align-items:center; gap:10px;
  margin-bottom:16px;
}
.activity-header .fire{font-size:24px;}
.activity-header h3{
  font-size:16px; font-weight:700; color:#fff; margin:0;
}
.activity-item{
  display:flex; align-items:center; gap:12px;
  padding:12px;
  background: rgba(255,255,255,.02);
  border-radius:10px;
  margin-bottom:8px;
}
.activity-item:last-child{margin-bottom:0}
.activity-avatar{
  width:36px; height:36px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700;
  background: var(--card-hover);
  color:var(--brand);
}
.activity-content{flex:1; min-width:0}
.activity-title{
  font-size:14px; font-weight:600; color:#fff;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.activity-time{
  font-size:12px; color:var(--muted);
}
.activity-weight{
  font-size:13px; font-weight:700; color:var(--brand);
  white-space:nowrap;
}

/* ===== EMPTY STATE ===== */
.empty-state{
  text-align:center; padding:60px 20px;
}
.empty-state-icon{
  font-size:64px; opacity:0.3; margin-bottom:20px;
}
.empty-state h3{font-size:20px; color:#fff; margin:0 0 8px}
.empty-state p{color:var(--muted); margin:0}

/* ===== LOADING ===== */
.loading{
  display:inline-block; width:20px; height:20px;
  border:2px solid var(--border);
  border-top-color: var(--brand);
  border-radius:50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 1100px){
  .header-nav{display:none}
  .header-actions{display:none}
  .mobile-toggle{display:flex}
  .site-header{padding:0 16px}
  .footer-inner{grid-template-columns: 1fr 1fr}
  .footer-brand{grid-column: span 2; max-width:none}
}
@media (max-width: 640px){
  .footer-inner{grid-template-columns: 1fr}
  .footer-brand{grid-column: span 1}
  .footer-bottom{flex-direction:column; text-align:center}
  .hero-ultra{padding:60px 16px}
  .hero-ultra h1{font-size:36px}
  .hero-desc{font-size:16px}
  .hero-kpis{gap:20px}
  .hero-kpis .pill{padding:16px 20px}
  .hero-kpis .pill strong{font-size:28px}
  .container{padding:16px}
  .card{padding:20px}
  .admin-stats-grid .admin-stat-card .stat-value{font-size:32px}
}

/* ===== RESPONSIVE LAYOUT ===== */
@media (max-width: 1200px){
  .hero-split{
    grid-template-columns: 1fr 320px;
    gap:32px;
  }
  .hero-content{
    padding-right:0;
  }
  .hero-split h1{
    font-size:44px;
  }
}
@media (max-width: 1024px){
  .hero-split{
    grid-template-columns: 1fr;
    padding:40px 0 60px;
  }
  .hero-sidebar{
    position: static;
    width:100%;
  }
  .leaderboard-card{
    padding:20px;
  }
  .stats-row{
    grid-template-columns: repeat(3, 1fr);
  }
  .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }
  .section-actions{
    width:100%;
    flex-wrap:wrap;
    gap:12px;
  }
  .search-box{
    flex:1;
    min-width:200px;
    max-width:none;
  }
  .filter-select{
    min-width:140px;
  }
  .dex-grid{
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .mint-lanes-grid{
    grid-template-columns:1fr;
  }
  .mint-lanes-intro h2{
    font-size:40px;
  }
}
@media (max-width: 768px){
  .hero-split h1{
    font-size:36px;
  }
  .hero-desc{
    font-size:16px;
  }
  .stats-row{
    flex-wrap:wrap;
    gap:24px;
  }
  .stat-item{
    flex-direction:row;
    align-items:center;
    gap:12px;
  }
  .stat-value{
    font-size:24px;
  }
  .how-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .mint-lanes-intro h2{
    font-size:32px;
  }
  .mint-lanes-intro p{
    font-size:18px;
  }
  .mint-lanes-kicker strong{
    font-size:24px;
  }
}
@media (max-width: 640px){
  .hero-split{
    padding:32px 0 48px;
  }
  .hero-split h1{
    font-size:28px;
  }
  .hero-badge{
    padding:8px 16px;
    font-size:12px;
  }
  .section-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .section-actions .btn{
    justify-content:center;
  }
  .search-box{
    max-width:none;
  }
  .lane-search-box{
    min-width:0;
    max-width:none;
  }
  .filter-select{
    width:100%;
  }
  .dex-grid{
    grid-template-columns: 1fr;
  }
  .how-grid{
    grid-template-columns: 1fr;
  }
  .dex-header{
    flex-wrap:wrap;
  }
  .dex-link{
    display:flex;
  }
  .dex-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .vote-progress{
    width:100%;
    max-width:none;
  }
  .how-section,
  .about-section,
  .contact-section{
    padding:60px 0;
  }
  .how-header h2,
  .about-header h2,
  .contact-content h2{
    font-size:28px;
  }
  .features-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER IMPROVEMENTS ===== */
.footer-brand{max-width:280px}
.footer-social{display:flex; gap:12px; margin-top:16px}
.footer-social a{
  width:40px; height:40px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(148,163,184,.08);
  border:1px solid var(--border);
  color:var(--muted-bright);
  transition: all .2s ease;
}
.footer-social a:hover{background: rgba(148,163,184,.15); color:#fff; border-color:var(--border-hover)}
.footer-links-group h4, .footer-contact h4{
  font-size:14px; font-weight:700; color:#fff; margin:0 0 16px;
}
.footer-links-group ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px}
.footer-links-group a{font-size:14px; color:var(--muted); transition:color .2s ease}
.footer-links-group a:hover{color:#fff}
.footer-contact p{font-size:14px; color:var(--muted); margin:0 0 16px}
.footer-bottom{
  margin-top:40px; padding-top:24px; border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
}
.footer-bottom p{margin:0; font-size:13px; color:var(--muted)}

/* ===== THEME TOGGLE ===== */
.theme-toggle-btn{
  width:40px;
  height:40px;
  min-width:40px;
  padding:0;
  border-radius:12px;
  position:relative;
  color:var(--text);
}
.theme-toggle-btn .theme-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.theme-toggle-btn .theme-icon-sun{
  display:none;
}
html[data-theme="light"] .theme-toggle-btn .theme-icon-sun{
  display:inline-flex;
}
html[data-theme="light"] .theme-toggle-btn .theme-icon-moon{
  display:none;
}
.theme-toggle-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.mobile-theme-toggle{
  width:40px;
  margin-bottom:6px;
  align-self:flex-start;
}

/* ===== LIGHT THEME ===== */
html[data-theme="light"]{
  --bg:#f4f7fb;
  --card:#ffffff;
  --card-hover:#f8fbff;
  --muted:#526277;
  --muted-bright:#3f4f64;
  --text:#0f172a;
  --text-dim:#334155;
  --brand:#16a34a;
  --brand-glow:#16a34a;
  --border:rgba(15,23,42,.12);
  --border-hover:rgba(15,23,42,.22);
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --shadow-glow:0 0 25px rgba(22,163,74,.1);
  color-scheme: light;
}
html[data-theme="light"] body{
  background:
    radial-gradient(ellipse at 15% 0%, rgba(22,163,74,.08) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(37,99,235,.08) 0%, transparent 45%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
  color:var(--text);
}
html[data-theme="light"] .site-header{
  background:
    linear-gradient(90deg, rgba(22,163,74,.12) 0%, rgba(255,255,255,.92) 28%, rgba(255,255,255,.92) 72%, rgba(37,99,235,.12) 100%),
    rgba(255,255,255,.92);
  border-bottom:1px solid rgba(15,23,42,.12);
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}
html[data-theme="light"] .leaderboard-card,
html[data-theme="light"] .dex-card,
html[data-theme="light"] .mint-lane-card,
html[data-theme="light"] .how-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .admin-section,
html[data-theme="light"] .admin-stat-card,
html[data-theme="light"] .card{
  background:rgba(255,255,255,.9);
  border-color:rgba(15,23,42,.12);
  box-shadow:0 8px 24px rgba(15,23,42,.06);
}
html[data-theme="light"] .site-footer,
html[data-theme="light"] .mobile-menu{
  background:#f1f5f9;
  border-color:rgba(15,23,42,.12);
}
html[data-theme="light"] .mobile-menu a:hover{
  background:rgba(15,23,42,.08);
  color:var(--text);
}
html[data-theme="light"] .search-box,
html[data-theme="light"] .filter-select,
html[data-theme="light"] .table th,
html[data-theme="light"] .mint-lane-item{
  background:rgba(15,23,42,.04);
  border-color:rgba(15,23,42,.12);
}
html[data-theme="light"] .search-box input,
html[data-theme="light"] .filter-select{
  color:var(--text);
}
html[data-theme="light"] .btn{
  background:rgba(15,23,42,.04);
  color:var(--text);
  border-color:rgba(15,23,42,.16);
}
html[data-theme="light"] .btn:hover{
  background:rgba(15,23,42,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.08);
}
html[data-theme="light"] .btn.primary{
  background:linear-gradient(135deg, rgba(22,163,74,.18), rgba(22,163,74,.1));
  color:#166534;
  border-color:rgba(22,163,74,.3);
}
html[data-theme="light"] .btn.danger{
  color:#991b1b;
}
html[data-theme="light"] .mint-vote-btn{
  color:#0b3a67;
}
html[data-theme="light"] .mint-social-link,
html[data-theme="light"] .dex-quick-links a{
  background:rgba(15,23,42,.04);
  border-color:rgba(15,23,42,.14);
  color:#334155;
}
html[data-theme="light"] .mint-social-link:hover,
html[data-theme="light"] .dex-quick-links a:hover{
  background:rgba(15,23,42,.08);
  color:#0f172a;
}
html[data-theme="light"] .alert{
  background:rgba(15,23,42,.04);
  color:var(--text);
}
html[data-theme="light"] .vote-boost-info{
  background:rgba(37,99,235,.08);
  border-color:rgba(37,99,235,.2);
}
html[data-theme="light"] .vote-boost-lead{
  color:#1e3a8a;
}
html[data-theme="light"] .vote-boost-token-pill,
html[data-theme="light"] .vote-boost-token-inline,
html[data-theme="light"] .vote-boost-lead code{
  background:rgba(255,255,255,.8);
  border-color:rgba(37,99,235,.24);
  color:#1d4ed8;
}
html[data-theme="light"] .vote-boost-copy-btn{
  background:rgba(219,234,254,.95);
  border-color:rgba(37,99,235,.3);
  color:#1d4ed8;
}
html[data-theme="light"] .vote-boost-copy-btn:hover{
  background:rgba(191,219,254,.95);
  border-color:rgba(37,99,235,.45);
}
html[data-theme="light"] .table tbody tr:hover{
  background:rgba(15,23,42,.03);
}
html[data-theme="light"] a:hover{
  color:#0f172a;
}
html[data-theme="light"] .hero-split h1,
html[data-theme="light"] .winner-name,
html[data-theme="light"] .section-title h2,
html[data-theme="light"] .about-header h2,
html[data-theme="light"] .dex-meta h3,
html[data-theme="light"] .how-content h3,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .mint-lane-meta strong,
html[data-theme="light"] .mint-lane-head h3,
html[data-theme="light"] .leaderboard-title h3,
html[data-theme="light"] .leaderboard-header h3,
html[data-theme="light"] .leaderboard-item .dex-name,
html[data-theme="light"] .admin-header h1,
html[data-theme="light"] .admin-section-title,
html[data-theme="light"] .footer-logo,
html[data-theme="light"] .footer-links-group h4,
html[data-theme="light"] .footer-contact h4,
html[data-theme="light"] .stat-value{
  color:#0f172a;
}
html[data-theme="light"] .leaderboard-item{
  background:rgba(15,23,42,.04);
}
html[data-theme="light"] .leaderboard-item:hover{
  background:rgba(15,23,42,.08);
}
html[data-theme="light"] .leaderboard-item .vote-count{
  color:#0f172a;
}
html[data-theme="light"] .lane-leaderboard-row{
  background:rgba(15,23,42,.03);
  border-color:rgba(15,23,42,.1);
}
html[data-theme="light"] .lane-leaderboard-row:hover{
  background:rgba(15,23,42,.06);
  border-color:rgba(15,23,42,.2);
}
html[data-theme="light"] .lane-leaderboard-name{
  color:#1e293b;
}
html[data-theme="light"] .lane-leaderboard-row .votes{
  color:#0f172a;
}
html[data-theme="light"] .lane-leaderboard-row.is-current{
  background:linear-gradient(90deg, rgba(22,163,74,.16), rgba(22,163,74,.08));
  border-color:rgba(22,163,74,.32);
  box-shadow:0 10px 22px rgba(22,163,74,.12);
}
html[data-theme="light"] .lane-leaderboard-row.is-current .lane-leaderboard-name,
html[data-theme="light"] .lane-leaderboard-row.is-current .votes{
  color:#14532d;
}
html[data-theme="light"] .hero-desc,
html[data-theme="light"] .section-title p,
html[data-theme="light"] .dex-description,
html[data-theme="light"] .how-header p,
html[data-theme="light"] .footer-desc,
html[data-theme="light"] .footer-contact p{
  color:var(--text-dim);
}
html[data-theme="light"] .how-header h2{
  color:#0f172a;
}
html[data-theme="light"] .how-section{
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(22,163,74,.08) 0%, transparent 70%);
  border-top:1px solid rgba(15,23,42,.12);
  border-bottom:1px solid rgba(15,23,42,.12);
}
html[data-theme="light"] .contact-content h2{
  color:#0f172a;
}
html[data-theme="light"] .contact-content p{
  color:var(--text-dim);
}
html[data-theme="light"] .admin-header p{
  color:var(--text-dim);
}
html[data-theme="light"] .contact-section{
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(22,163,74,.08) 0%, transparent 70%);
  border-top:1px solid rgba(15,23,42,.12);
}
