
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
      background: #020617;
      color: white;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      min-height: 100vh;
    }

    :root {
      --slate-950: #020617;
      --slate-900: #0f172a;
      --slate-800: #1e293b;
      --slate-700: #334155;
      --slate-600: #475569;
      --slate-500: #64748b;
      --slate-400: #94a3b8;
      --slate-300: #cbd5e1;
      --emerald-200: #a7f3d0;
      --emerald-400: #34d399;
      --emerald-500: #10b981;
      --emerald-600: #059669;
      --emerald-700: #047857;
      --purple-400: #c084fc;
      --purple-500: #a855f7;
      --purple-600: #9333ea;
      --purple-700: #7e22ce;
      --blue-400: #60a5fa;
      --blue-500: #3b82f6;
      --blue-600: #2563eb;
      --blue-700: #1d4ed8;
      --red-400: #f87171;
      --red-500: #ef4444;
      --red-600: #dc2626;
      --red-700: #b91c1c;
      --orange-400: #fb923c;
      --orange-500: #f97316;
      --pink-500: #ec4899;
      --pink-600: #db2777;
      --pink-700: #be185d;
      --yellow-400: #facc15;
      --cyan-500: #06b6d4;
    }

    /* App Container */
    .min-h-screen {
      min-height: 100vh;
      background: var(--slate-950);
      color: white;
      padding-bottom: 6rem;
    }

    /* Header */
    .sticky-header {
      position: sticky;
      top: 0;
      background: rgba(2, 6, 23, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--slate-800);
      padding: 1rem 1.5rem;
      z-index: 40;
    }

    .header-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-box {
      width: 3rem;
      height: 3rem;
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    }

    .logo-text h1 {
      font-size: 1.25rem;
      font-weight: 700;
      background: linear-gradient(90deg, var(--emerald-400), var(--emerald-600));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .logo-text p {
      font-size: 0.75rem;
      color: var(--slate-400);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* Buttons */
    .btn {
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .btn:active {
      transform: scale(0.95);
    }

    .btn-icon {
      width: 2.75rem;
      height: 2.75rem;
      background: var(--slate-800);
      border-radius: 0.75rem;
      color: white;
      position: relative;
    }

    .btn-icon:hover {
      background: var(--slate-700);
    }

    .btn-primary {
      height: 2.75rem;
      padding: 0 1.25rem;
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
      border-radius: 0.75rem;
      color: white;
      box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    }

    .btn-secondary {
      height: 2.75rem;
      padding: 0 1.25rem;
      background: var(--slate-800);
      border-radius: 0.75rem;
      color: white;
    }

    .btn-secondary:hover {
      background: var(--slate-700);
    }

    .badge {
      position: absolute;
      top: -0.25rem;
      right: -0.25rem;
      width: 1.25rem;
      height: 1.25rem;
      background: var(--emerald-500);
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.5);
    }

    /* Content */
    .content {
      padding: 2rem 1.5rem;
    }

    @media (min-width: 640px) {
      .content {
        padding: 2rem;
      }
    }

    /* Hero */
    .hero {
      text-align: center;
      margin-bottom: 2rem;
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, white, var(--emerald-200), white);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    @media (min-width: 640px) {
      .hero h1 {
        font-size: 3rem;
      }
    }

    .hero p {
      font-size: 1.125rem;
      color: var(--slate-400);
    }

    @media (min-width: 640px) {
      .hero p {
        font-size: 1.25rem;
      }
    }

    /* Tab Switcher */
    .tab-switcher {
      display: inline-flex;
      background: var(--slate-900);
      border-radius: 1rem;
      padding: 0.375rem;
      border: 1px solid var(--slate-800);
      margin: 0 auto 2rem;
      width: 100%;
    }

    @media (min-width: 640px) {
      .tab-switcher {
        width: auto;
      }
    }

    .tab-btn {
      flex: 1;
      height: 3rem;
      border: none;
      border-radius: 0.75rem;
      background: none;
      color: var(--slate-400);
      font-size: 0.9375rem;
      font-weight: 700;
      letter-spacing: 0.015em;
      cursor: pointer;
      transition: all 0.2s;
    }

    @media (min-width: 640px) {
      .tab-btn {
        flex: none;
        padding: 0 2rem;
      }
    }

    .tab-btn:hover {
      color: white;
    }

    .tab-btn.active {
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
      color: white;
      box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    }

    /* Grid */
    .grid {
      display: grid;
      gap: 1.5rem;
    }

    .grid-1 { grid-template-columns: 1fr; }
    
    @media (min-width: 640px) {
      .grid-2-sm { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1024px) {
      .grid-3-lg { grid-template-columns: repeat(3, 1fr); }
      .grid-4-lg { grid-template-columns: repeat(4, 1fr); }
    }

    /* Cards */
    .card {
      background: var(--slate-900);
      border-radius: 1.5rem;
      border: 1px solid var(--slate-800);
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s;
    }

    .card:hover {
      border-color: rgba(16, 185, 129, 0.5);
      box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1);
    }

    .card:active {
      transform: scale(0.98);
    }

    .card-image-wrapper {
      aspect-ratio: 1;
      position: relative;
      overflow: hidden;
    }

    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .card:hover .card-image {
      transform: scale(1.1);
    }

    .card-grid-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      height: 100%;
    }

    .card-gradient-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--slate-900), rgba(15, 23, 42, 0.4), transparent);
    }

    .card-body {
      padding: 1.5rem;
    }

    .card-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .card-desc {
      font-size: 0.875rem;
      color: var(--slate-400);
      margin-bottom: 1.25rem;
      line-height: 1.6;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    /* Stats */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

    .stat-box {
      background: var(--slate-800);
      border: 1px solid var(--slate-700);
      border-radius: 0.75rem;
      padding: 0.75rem;
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--slate-400);
      margin-bottom: 0.25rem;
    }

    .stat-value {
      font-weight: 700;
      font-size: 0.9375rem;
    }

    .stat-value.emerald {
      color: var(--emerald-400);
    }

    /* Modals */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 60;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      animation: fadeIn 0.2s ease-out;
    }

    @media (min-width: 640px) {
      .modal-overlay {
        align-items: center;
      }
    }

    .modal {
      background: var(--slate-900);
      width: 100%;
      max-width: 28rem;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: 1.5rem 1.5rem 0 0;
      animation: slideUp 0.3s ease-out;
    }

    @media (min-width: 640px) {
      .modal {
        border-radius: 1rem;
        border: 1px solid var(--slate-800);
      }
    }

    .modal-header {
      position: sticky;
      top: 0;
      background: var(--slate-900);
      border-bottom: 1px solid var(--slate-800);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 10;
    }

    .modal-title {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .modal-body {
      padding: 1.5rem;
    }

    .modal-body .space-y-6 > * + * {
      margin-top: 1.5rem;
    }

    /* Notifications Drawer */
    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 100%;
      max-width: 24rem;
      background: var(--slate-900);
      box-shadow: -10px 0 25px -5px rgba(0, 0, 0, 0.5);
      z-index: 70;
      animation: slideInRight 0.3s ease-out;
      overflow-y: auto;
    }

    .drawer-header {
      padding: 1.5rem;
      border-bottom: 1px solid var(--slate-800);
      display: flex;
      align-items: center;
      justify-content: between;
      gap: 1rem;
    }

    .drawer-title {
      font-size: 1.25rem;
      font-weight: 700;
      flex: 1;
    }

    .drawer-body {
      padding: 1rem;
    }

    .notification-item {
      background: var(--slate-800);
      border: 1px solid var(--slate-700);
      border-radius: 0.75rem;
      padding: 1rem;
      margin-bottom: 0.75rem;
    }

    .notification-item.unread {
      border-color: rgba(16, 185, 129, 0.5);
    }

    .notification-message {
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    .notification-time {
      font-size: 0.75rem;
      color: var(--slate-400);
    }

    /* Forms */
    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--slate-300);
      margin-bottom: 0.75rem;
    }

    .form-input {
      width: 100%;
      height: 4rem;
      padding: 0 1.25rem;
      background: var(--slate-800);
      border: 1px solid var(--slate-700);
      border-radius: 0.75rem;
      color: white;
      font-size: 1.25rem;
      outline: none;
      transition: all 0.2s;
    }

    .form-input:focus {
      border-color: var(--emerald-500);
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }

    .form-helper {
      font-size: 0.875rem;
      color: var(--slate-500);
      margin-top: 0.75rem;
    }

    select.form-input {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 1.5rem;
      padding-right: 3rem;
    }

    /* Gradient Cards */
    .gradient-card {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    }

    .gradient-card-promo {
      background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2), rgba(249, 115, 22, 0.2));
      border: 2px solid rgba(168, 85, 247, 0.5);
    }

    /* Success Check */
    .success-icon {
      width: 5rem;
      height: 5rem;
      background: rgba(16, 185, 129, 0.2);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    /* Price Display */
    .price-display {
      background: var(--slate-800);
      border: 1px solid var(--slate-700);
      border-radius: 1rem;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding-top: 1rem;
      border-top: 1px solid var(--slate-700);
      margin-top: 1rem;
    }

    .price-main {
      font-size: 2rem;
      font-weight: 700;
      color: var(--emerald-400);
    }

    .price-sub {
      font-size: 0.875rem;
      color: var(--slate-500);
      margin-top: 0.25rem;
    }

    /* Filter Buttons */
    .filter-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }

    .filter-btn {
      height: 3.5rem;
      border: none;
      border-radius: 0.75rem;
      font-weight: 600;
      text-transform: capitalize;
      cursor: pointer;
      transition: all 0.2s;
      background: var(--slate-800);
      border: 1px solid var(--slate-700);
      color: var(--slate-400);
    }

    .filter-btn.active {
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
      color: white;
      border-color: transparent;
      box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
    }

    /* Collection View Header */
    .collection-header {
      background: linear-gradient(to bottom right, var(--slate-900), var(--slate-950));
      padding: 1.5rem;
      border-bottom: 1px solid var(--slate-800);
    }

    .collection-stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 640px) {
      .collection-stats-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .collection-stat {
      background: var(--slate-900);
      border: 1px solid var(--slate-800);
      border-radius: 1rem;
      padding: 1rem;
    }

    .collection-stat-label {
      font-size: 0.75rem;
      color: var(--slate-400);
      margin-bottom: 0.5rem;
    }

    .collection-stat-value {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .collection-stat-sub {
      font-size: 0.75rem;
      color: var(--slate-500);
      margin-top: 0.25rem;
    }

    /* NFT Card Small */
    .nft-card-sm {
      background: var(--slate-900);
      border: 1px solid var(--slate-800);
      border-radius: 1rem;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.2s;
    }

    .nft-card-sm:hover {
      transform: translateY(-2px);
      border-color: rgba(16, 185, 129, 0.5);
    }

    .nft-card-sm:active {
      transform: scale(0.98);
    }

    .nft-badge-overlay {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      padding: 0.25rem 0.75rem;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 0.5rem;
      font-size: 0.75rem;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .rarity-badge {
      padding: 0.25rem 0.5rem;
      border-radius: 0.5rem;
      font-size: 0.75rem;
      font-weight: 600;
      border: 1px solid;
    }

    .rarity-epic {
      background: rgba(168, 85, 247, 0.1);
      color: var(--purple-400);
      border-color: rgba(168, 85, 247, 0.3);
    }

    .rarity-rare {
      background: rgba(59, 130, 246, 0.1);
      color: var(--blue-400);
      border-color: rgba(59, 130, 246, 0.3);
    }

    .rarity-common {
      background: rgba(100, 116, 139, 0.3);
      color: var(--slate-400);
      border-color: rgba(100, 116, 139, 0.3);
    }

    .nft-traits {
      font-size: 0.75rem;
      color: var(--slate-400);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* My NFTs Sections */
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.25rem;
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .tip-box {
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 1rem;
      padding: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .tip-label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--blue-400);
      margin-bottom: 0.5rem;
    }

    .tip-text {
      font-size: 0.875rem;
      color: var(--slate-300);
      line-height: 1.6;
    }

    .nft-card-special {
      border-width: 2px;
    }

    .nft-card-ready {
      border-color: rgba(168, 85, 247, 0.3);
    }

    .nft-card-ready:hover {
      border-color: rgba(168, 85, 247, 0.6);
    }

    .nft-card-staked {
      border-color: rgba(59, 130, 246, 0.5);
      position: relative;
    }

    .nft-card-staked::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
      pointer-events: none;
    }

    .reward-box {
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 0.75rem;
      padding: 1rem;
      margin-bottom: 1rem;
    }

    .reward-box.ready {
      background: rgba(59, 130, 246, 0.2);
      border-color: rgba(59, 130, 246, 0.4);
    }

    .reward-label {
      font-size: 0.75rem;
      color: var(--blue-400);
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .reward-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--blue-400);
    }

    .badge-earning {
      background: var(--blue-500);
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    .badge-ready {
      background: rgba(168, 85, 247, 0.8);
    }

    .badge-forsale {
      background: rgba(16, 185, 129, 0.8);
    }

    /* Action Buttons */
    .btn-full {
      width: 100%;
      height: 3rem;
      border: none;
      border-radius: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-full:active {
      transform: scale(0.98);
    }

    .btn-full.primary-gradient {
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
      color: white;
      box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
    }

    .btn-full.primary-gradient:hover {
      background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    }

    .btn-full.blue-gradient {
      background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
      color: white;
      box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
    }

    .btn-full.blue-gradient:hover {
      background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    }

    .btn-full.purple-gradient {
      background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
      color: white;
      box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.2);
    }

    .btn-full.purple-gradient:hover {
      background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    }

    .btn-full.slate {
      background: var(--slate-800);
      color: white;
      border: 1px solid var(--slate-700);
    }

    .btn-full.slate:hover {
      background: var(--slate-700);
    }

    .btn-full.red-ghost {
      background: rgba(239, 68, 68, 0.1);
      color: var(--red-400);
      border: 1px solid rgba(239, 68, 68, 0.3);
    }

    .btn-full.red-ghost:hover {
      background: rgba(239, 68, 68, 0.2);
    }

    .btn-full.purple-ghost {
      background: rgba(168, 85, 247, 0.2);
      color: var(--purple-400);
      border: 1px solid rgba(168, 85, 247, 0.4);
    }

    .btn-full.emerald-ghost {
      background: rgba(16, 185, 129, 0.2);
      color: var(--emerald-400);
      border: 1px solid rgba(16, 185, 129, 0.4);
    }

    .btn-full.blue-ghost {
      background: rgba(59, 130, 246, 0.2);
      color: var(--blue-400);
      border: 1px solid rgba(59, 130, 246, 0.4);
    }

    .btn-spacing > * + * {
      margin-top: 0.75rem;
    }

    .btn-large {
      height: 3.5rem !important;
      font-size: 1rem;
    }

    .btn-xl {
      height: 4rem !important;
      font-size: 1.125rem;
    }

    /* Rewards Claim */
    .rewards-banner {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 1.5rem;
      padding: 2rem;
      margin-bottom: 2rem;
    }

    .rewards-flex {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .rewards-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .rewards-amount {
      font-size: 3rem;
      font-weight: 700;
      color: var(--blue-400);
      margin-bottom: 0.5rem;
    }

    @media (min-width: 640px) {
      .rewards-amount {
        font-size: 3.5rem;
      }
    }

    /* Promos */
    .promo-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .promo-badge {
      padding: 0.5rem 1rem;
      background: var(--orange-500);
      color: white;
      font-weight: 700;
      border-radius: 0.75rem;
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    .promo-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .promo-desc {
      font-size: 1.125rem;
      color: var(--slate-300);
    }

    .promo-stats {
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid var(--slate-700);
      border-radius: 1rem;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .promo-stats-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .promo-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .promo-stat-value {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--emerald-400);
    }

    .promo-stat-sub {
      font-size: 0.875rem;
      color: var(--slate-500);
      margin-top: 0.5rem;
    }

    /* Vote */
    .vote-power-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 640px) {
      .vote-power-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .vote-power-box {
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid var(--slate-700);
      border-radius: 1rem;
      padding: 1.25rem;
    }

    .vote-power-box.highlight {
      border-color: rgba(168, 85, 247, 0.3);
    }

    .vote-power-label {
      font-size: 0.75rem;
      color: var(--slate-400);
      margin-bottom: 0.5rem;
    }

    .vote-power-value {
      font-size: 2rem;
      font-weight: 700;
      color: var(--emerald-400);
    }

    .vote-power-value.purple {
      color: var(--purple-400);
    }

    .vote-power-sub {
      font-size: 0.75rem;
      color: var(--slate-500);
      margin-top: 0.25rem;
    }

    .vote-tip {
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 0.75rem;
      padding: 1rem;
    }

    .vote-tip-text {
      font-size: 0.875rem;
      color: var(--slate-300);
    }

    .proposal-card {
      background: var(--slate-900);
      border: 1px solid var(--slate-800);
      border-radius: 1.5rem;
      padding: 1.5rem;
      margin-bottom: 1rem;
      transition: border-color 0.2s;
    }

    .proposal-card:hover {
      border-color: var(--slate-700);
    }

    .proposal-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .proposal-desc {
      color: var(--slate-400);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .vote-bars {
      margin-bottom: 1.5rem;
    }

    .vote-bar {
      margin-bottom: 0.75rem;
    }

    .vote-bar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    .vote-label {
      font-weight: 600;
    }

    .vote-label.for {
      color: var(--emerald-400);
    }

    .vote-label.against {
      color: var(--red-400);
    }

    .vote-count {
      color: var(--slate-400);
    }

    .vote-progress-bar {
      height: 0.75rem;
      background: var(--slate-800);
      border-radius: 9999px;
      overflow: hidden;
    }

    .vote-progress-fill {
      height: 100%;
      transition: width 0.3s;
    }

    .vote-progress-fill.for {
      background: linear-gradient(90deg, var(--emerald-500), var(--emerald-600));
    }

    .vote-progress-fill.against {
      background: linear-gradient(90deg, var(--red-500), var(--red-600));
    }

    .vote-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.875rem;
      color: var(--slate-400);
      margin-bottom: 1.5rem;
    }

    .vote-buttons {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .vote-btn {
      height: 3.5rem;
      border: none;
      border-radius: 0.75rem;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .vote-btn:active {
      transform: scale(0.95);
    }

    .vote-btn.for {
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
      color: white;
      box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
    }

    .vote-btn.for:hover {
      background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    }

    .vote-btn.against {
      background: linear-gradient(135deg, var(--red-500), var(--red-600));
      color: white;
      box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.2);
    }

    .vote-btn.against:hover {
      background: linear-gradient(135deg, var(--red-600), var(--red-700));
    }

    .user-vote-status {
      background: var(--slate-800);
      border: 1px solid var(--slate-700);
      border-radius: 0.75rem;
      padding: 1.25rem;
      text-align: center;
    }

    .vote-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }

    .vote-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 9999px;
    }

    .vote-dot.for {
      background: var(--emerald-500);
    }

    .vote-dot.against {
      background: var(--red-500);
    }

    /* Empty State */
    .empty-state {
      text-align: center;
      padding: 4rem 2rem;
    }

    .empty-icon {
      width: 6rem;
      height: 6rem;
      background: var(--slate-800);
      border: 1px solid var(--slate-700);
      border-radius: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
    }

    .empty-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .empty-desc {
      font-size: 1.125rem;
      color: var(--slate-400);
      margin-bottom: 2.5rem;
    }

    /* Bottom Navigation */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 1px solid var(--slate-800);
      z-index: 50;
      padding-bottom: env(safe-area-inset-bottom);
    }

    .bottom-nav-content {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      height: 4rem;
      max-width: 80rem;
      margin: 0 auto;
    }

    .nav-btn {
      background: none;
      border: none;
      color: var(--slate-500);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
      transition: all 0.2s;
    }

    .nav-btn:active {
      transform: scale(0.95);
    }

    .nav-btn.active {
      color: var(--emerald-400);
    }

    .nav-label {
      font-size: 0.75rem;
      font-weight: 500;
    }

    .nav-icon {
      width: 22px;
      height: 22px;
    }

    /* Floating Button */
    .floating-btn {
      position: fixed;
      bottom: 5rem;
      right: 1.5rem;
      width: 4rem;
      height: 4rem;
      background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
      border: none;
      border-radius: 9999px;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.4);
      transition: all 0.2s;
      z-index: 40;
    }

    .floating-btn:hover {
      background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    }

    .floating-btn:active {
      transform: scale(0.9);
    }

    /* Utility */
    .hidden {
      display: none !important;
    }

    .text-center {
      text-align: center;
    }

    .mb-4 {
      margin-bottom: 1rem;
    }

    .mb-6 {
      margin-bottom: 1.5rem;
    }

    .mb-8 {
      margin-bottom: 2rem;
    }

    .py-8 {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from { transform: translateY(100%); }
      to { transform: translateY(0); }
    }

    @keyframes slideInRight {
      from { transform: translateX(100%); }
      to { transform: translateX(0); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    /* Spinner */
    .spinner {
      width: 1.25rem;
      height: 1.25rem;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-top-color: white;
      border-radius: 9999px;
      animation: spin 0.6s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Search Bar */
    .search-bar {
      position: relative;
      margin-bottom: 1.5rem;
    }

    .search-input {
      width: 100%;
      height: 3.5rem;
      padding: 0 1rem 0 3rem;
      background: var(--slate-900);
      border: 1px solid var(--slate-700);
      border-radius: 0.75rem;
      color: white;
      font-size: 1rem;
      outline: none;
      transition: all 0.2s;
    }

    .search-input:focus {
      border-color: var(--emerald-500);
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }

    .search-input::placeholder {
      color: var(--slate-500);
    }

    .search-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--slate-500);
      pointer-events: none;
    }
