    .community-float {
      position: fixed !important;
      right: 40px;
      top: 140px;
      width: 260px;
      z-index: 1200;
      background: linear-gradient(180deg, rgba(12,12,12,0.98), rgba(6,6,6,0.98));
      border-radius: 12px;
      padding: 16px;
      box-shadow:
        0 6px 18px rgba(0,0,0,0.6),
        0 0 30px rgba(255,105,180,0.05),
        inset 0 1px 0 rgba(255,255,255,0.02);
      border: 1px solid rgba(255,105,180,0.06);
      color: #fff;
      font-family: var(--ui-font, "Inter", Arial, sans-serif);
    }
    .community-float .title {
      text-align: center;
      color: #ff93d6;
      font-weight: 700;
      margin-bottom: 12px;
      text-shadow: 0 0 10px rgba(255,105,180,0.8);
    }
    .community-float .stat-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255,255,255,0.03);
    }
    .community-float .stat-row:last-of-type { border-bottom: none; }
    .community-float .stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
    .community-float .stat-value { font-weight: 800; font-size: 1.35rem; color: #fff; text-shadow: 0 6px 24px rgba(255,105,180,0.08); }
    .community-float .icon {
      width: 48px; height: 48px; border-radius: 10px; display:flex; align-items:center; justify-content:center; font-size:20px;
      background: linear-gradient(135deg,#ff69b4,#8b00ff);
      color:#000; box-shadow: 0 6px 20px rgba(139,0,255,0.12);
    }
    .community-float .browse-btn {
      display:block; margin-top:12px; text-align:center; padding:10px; border-radius:10px; color:var(--color-accent);
      background:transparent; border:1px solid rgba(255,105,180,0.12); text-decoration:none; font-weight:700;
    }
    @media (max-width: 1000px) { .community-float { display:none; } }
