/* ==========================================
   POCKETPROFIT v8.0 - BLUE GLASS-MORPHISM
   User's Original Color Scheme + Glass Design
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Primary Blue Theme (User's Original) */
  --primary: rgb(17, 153, 250);
  --primary-dark: rgb(8, 120, 200);
  --primary-glow: rgba(17, 153, 250, 0.4);
  --secondary: rgb(77, 181, 255);
  --accent: rgb(146, 209, 255);

  /* Background Colors (User's Exact Colors) */
  --bg: rgb(8, 13, 27);
  --bg-deep: rgb(8, 13, 27);
  --bg-dark: rgb(8, 20, 38);
  --bg-card: rgb(11, 20, 38);
  --bg-card-hover: rgb(21, 29, 50);
  --bg-elevated: rgb(35, 44, 60);
  --bg-black: rgb(15, 15, 15);
  --bg-navy: rgb(33, 37, 50);
  --bg-white: rgb(255, 255, 255);
  --bg-light: rgb(234, 238, 244);
  --bg-blue-tint: rgb(240, 245, 255);

  /* Blue Aliases for Compatibility */
  --blue: rgb(17, 153, 250);
  --blue-light: rgb(77, 181, 255);
  --blue-glow: rgba(17, 153, 250, 0.2);
  --blue-bright: rgb(146, 209, 255);

  /* Functional */
  --success: #22c55e;
  --warning: #fbbf24;
  --danger: #ef4444;
  --gold: #fbbf24;

  /* Text Colors (User's Exact) */
  --text: rgb(247, 249, 250);
  --text-dark: rgb(0, 0, 0);
  --text-muted: rgb(123, 132, 155);
  --text-dim: rgb(160, 169, 190);
  --text-gray: rgb(201, 207, 221);
  --text-gray-dark: rgb(133, 137, 146);

  /* Border Colors (User's Exact) */
  --border: rgb(33, 37, 50);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-blue: rgb(17, 153, 250);
  --border-subtle: rgba(50, 60, 82, 0.06);

  /* Glass Morphism System */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-light: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-light: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glass-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --glass-glow: 0 0 40px rgba(17, 153, 250, 0.1);
  --glass-glow-strong: 0 0 60px rgba(17, 153, 250, 0.12);

  /* Radius */
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Easing */
  --ease: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
main { min-height: calc(100vh - 140px); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::selection { background: var(--blue); color: #fff; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
h4 { font-size: 16px; }
p { color: var(--text-muted); font-size: 14px; }

a { color: var(--blue-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==========================================
   GLASS MORPHISM UTILITIES
   ========================================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.glass:hover {
  border-color: rgba(17, 153, 250, 0.3);
  background: var(--glass-bg-light);
}
.glass-light {
  background: var(--glass-bg-light);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border-light);
}
.glass-strong {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================
   SHARED COMPONENTS (Used across all pages)
   ========================================== */

/* Cards */
.card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition); backdrop-filter: blur(12px);
}
.card:hover { border-color: rgba(17,153,250,0.2); transform: translateY(-2px); }
.card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.card-title {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: 14px; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: var(--transition); text-decoration: none;
  white-space: nowrap; min-height: 40px; touch-action: manipulation;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; box-shadow: 0 10px 25px -10px var(--blue-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -12px var(--blue-glow);
}
.btn-secondary { background: linear-gradient(135deg, var(--blue), var(--bg-dark)); color: #fff; box-shadow: 0 4px 16px rgba(17,153,250,0.2); }
.btn-outline {
  background: transparent; border: 1px solid var(--glass-border);
  color: var(--text); font-weight: 700;
}
.btn-outline:hover {
  background: rgba(17,153,250,0.1); border-color: var(--blue);
  transform: translateY(-3px);
}
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: var(--glass-bg-light); color: var(--text); }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-accent { background: var(--blue); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 10px; min-height: 32px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 16px; }
.btn-pill { border-radius: var(--radius-full); }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 12px; }
.btn-block { width: 100%; }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--text-muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.form-control {
  width: 100%; padding: 12px 14px; background: var(--glass-bg);
  border: 1.5px solid var(--glass-border); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(17,153,250,0.1); }
.form-control::placeholder { color: var(--text-gray-dark); }
select.form-control {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237B849B'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}
textarea.form-control { min-height: 100px; resize: vertical; }

/* Badges & Status */
.status-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; border: 1px solid transparent;
}
.status-pending { background: rgba(251,191,36,0.1); color: var(--warning); border-color: rgba(251,191,36,0.15); }
.status-approved { background: rgba(34,197,94,0.1); color: var(--success); border-color: rgba(34,197,94,0.15); }
.status-rejected { background: rgba(239,68,68,0.1); color: var(--danger); border-color: rgba(239,68,68,0.15); }
.status-info { background: rgba(17,153,250,0.1); color: var(--blue-light); border-color: rgba(17,153,250,0.15); }

/* Flash messages */
.flash {
  padding: 12px 0; font-size: 13px; font-weight: 500;
  position: relative; z-index: 1000; animation: slideDown 0.4s var(--ease);
}
.flash-success { background: rgba(34,197,94,0.08); border-bottom: 1px solid rgba(34,197,94,0.15); color: var(--success); }
.flash-error { background: rgba(239,68,68,0.08); border-bottom: 1px solid rgba(239,68,68,0.15); color: var(--danger); }
.flash-warning { background: rgba(251,191,36,0.08); border-bottom: 1px solid rgba(251,191,36,0.15); color: var(--warning); }
.flash .container { display: flex; align-items: center; gap: 8px; }
.flash-close { background: none; border: none; color: inherit; font-size: 18px; cursor: pointer; margin-left: auto; opacity: 0.6; }

/* Tables */
.data-table-v2 { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 12px; }
.data-table-v2 th {
  padding: 10px 12px; text-align: left; font-weight: 600; font-size: 10px;
  text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px;
  border-bottom: 1px solid var(--glass-border); white-space: nowrap; background: var(--bg-dark);
}
.data-table-v2 th:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.data-table-v2 th:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.data-table-v2 td { padding: 10px 12px; border-bottom: 1px solid var(--glass-border); color: var(--text-muted); }
.data-table-v2 tbody tr { transition: background 0.2s; }
.data-table-v2 tbody tr:hover { background: rgba(17,153,250,0.04); }
.data-table-v2 tbody tr:last-child td { border-bottom: none; }

/* Pagination */
.pagination-v2 { display: flex; justify-content: center; gap: 6px; margin-top: 20px; flex-wrap: wrap; }
.pagination-v2 a, .pagination-v2 span {
  min-width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 12px; font-weight: 600; transition: var(--transition);
}
.pagination-v2 a { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-muted); text-decoration: none; }
.pagination-v2 a:hover { border-color: var(--blue); color: var(--blue-light); }
.pagination-v2 span.current { background: var(--blue); color: #fff; }

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar-v2 {
  height: 70px; display: flex; align-items: center;
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition); border-bottom: 1px solid transparent;
}
.navbar-v2.scrolled {
  background: rgba(8, 13, 27, 0.9); backdrop-filter: blur(15px);
  height: 65px; border-bottom: 1px solid var(--glass-border);
}
.navbar-v2 .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-v2-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--blue);
  font-family: var(--font-heading); font-size: 24px; font-weight: 800;
}
.navbar-v2-logo img { height: 32px; width: auto; }
.navbar-v2-logo span { color: var(--blue); }
.navbar-v2-links { display: flex; align-items: center; gap: 35px; list-style: none; }
.navbar-v2-links a {
  color: var(--text-muted); font-size: 15px; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.navbar-v2-links a:hover, .navbar-v2-links a.active { color: var(--blue); }

.navbar-v2-btns {
  display: flex; align-items: center; gap: 12px;
}

/* Mobile menu toggle — hidden on desktop, shown only on mobile */
.nav-toggle-v2,
.mobile-menu-toggle {
  display: none;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 260px;
  background: var(--bg-dark); border-right: 1px solid var(--glass-border);
  z-index: 10001; transform: translateX(-100%); transition: transform 0.3s var(--ease);
  overflow-y: auto; padding: 16px 0;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.25); z-index: 10000;
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.mobile-drawer-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 12px; border-bottom: 1px solid var(--glass-border); margin-bottom: 10px;
}
.mobile-drawer-close {
  background: none; border: none; color: var(--text-muted); font-size: 20px; cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(8, 13, 27, 0.96); backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border); z-index: 9999;
  display: none; padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav-items { display: flex; justify-content: space-around; align-items: center; height: 60px; padding: 0 8px; }
.bottom-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 6px 10px; border-radius: 10px;
  color: var(--text-muted); font-size: 9px; font-weight: 500;
  text-decoration: none; transition: var(--transition);
  min-width: 52px; flex: 1;
}
.bottom-nav-item i { font-size: 18px; transition: var(--transition); }
.bottom-nav-item.active { color: var(--blue); background: rgba(17,153,250,0.08); }
.bottom-nav-item.active i { filter: drop-shadow(0 0 6px rgba(17,153,250,0.3)); }
.bottom-nav-item:active { transform: scale(0.92); }

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar-v2 {
  background: rgba(8, 13, 27, 0.95); border-bottom: 1px solid var(--glass-border);
  padding: 6px 0; font-size: 11px; color: var(--text-muted);
}
.top-bar-v2 .container { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.top-bar-v2-left { display: flex; gap: 14px; }
.top-bar-v2-left span { display: flex; align-items: center; gap: 4px; }
.top-bar-v2-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: var(--radius-full);
  background: rgba(17,153,250,0.08); color: var(--blue-light);
  font-size: 10px; font-weight: 600; border: 1px solid rgba(17,153,250,0.12);
}

/* ==========================================
   PWA INSTALL
   ========================================== */
.pwa-install {
  position: fixed; bottom: calc(76px + env(safe-area-inset-bottom)); left: 12px; right: 12px;
  background: var(--glass-bg); backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 9998;
  animation: slideUp 0.4s var(--ease);
}
.pwa-install img { width: 40px; height: 40px; border-radius: 10px; }
.pwa-install-text { flex: 1; }
.pwa-install-text strong { display: block; font-size: 13px; margin-bottom: 1px; }
.pwa-install-text span { font-size: 11px; color: var(--text-muted); }
.pwa-install-close { background: none; border: none; color: var(--text-muted); font-size: 16px; cursor: pointer; padding: 4px; }
.pwa-install-btn { padding: 6px 16px; font-size: 12px; border-radius: 8px; }

/* ==========================================
   BACKGROUND BLOBS
   ========================================== */
.hp-bg-wrapper {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, var(--bg-dark) 0%, var(--bg-deep) 100%);
}
.hp-blob {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15;
  animation: blobMove 25s infinite alternate;
  pointer-events: none;
}
.hp-blob-1 { width: 600px; height: 600px; background: var(--blue); top: -10%; left: -10%; }
.hp-blob-2 { width: 500px; height: 500px; background: var(--blue-light); bottom: -10%; right: -10%; animation-delay: -5s; }
@keyframes blobMove { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(80px, 120px) scale(1.2); } }

/* ==========================================
   HOMEPAGE SHARED
   ========================================== */
.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(17, 153, 250, 0.1); border: 1px solid rgba(17, 153, 250, 0.2);
  border-radius: 100px; color: var(--blue); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin-bottom: 15px;
  background: linear-gradient(to right, #fff, var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 700px; margin: 0 auto; }

/* ==========================================
   1. TOP TICKER
   ========================================== */
.hp-ticker {
  background: rgba(8, 13, 27, 0.95); border-bottom: 1px solid var(--glass-border);
  padding: 12px 0; overflow: hidden; position: relative; z-index: 1001;
}
.hp-ticker-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerMove 40s linear infinite;
}
.hp-ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
}
.hp-ticker-item .pair { color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.hp-ticker-item .price { color: var(--text); font-family: var(--font-heading); font-weight: 700; }
.hp-ticker-item .change { font-weight: 700; font-size: 13px; }
.hp-ticker-item .change.up { color: var(--success); }
.hp-ticker-item .change.down { color: var(--danger); }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================
   2. HERO
   ========================================== */
.hp-hero { padding: 80px 0 60px; text-align: center; position: relative; z-index: 1; }
.hp-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; background: rgba(17, 153, 250, 0.1);
  border: 1px solid rgba(17, 153, 250, 0.2); border-radius: 100px;
  color: var(--blue); font-size: 14px; font-weight: 700; margin-bottom: 30px;
  backdrop-filter: blur(8px);
}
.hp-hero h1 {
  font-size: clamp(42px, 8vw, 76px); font-weight: 800; line-height: 1;
  margin-bottom: 25px; letter-spacing: -2px; color: var(--text);
}
.hp-hero h1 span { color: var(--blue); }
.hp-hero p {
  font-size: 20px; color: var(--text-muted); margin-bottom: 40px;
  max-width: 750px; margin-left: auto; margin-right: auto;
}
.hp-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ==========================================
   3. NEWS STRIP
   ========================================== */
.hp-news {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  padding: 15px 0; overflow: hidden;
}
.hp-news-inner {
  display: flex; align-items: center; gap: 30px;
}
.hp-news-label {
  background: white; color: var(--blue); padding: 5px 15px;
  border-radius: 8px; font-weight: 800; font-size: 13px; white-space: nowrap;
  flex-shrink: 0;
}
.hp-news-scroll { flex: 1; overflow: hidden; }
.hp-news-scroll-inner {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerMove 35s linear infinite;
}
.hp-news-item { font-weight: 600; font-size: 15px; color: white; }
.hp-news-item strong { font-weight: 800; }

/* ==========================================
   4. STATS
   ========================================== */
.hp-stats { padding: 40px 0; position: relative; z-index: 1; }
.hp-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.hp-stat-item {
  padding: 35px; text-align: center;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
  transition: var(--transition);
}
.hp-stat-item:hover {
  border-color: rgba(17,153,250,0.3);
  background: var(--glass-bg-light);
  transform: translateY(-4px);
}
.hp-stat-item .icon { font-size: 32px; margin-bottom: 15px; display: block; color: var(--blue); }
.hp-stat-item .num {
  font-family: var(--font-heading); font-size: 40px; font-weight: 800;
  color: var(--blue); display: block; margin-bottom: 5px; line-height: 1;
}
.hp-stat-item .label { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ==========================================
   5. INVESTMENT PLANS
   ========================================== */
.hp-plans { padding: 80px 0; position: relative; z-index: 1; }
.hp-plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
}
.hp-plan-item {
  padding: 45px 35px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--glass-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
  transition: var(--transition);
}
.hp-plan-item:hover {
  border-color: rgba(17,153,250,0.3);
  background: var(--glass-bg-light);
  transform: translateY(-8px);
}
.hp-plan-item.featured {
  border: 2px solid var(--blue);
  background: rgba(17, 153, 250, 0.05);
  transform: scale(1.03);
}
.hp-plan-item.featured:hover { transform: scale(1.03) translateY(-8px); }
.hp-plan-item .ribbon {
  position: absolute; top: 25px; right: -40px;
  background: var(--blue); color: white; padding: 8px 45px;
  transform: rotate(45deg); font-size: 12px; font-weight: 800;
  z-index: 2;
}
.hp-plan-item .icon { font-size: 44px; margin-bottom: 14px; text-align: center; }
.hp-plan-item .name {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 4px; text-align: center;
}
.hp-plan-item .range { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; text-align: center; }
.hp-plan-item .percent {
  font-family: var(--font-heading); font-size: 52px; font-weight: 800;
  color: var(--blue); margin: 25px 0; line-height: 1; text-align: center;
}
.hp-plan-item .percent span { font-size: 18px; color: var(--text-muted); font-weight: 500; }
.hp-plan-item ul { list-style: none; margin-bottom: 35px; flex-grow: 1; padding: 0; }
.hp-plan-item ul li {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid var(--glass-border); font-size: 15px; color: var(--text-muted);
}
.hp-plan-item ul li strong { color: var(--text); font-weight: 700; }
.hp-plan-item ul li:last-child { border-bottom: none; }

/* ==========================================
   6. CALCULATOR
   ========================================== */
.hp-calc { padding: 80px 0; background: rgba(17, 153, 250, 0.02); position: relative; z-index: 1; }
.hp-calc-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hp-calc-left h3 { font-size: 30px; font-weight: 800; margin-bottom: 15px; color: var(--text); }
.hp-calc-left p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }
.hp-calc-right {
  padding: 45px;
  background: var(--glass-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
}
.hp-calc-right .input-group { margin-bottom: 25px; }
.hp-calc-right .input-group label {
  display: block; margin-bottom: 10px; font-weight: 700;
  color: var(--text-muted); font-size: 13px; text-transform: uppercase;
}
.hp-calc-right .input-group input,
.hp-calc-right .input-group select {
  width: 100%; padding: 16px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border);
  border-radius: 12px; color: white; font-size: 18px;
  transition: var(--transition); font-family: var(--font-body);
}
.hp-calc-right .input-group input:focus,
.hp-calc-right .input-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(17, 153, 250, 0.1);
}
.hp-calc-results { display: grid; gap: 15px; margin-top: 25px; }
.hp-calc-result {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.hp-calc-result .label { color: var(--text-muted); font-weight: 700; font-size: 14px; }
.hp-calc-result .value {
  font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--success);
}

/* ==========================================
   7. TRC20 BONUS
   ========================================== */
.hp-trc20 { padding: 80px 0; position: relative; z-index: 1; }
.hp-trc20-box {
  text-align: center; padding: 60px;
  background: linear-gradient(135deg, rgba(17, 153, 250, 0.15), rgba(77, 181, 255, 0.15));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(17, 153, 250, 0.2); border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
  box-shadow: var(--glass-shadow-lg);
}
.hp-trc20-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(17, 153, 250, 0.2); border: 1px solid rgba(17, 153, 250, 0.3);
  color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px;
}
.hp-trc20-box h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; color: var(--text);
}
.hp-trc20-box h2 span { color: var(--blue); }
.hp-trc20-box p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }
.hp-trc20-examples {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin: 40px 0;
}
.hp-trc20-example {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border);
  border-radius: 20px; font-size: 14px; color: var(--text-muted); text-align: center;
}
.hp-trc20-example strong { font-size: 26px; color: var(--blue); display: block; margin-top: 10px; }

/* ==========================================
   8. 8 WAYS TO EARN
   ========================================== */
.hp-earn { padding: 80px 0; position: relative; z-index: 1; }
.hp-earn-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.hp-earn-item {
  padding: 35px; position: relative; overflow: hidden;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
  transition: var(--transition);
}
.hp-earn-item:hover {
  border-color: rgba(17,153,250,0.3);
  background: var(--glass-bg-light);
  transform: translateY(-5px);
}
.hp-earn-item .num {
  position: absolute; top: 15px; right: 25px;
  font-size: 50px; font-weight: 900; opacity: 0.04; color: var(--text);
}
.hp-earn-item h3 {
  font-size: 20px; margin-bottom: 12px; color: var(--text); font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.hp-earn-item h3 i { color: var(--blue); font-size: 24px; }
.hp-earn-item p { color: var(--text-muted); font-size: 15px; }
.hp-earn-item .tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(17,153,250,0.08); color: var(--blue);
  font-size: 10px; font-weight: 600; border: 1px solid rgba(17,153,250,0.12);
  margin-top: 12px;
}

/* ==========================================
   9. REFERRAL
   ========================================== */
.hp-ref { padding: 80px 0; background: rgba(17, 153, 250, 0.02); position: relative; z-index: 1; }
.hp-ref-wrapper { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
.hp-ref-levels-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 15px;
}
.hp-ref-level-card {
  padding: 25px; text-align: center;
  background: var(--glass-bg); backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.hp-ref-level-card:hover {
  border-color: rgba(17,153,250,0.2);
  transform: translateY(-3px);
}
.hp-ref-level-card .lvl { font-size: 13px; color: var(--text-muted); font-weight: 700; }
.hp-ref-level-card .perc { font-size: 28px; font-weight: 800; color: var(--blue); display: block; margin-top: 5px; }
.hp-ref-info-card {
  padding: 40px;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
  display: flex; flex-direction: column; justify-content: center;
}
.hp-ref-info-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.hp-ref-info-card ul { list-style: none; }
.hp-ref-info-card li {
  margin-bottom: 12px; display: flex; align-items: center;
  gap: 12px; color: var(--text-muted); font-size: 15px;
}
.hp-ref-info-card li i { color: var(--success); }

/* ==========================================
   10. LEADERBOARD
   ========================================== */
.hp-leader { padding: 80px 0; position: relative; z-index: 1; }
.hp-leader-wrapper { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; }
.hp-podium-list { display: flex; flex-direction: column; gap: 15px; }
.hp-podium-card {
  padding: 25px; display: flex; align-items: center; gap: 20px;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.hp-podium-card:hover {
  border-color: rgba(17,153,250,0.2);
  transform: translateX(4px);
}
.hp-podium-card.gold { border-left-color: #fbbf24; }
.hp-podium-card.silver { border-left-color: #94a3b8; }
.hp-podium-card.bronze { border-left-color: #b45309; }
.hp-podium-card .medal { font-size: 36px; }
.hp-podium-card .user-info h4 { font-size: 19px; color: var(--text); font-weight: 700; }
.hp-podium-card .user-info span { color: var(--success); font-weight: 800; font-size: 18px; }
.hp-leader-table-wrap {
  background: var(--glass-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--glass-glow);
}
.hp-leader-table-wrap .head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 20px;
}
.hp-leader-table-wrap .head i { color: var(--blue); }
.hp-leader-table-wrap table { width: 100%; border-collapse: collapse; }
.hp-leader-table-wrap th {
  text-align: left; color: var(--text-muted); font-size: 13px;
  padding-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.hp-leader-table-wrap td {
  padding: 15px 0; border-top: 1px solid var(--glass-border); font-size: 15px; color: var(--text-muted);
}

/* ==========================================
   11. BADGES
   ========================================== */
.hp-badges { padding: 80px 0; background: rgba(17, 153, 250, 0.02); position: relative; z-index: 1; }
.hp-badges-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
}
.hp-badge-item {
  padding: 35px 20px; text-align: center;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  transition: var(--transition);
}
.hp-badge-item:hover {
  border-color: rgba(17,153,250,0.2);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--glass-shadow);
}
.hp-badge-item .icon { font-size: 48px; margin-bottom: 20px; display: block; }
.hp-badge-item .name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.hp-badge-item .reward { font-size: 14px; color: var(--blue); font-weight: 800; margin-top: 10px; }
.hp-badge-item .rarity {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  padding: 4px 12px; border-radius: 6px; margin-top: 12px; display: inline-block;
}
.hp-badge-item .rarity.legendary { background: var(--blue); color: white; }
.hp-badge-item .rarity.epic { background: var(--blue-light); color: black; }
.hp-badge-item .rarity.rare { background: rgba(17,153,250,0.15); color: var(--blue); }
.hp-badge-item .rarity.common { background: rgba(168,162,158,0.15); color: var(--text-muted); }

/* ==========================================
   12. HOW IT WORKS
   ========================================== */
.hp-steps { padding: 80px 0; position: relative; z-index: 1; }
.hp-steps-track {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px;
}
.hp-step-box {
  padding: 50px; text-align: center;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
  transition: var(--transition);
}
.hp-step-box:hover {
  border-color: rgba(17,153,250,0.2);
  transform: translateY(-5px);
}
.hp-step-box .circle {
  width: 70px; height: 70px;
  background: var(--blue); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 28px; font-weight: 800;
  margin-bottom: 25px; color: white;
  box-shadow: 0 0 25px var(--blue-glow);
}
.hp-step-box h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.hp-step-box p { color: var(--text-muted); font-size: 15px; }

/* ==========================================
   13. PAYMENTS
   ========================================== */
.hp-pay { padding: 80px 0; background: rgba(17, 153, 250, 0.02); position: relative; z-index: 1; }
.hp-pay-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.hp-pay-card {
  padding: 40px; text-align: center;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
  transition: var(--transition);
}
.hp-pay-card:hover {
  border-color: rgba(17,153,250,0.2);
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-lg);
}
.hp-pay-card .icon { font-size: 56px; margin-bottom: 20px; display: block; color: var(--blue); }
.hp-pay-card h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.hp-pay-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }

/* ==========================================
   14. PAYOUTS
   ========================================== */
.hp-payouts { padding: 80px 0; position: relative; z-index: 1; }
.hp-payouts-scroll {
  display: flex; gap: 25px; overflow-x: auto;
  padding: 10px 0; scrollbar-width: none; scroll-snap-type: x mandatory;
}
.hp-payouts-scroll::-webkit-scrollbar { display: none; }
.hp-payout-card {
  min-width: 260px; padding: 30px;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
  text-align: center; transition: var(--transition); scroll-snap-align: start;
}
.hp-payout-card:hover {
  border-color: rgba(17,153,250,0.2);
  transform: translateY(-5px);
}
.hp-payout-card .amount {
  font-family: var(--font-heading); font-size: 28px; font-weight: 800;
  color: var(--success); margin-bottom: 10px;
}
.hp-payout-card .method { color: var(--text-muted); font-size: 14px; }
.hp-payout-card .user { color: var(--text-dim); font-size: 13px; font-weight: 600; margin-top: 6px; }
.hp-payout-card .time { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ==========================================
   15. TRUST
   ========================================== */
.hp-trust { padding: 80px 0; background: rgba(17, 153, 250, 0.02); position: relative; z-index: 1; }
.hp-trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.hp-trust-item {
  padding: 30px; display: flex; gap: 20px;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.hp-trust-item:hover {
  border-color: rgba(17,153,250,0.2);
  transform: translateY(-4px);
}
.hp-trust-item i {
  font-size: 28px; color: var(--blue); flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(17,153,250,0.1); border: 1px solid rgba(17,153,250,0.15);
  display: flex; align-items: center; justify-content: center;
}
.hp-trust-item h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.hp-trust-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ==========================================
   16. FAQ
   ========================================== */
.hp-faq { padding: 80px 0; position: relative; z-index: 1; }
.hp-faq-inner { max-width: 900px; margin: 0 auto; }
.hp-faq-list { display: flex; flex-direction: column; gap: 10px; }
.hp-faq-item {
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.hp-faq-item:hover { border-color: rgba(17,153,250,0.12); }
.hp-faq-item.open {
  border-color: rgba(17,153,250,0.2);
  box-shadow: 0 0 30px rgba(17,153,250,0.04);
}
.hp-faq-q {
  width: 100%; padding: 18px 22px;
  background: none; border: none; color: var(--text);
  font-size: 16px; font-weight: 700; text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); transition: var(--transition);
}
.hp-faq-q:hover { color: var(--blue); }
.hp-faq-q i { transition: transform 0.3s var(--ease); color: var(--text-muted); font-size: 14px; }
.hp-faq-item.open .hp-faq-q { color: var(--blue); }
.hp-faq-item.open .hp-faq-q i { transform: rotate(180deg); color: var(--blue); }
.hp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.hp-faq-item.open .hp-faq-a { max-height: 800px; }
.hp-faq-a p { padding: 0 22px 18px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ==========================================
   17. FINAL CTA
   ========================================== */
.hp-cta { padding: 100px 0; position: relative; z-index: 1; }
.hp-cta-inner {
  text-align: center; max-width: 700px; margin: 0 auto;
}
.hp-cta-inner h2 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  margin-bottom: 16px; color: var(--text); line-height: 1.1;
}
.hp-cta-inner h2 span {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hp-cta-inner p {
  color: var(--text-muted); font-size: 17px;
  margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.hp-cta-tags {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 32px;
}
.hp-cta-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--glass-bg); backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--text-dim); font-size: 14px; font-weight: 500;
}


/* ==========================================
   DASHBOARD / ADMIN SHARED
   ========================================== */
.dash-v2 { padding: 12px 0 80px; }
.dash-v2-grid { display: grid; grid-template-columns: 220px 1fr; gap: 20px; }
.dash-v2-sidebar {
  background: var(--glass-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 16px 0;
  position: sticky; top: 72px; height: fit-content;
  max-height: calc(100vh - 88px); overflow-y: auto;
}
.dash-v2-sidebar::-webkit-scrollbar { width: 2px; }
.dash-v2-menu { list-style: none; }
.dash-v2-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px; color: var(--text-muted); font-size: 12px;
  font-weight: 500; border-left: 3px solid transparent;
  transition: var(--transition); text-decoration: none;
}
.dash-v2-menu li a:hover, .dash-v2-menu li a.active {
  background: linear-gradient(90deg, rgba(17,153,250,0.08), transparent);
  color: var(--text); border-left-color: var(--blue);
}
.dash-v2-menu li a.active { color: var(--blue); font-weight: 600; }
.dash-v2-menu li a i { font-size: 14px; width: 16px; text-align: center; }
.dash-v2-menu-sep { height: 1px; background: var(--glass-border); margin: 10px 14px; }

.dash-v2-user {
  padding: 0 16px 12px; margin-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center; gap: 10px;
}
.dash-v2-avatar {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  color: #fff; flex-shrink: 0;
}
.dash-v2-user-name { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-v2-user-role { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.dash-v2-main { min-width: 0; }
.dash-v2-welcome {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.dash-v2-welcome h2 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.dash-v2-welcome p { font-size: 12px; color: var(--text-muted); }

.dash-v2-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 20px; }
.dash-v2-stat {
  background: var(--glass-bg); backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 16px;
  position: relative; overflow: hidden; transition: var(--transition);
}
.dash-v2-stat:hover { transform: translateY(-2px); border-color: rgba(17,153,250,0.15); }
.dash-v2-stat::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
}
.dash-v2-stat.s-success::before { background: linear-gradient(180deg, var(--success), var(--blue)); }
.dash-v2-stat.s-warning::before { background: linear-gradient(180deg, var(--warning), var(--blue-light)); }
.dash-v2-stat.s-danger::before { background: linear-gradient(180deg, var(--danger), var(--warning)); }
.dash-v2-stat-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.dash-v2-stat-value { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); }
.dash-v2-stat-icon { position: absolute; top: 12px; right: 12px; font-size: 18px; opacity: 0.12; }

.dash-v2-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.dash-v2-action {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: var(--glass-bg);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  color: var(--text); font-size: 12px; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.dash-v2-action:hover { border-color: var(--blue); background: rgba(17,153,250,0.06); transform: translateY(-1px); }
.dash-v2-action i { font-size: 14px; }

/* Admin */
.admin-v2-top {
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0; margin-bottom: 20px;
}
.admin-v2-top .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.admin-v2-grid { display: grid; grid-template-columns: 220px 1fr; gap: 20px; }
.admin-v2-sidebar {
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 16px 0;
  position: sticky; top: 72px; height: fit-content;
  max-height: calc(100vh - 88px); overflow-y: auto;
}
.admin-v2-sidebar::-webkit-scrollbar { width: 2px; }

/* ==========================================
   SPIN WHEEL (Ad/Spin pages)
   ========================================== */
.spin-canvas-wrap { width: 380px; height: 380px; margin: 0 auto; position: relative; border-radius: 50%; }
.spin-canvas-wrap canvas { width: 100%; height: 100%; display: block; border-radius: 50%; }
.spin-canvas-ring { position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(17,153,250,0.25); pointer-events: none; box-shadow: 0 0 40px rgba(17,153,250,0.15); }
.spin-canvas-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 68px; height: 68px; background: linear-gradient(145deg, var(--blue), var(--blue-light)); border-radius: 50%; border: 3px solid rgba(8,13,27,0.15); z-index: 10; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.2), 0 0 40px rgba(17,153,250,0.2); pointer-events: none; }
.spin-canvas-center::before { content: ''; position: absolute; inset: 5px; border-radius: 50%; border: 1px solid rgba(8,13,27,0.08); }
.spin-canvas-pointer { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 32px; height: 40px; background: linear-gradient(180deg, var(--blue-light), var(--blue)); clip-path: polygon(50% 100%, 0 0, 100% 0); z-index: 10; filter: drop-shadow(0 4px 10px rgba(17,153,250,0.6)); }
.spin-canvas-glow { position: absolute; inset: -20px; border-radius: 50%; background: radial-gradient(circle, rgba(17,153,250,0.12), transparent 70%); pointer-events: none; z-index: -1; }

/* ==========================================
   AD PLAYER (Ad watch page)
   ========================================== */
.ad-v2-player { background: var(--glass-bg); backdrop-filter: blur(12px); border-radius: var(--radius-lg); padding: 28px; text-align: center; border: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.ad-v2-player::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue)); }
.ad-v2-progress { height: 4px; background: var(--bg-elevated); border-radius: 2px; overflow: hidden; margin: 16px 0; }
.ad-v2-progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 2px; transition: width 1s linear; }

/* ==========================================
   FOOTER
   ========================================== */
.footer-v2 { background: var(--bg-black); border-top: 1px solid var(--glass-border); padding: 80px 0 40px; }
.footer-v2-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-v2-brand img { height: 32px; margin-bottom: 12px; }
.footer-v2-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.footer-v2-social { display: flex; gap: 8px; }
.footer-v2-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px; transition: var(--transition);
}
.footer-v2-social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.footer-v2-links h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 800; margin-bottom: 25px; color: var(--text); }
.footer-v2-links ul { list-style: none; }
.footer-v2-links li { margin-bottom: 12px; }
.footer-v2-links a { color: var(--text-muted); font-size: 15px; text-decoration: none; transition: var(--transition); }
.footer-v2-links a:hover { color: var(--blue-light); padding-left: 3px; }
.footer-v2-contact p { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.footer-v2-contact p i { color: var(--blue); font-size: 12px; width: 14px; }
.footer-v2-bottom {
  text-align: center; padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted); font-size: 14px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes dotPulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================
   UTILITIES
   ========================================== */
.text-center { text-align: center; }
.text-blue { color: var(--blue-light); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hp-hero p { margin: 0 auto 30px; }
  .hp-hero-btns { justify-content: center; }
  .hp-hero-visual { display: none; }
  .hp-hero { min-height: auto; }
  .footer-v2-grid { grid-template-columns: 1fr 1fr; }
  .hp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-earn-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-steps-track { flex-direction: column; gap: 24px; }
  .hp-calc-inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-ref-wrapper { grid-template-columns: 1fr; }
  .hp-leader-wrapper { grid-template-columns: 1fr; }
  .admin-v2-grid { grid-template-columns: 1fr; }
  .admin-v2-sidebar { position: static; max-height: none; }
}

@media (max-width: 768px) {
  body { font-size: 13px; padding-bottom: 70px; }
  .hp-hero h1 { font-size: clamp(36px, 9vw, 48px) !important; }
  .hp-hero { min-height: auto; padding: 60px 0 40px; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stat-item { padding: 20px; }
  .hp-stat-item .num { font-size: 28px; }
  .hp-plans-grid { grid-template-columns: 1fr; }
  .hp-plan-item.featured { transform: scale(1); }
  .hp-plan-item.featured:hover { transform: scale(1) translateY(-8px); }
  .hp-calc-right { padding: 30px; }
  .hp-trc20-box { padding: 40px 20px; }
  .hp-earn-grid { grid-template-columns: 1fr; }
  .hp-pay-grid { grid-template-columns: 1fr; }
  .hp-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-payout-card { min-width: 220px; }
  .hp-trust-grid { grid-template-columns: 1fr; }
  .hp-faq-q { padding: 16px 18px; font-size: 15px; }
  .hp-faq-a p { font-size: 14px; }
  .footer-v2-grid { grid-template-columns: 1fr; gap: 40px; }
  .navbar-v2-links,
  .navbar-v2-btns { display: none; }
  .navbar-v2-links.active { display: flex; }
  .nav-toggle-v2 { display: flex; }
  .bottom-nav { display: block; }
  .dash-v2-sidebar { display: none; }
  .dash-v2-grid { grid-template-columns: 1fr; }
  .mobile-drawer { display: block; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stat-item .num { font-size: 22px; }
  .hp-plan-item .percent { font-size: 42px; }
  .hp-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .bottom-nav-items { height: 56px; }
  .section-header h2 { font-size: 28px; }
}