@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

.hc-reactions-box {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a12 100%);
    border: 1px solid rgba(255,0,85,0.15);
    border-radius: 20px;
    padding: 28px 32px;
    margin: 30px 0;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}
.hc-reactions-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,0,85,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.hc-reactions-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}
.hc-react-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.hc-react-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}
.hc-react-btn.hc-like.active {
    background: linear-gradient(135deg, rgba(255,0,85,0.25) 0%, rgba(255,50,100,0.15) 100%);
    border-color: rgba(255,0,85,0.5);
    box-shadow: 0 0 25px rgba(255,0,85,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hc-react-btn.hc-dislike.active {
    background: linear-gradient(135deg, rgba(100,100,255,0.2) 0%, rgba(50,50,200,0.1) 100%);
    border-color: rgba(100,100,255,0.4);
    box-shadow: 0 0 25px rgba(100,100,255,0.15);
}
.hc-react-icon {
    font-size: 24px;
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.5);
    display: inline-block;
}
.hc-react-btn.active .hc-react-icon {
    animation: hcIconPop 0.5s ease;
}
.hc-react-count {
    font-size: 22px;
    font-weight: 800;
    min-width: 30px;
}
.hc-react-label {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: auto;
}
.hc-reactions-bar-wrap { }
.hc-reactions-bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.hc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0055 0%, #ff4488 100%);
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: 0 0 12px rgba(255,0,85,0.5);
}
.hc-reactions-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
}
.hc-reactions-stats .hc-stat-like { color: rgba(255,0,85,0.7); }
/* Particles */
.hc-particles {
    position: absolute;
    top: 50%; left: 50%;
    pointer-events: none;
}
.hc-particle {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    animation: hcParticle 0.8s ease-out forwards;
    pointer-events: none;
}
@keyframes hcIconPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.6) rotate(-10deg); }
    70% { transform: scale(0.9) rotate(5deg); }
    100% { transform: scale(1) rotate(0); }
}
@keyframes hcParticle {
    0% { transform: translate(0,0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx),var(--ty)) scale(0); opacity: 0; }
}
@media (max-width: 600px) {
    .hc-reactions-buttons { flex-direction: column; }
    .hc-react-label { display: none; }
}
