  .hide-scrollbar::-webkit-scrollbar { display: none; }
  .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
  .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
  }
  
  .ticket-sr {
    border: 2px solid #38bdf8 !important; 
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2) !important; 
    overflow: hidden;
    position: relative;
  }
  .ticket-sr::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 5;
    background: linear-gradient(115deg, transparent 20%, rgba(255,0,128,0.2) 30%, rgba(111,0,255,0.2) 40%, transparent 50%, rgba(0,255,255,0.2) 60%, rgba(0,255,0,0.2) 70%, transparent 80%);
    background-size: 300% 300%; animation: holo-shimmer 4s ease infinite; mix-blend-mode: color-dodge;
  }
  @keyframes holo-shimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }