.reaction-section {
    margin: 40px 0;
    text-align: center;
}
.reaction-section h3 {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 20px;
}
.reaction-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.reaction-btn {
    background: #141414;
    border: 1px solid #2a2a2a;
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}
.reaction-btn .emoji { font-size: 24px; margin-bottom: 5px; }
.reaction-btn .label { color: #64748b; font-size: 11px; text-transform: uppercase; }
.reaction-btn .count { color: #00d4ff; font-weight: bold; font-size: 14px; margin-top: 5px; }

/* Active & Hover State */
.reaction-btn:hover, .reaction-btn.active {
    border-color: #00d4ff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}
.reaction-btn.active .label { color: #00d4ff; }