﻿    @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Lato:wght@400;700&family=Playfair+Display:wght@400;600;700&family=Merriweather:wght@400;700&family=Lora:wght@400;600;700&family=Fira+Code:wght@400;500&family=Oswald:wght@400;500;600;700&family=Bebas+Neue&family=Pacifico&family=Dancing+Script:wght@400;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");
    :root {
      --bg: #f5f7fb;
      --panel: #ffffff;
      --edge: #e6ebf5;
      --text: #0f172a;
      --muted: #4d5a70;
      --accent: #3575f6;
      --accent-2: #12c2a3;
    }
    * { box-sizing: border-box; }
    html, body {
      overflow-x: hidden;
      max-width: 100vw;
    }
    body {
      margin: 0;
      font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: radial-gradient(circle at 10% 15%, rgba(53,117,246,0.12), transparent 30%),
                  radial-gradient(circle at 90% 5%, rgba(18,194,163,0.18), transparent 30%),
                  var(--bg);
      color: var(--text);
      min-height: 100vh;
    }
    header {
      position: sticky;
      top: 0;
      backdrop-filter: blur(8px);
      background: linear-gradient(180deg, rgba(245,247,251,0.9), rgba(245,247,251,0.75));
      z-index: 2000;
      border-bottom: 1px solid var(--edge);
      overflow-x: hidden;
      width: 100%;
    }
    .container {
      width: min(1180px, 94vw);
      margin: 0 auto;
      padding: 28px 0 60px;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 32px;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2100;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: 0.3px;
      font-size: 20px;
      text-decoration: none;
      color: var(--text);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 2200;
    }
    .burger {
      display: none;
      width: 42px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid var(--edge);
      background: #fff;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 8px;
      z-index: 2300;
    }
    .burger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text);
      position: relative;
    }
    .burger span::before,
    .burger span::after {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--text);
      transition: transform 160ms ease;
    }
    .burger span::before { top: -7px; }
    .burger span::after { top: 7px; }
    .token-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      background: linear-gradient(135deg, rgba(18,194,163,0.15), rgba(53,117,246,0.15));
      border: 1px solid rgba(18,194,163,0.3);
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
    }
    .token-badge:hover {
      background: linear-gradient(135deg, rgba(18,194,163,0.25), rgba(53,117,246,0.25));
      border-color: rgba(53,117,246,0.5);
      transform: translateY(-1px);
    }
    .token-badge .token-icon {
      width: 20px;
      height: 20px;
      background: linear-gradient(135deg, var(--accent-2), var(--accent));
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
    }
    .token-badge .token-count {
      font-size: 16px;
      color: var(--accent);
    }
    .btn {
      border: none;
      outline: none;
      cursor: pointer;
      font-family: inherit;
      font-weight: 700;
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 15px;
      transition: transform 150ms ease, box-shadow 150ms ease;
      text-decoration: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #2f5fd7);
      color: #fff;
      box-shadow: 0 16px 30px rgba(53,117,246,0.2);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(53,117,246,0.08);
      color: var(--accent);
      border: 1px solid rgba(53,117,246,0.2);
    }
    

