/* ===== BACKGROUND GLOW ===== */ .bg-glow-container { position: relative; overflow: hidden; background-size: cover; background-repeat: no-repeat; } .bg-glow-container::before { content: ''; position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background: radial-gradient(ellipse, #12141691 0%, #1214167a 40%, #12141600 70%); pointer-events: none; z-index: 0; } /* ===== GLASS CARDS ===== */ .glass-card { background: #FFFFFF; backdrop-filter: blur(20px); border-radius: 21px; border-color: rgba(16, 255, 190, 0.2); /* box-shadow: 0 0 40px rgba(16, 255, 190, 0.08), 0 20px 60px rgba(0, 0, 0, 0.4); */ background: #FFF; border-radius: 20px; padding: 20px; border:10px solid #98dfc98f; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); } /* .glass-card:hover { transform: translateY(-4px); border-color: rgba(16, 255, 190, 0.2); box-shadow: 0 0 40px rgba(16, 255, 190, 0.08), 0 20px 60px rgba(0, 0, 0, 0.4); } */ /* ===== INNER CARD (lighter) ===== */ .inner-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 14px; padding: 0px; } /* ===== BADGE STYLES ===== */ .badge-red { background: rgba(239, 68, 68, 0.15); color: #EF4444; border: 1px solid rgba(239, 68, 68, 0.3); } .badge-green { background: #98EFD5; color: #003324; border: 1px solid rgba(16, 255, 190, 0.3); width: 83px; height: 30px; display:flex; justify-content: center; align-items: center; } .badge-gray { background: rgba(255, 255, 255, 0.05); color: #888; border: 1px solid rgba(255, 255, 255, 0.1); width: 83px; height: 30px; display:flex; justify-content: center; align-items: center; } /* ===== AVATAR ===== */ .avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; } .avatar-gray { background: #A1A1A1; color: #474747; } .avatar-green { background: #065F46; color: #10FFBE; } .avatar-red { background: #991B1B; color: #FCA5A5; } /* ===== STAR RATING ===== */ .star-filled { color: #FBBF24; } .star-empty { color: #374151; } /* ===== PROGRESS BAR ===== */ .progress-track { height: 6px; background:#E3E3E3; border-radius: 3px; overflow: hidden; } .progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #10FFBE, #0DD9A0); transition: width 0.6s ease; } /* ===== BAR CHART ===== */ .bar-chart-container { display: flex; align-items: flex-end; gap: 8px; height: 80px; } .bar { flex: 1; border-radius: 6px 6px 0 0; transition: all 0.3s ease; position: relative; } .bar:hover { opacity: 0.8; } .bar-label { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); font-size: 10px; color: #666; white-space: nowrap; } /* ===== BRAND ROW ===== */ .brand-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #E3E3E3; } .brand-row:last-child { border-bottom: none; } .brand-number { width: 46px; height: 46px; border-radius: 50%; background: #003324; color: #31DFAA; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 400; flex-shrink: 0; } .brand-number-gray { background:#A1A1A1; color: #474747; } /* ===== MESSAGE ROW ===== */ .message-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #E3E3E3; } .message-row:last-child { border-bottom: none; } /* ===== ANIMATIONS ===== */ @keyframes glow { 0%,100% { box-shadow: 0 0 60px rgba(52,211,153,0.35); } 50% { box-shadow: 0 0 120px rgba(52,211,153,0.7); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .animate-in { animation: fadeInUp 0.6s ease forwards; } .delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; } .delay-5 { animation-delay: 0.5s; } /* ===== SCROLLBAR ===== */ ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: rgba(16, 255, 190, 0.2); border-radius: 3px; } /* ===== RESPONSIVE ===== */ @media (max-width: 1024px) { .glass-card { padding: 16px; } }